view plugins/crazychat/mat_struct.h @ 12379:24c5fbfca306

[gaim-migrate @ 14683] Sadrul is totally awesome and fixed the crash that I was seeing when disabling an account and then trying to change status. committer: Tailor Script <tailor@pidgin.im>
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 07 Dec 2005 01:22:14 +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;