view plugins/crazychat/mat_struct.h @ 13025:7d39e6c73dc3

[gaim-migrate @ 15378] Changing "Custom..." to "New..." in the status box. I couldn't differentiate between Custom and Saved fast enough without thinking. I'm hoping this will help committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 24 Jan 2006 00:57:37 +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;