view plugins/crazychat/mat_struct.h @ 13543:d05d8bcabbfb

[gaim-migrate @ 15920] I've learned that G_HAVE_GINT64 has been deprecated since glib 2.0. gint64 is always available. I'm submitting patches to update glib's documentation. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 21 Mar 2006 03:01:37 +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;