view plugins/crazychat/mat_struct.h @ 13575:afede2ec4efd

[gaim-migrate @ 15955] The MSN neutral smiley was missing. This was reported by a user, but I no longer have the bug number handy. (I closed it and then hit the CVS lock.) committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 29 Mar 2006 05:42:36 +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;