view plugins/crazychat/mat_struct.h @ 12289:d4ffa29eaa4f

[gaim-migrate @ 14593] This renames the OSCAR file transfer documentation to not contain spaces. I've had to correct a few habits to make them space-safe, but this old dog can only learn so many new tricks. Renaming these will eliminate the only spaces I ever have to deal with. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Fri, 02 Dec 2005 01:08:30 +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;