view plugins/crazychat/mat_struct.h @ 12915:fe2cb084ab16

[gaim-migrate @ 15268] SF Patch #1405994 from Sadrul "This patch allows themes to define smileys with spaces in them, escaped by a \. It seems to be working for me." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 17 Jan 2006 16:59: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;