view plugins/crazychat/mat_struct.h @ 12000:77fc8a9f0668

[gaim-migrate @ 14293] Fix oscar sign-on-as-away for people who have never set their buddy info. (It's been working all along for everyone else, I just didn't realize it.) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 07 Nov 2005 03:44:30 +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;