view plugins/crazychat/mat_struct.h @ 11272:80ee726755d4

[gaim-migrate @ 13455] another commit to crazy c committer: Tailor Script <tailor@pidgin.im>
author Charlie Stockman <chuckleberry>
date Mon, 15 Aug 2005 08:25:31 +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;