view plugins/crazychat/mat_struct.h @ 11733:ef511dec9903

[gaim-migrate @ 14024] The include in gtkaccount isn't used anymore, now that we're using tabs (yay) And marv's doco change made me realize I wasn't freeing a glist (yay) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 23 Oct 2005 02:25:25 +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;