view plugins/crazychat/mat_struct.h @ 12925:fd734d1fb2f4

[gaim-migrate @ 15278] <wabz> uhm, this is very embarrassing, but psychic.c line 38 should start with at "!".... Of course, I didn't notice it either, and I'm supposed to have been checking this. So, whoops. committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Wed, 18 Jan 2006 03:44:18 +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;