view plugins/crazychat/mat_struct.h @ 14057:44b42bb2c5f8

[gaim-migrate @ 16671] Removed an unused gaim_prefs string for "datadir" and the corresponding DATADIR definition. Both of these should have been removed with the ip_location code. committer: Tailor Script <tailor@pidgin.im>
author Mark Huetsch <markhuetsch>
date Tue, 08 Aug 2006 01:12:58 +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;