view plugins/crazychat/mat_struct.h @ 11745:dd7e9ef6339f

[gaim-migrate @ 14036] Segfault on exit fix. The protocol actions code is hacky, and I'm not convinced I put it in them in the right place. Someone should fuss with it. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Sun, 23 Oct 2005 09:05:46 +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;