view plugins/crazychat/mat_struct.h @ 13135:7fd39c81d5e9

[gaim-migrate @ 15497] Rest of SF Patch #1417219 from Sadrul "Also, loading/unloading plugins gives errors in the debug-window. Register/unregistering the plugins when they are created and destroyed seem to quiet it down. Turns out, the same is done for all the other core-subtypes." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 06 Feb 2006 07:53:51 +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;