view plugins/crazychat/mat_struct.h @ 12487:799e95eed274

[gaim-migrate @ 14799] I'm tired of seeing the bugs mono "causes" because of the sigsegv handler as I'm sure Luke is, so until we find a better way to handle this, and the loader does a bit more it must be explicitly told to build with --enable-mono committer: Tailor Script <tailor@pidgin.im>
author Gary Kramlich <grim@reaperworld.com>
date Wed, 14 Dec 2005 23:26:40 +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;