view plugins/crazychat/mat_struct.h @ 12890:e0629444c455

[gaim-migrate @ 15243] I was working on making plugin prefs more useful from perl and realized this file was all out of order, so I fixed it. I managed to get plugin prefs working but gaim was crashing if you quit while a plugin was loaded that used them so they aren't getting committed, but this is since it's barely real. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 16 Jan 2006 09:30:11 +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;