view plugins/crazychat/mat_struct.h @ 12723:20f5daedcccb

[gaim-migrate @ 15067] Fix a possible segfault from my file transfer change last night. This was pointed out by Julien Cegarra in sf patch #1397203 committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 04 Jan 2006 23:05:22 +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;