view plugins/crazychat/mat_struct.h @ 13291:ac98e3641df6

[gaim-migrate @ 15657] A comment in the plugin tracker tipped me off that this was missing. So here it is, totally untested but it compiles. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Wed, 15 Feb 2006 18:30: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;