view plugins/crazychat/mat_struct.h @ 13063:41ec0316cd65

[gaim-migrate @ 15425] Bonjour: * Don't attempt to delete the bonjour group if it doesn't exist * Set the session to NULL if it failed to connect. This seems to only be needed when using with Avahi in Howl compatability mode. Patch by David Schmitt (#1418017) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 29 Jan 2006 20:42:23 +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;