view plugins/crazychat/mat_struct.h @ 11301:a09a5d64f33f

[gaim-migrate @ 13501] This apparently fixes setup-gettext for gettext versions in x.y format rather than x.y.z format. see sf patch 1218157 committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 18 Aug 2005 18:11:12 +0000
parents ed017b9c532d
children
line wrap: on
line source

#include <GL/gl.h>
#include <GL/glu.h>

typedef struct sample_MATERIAL{
 GLfloat ambient[3];
 GLfloat diffuse[3];
 GLfloat specular[3];
 GLfloat emission[3];
 GLfloat alpha;
 GLfloat phExp;
 int   texture;
}sample_MATERIAL;