view pidgin/plugins/crazychat/mat_struct.h @ 18907:1a11b26fcb11

Replace non-portable stricmp() with two calls to strcmp(), one uppercase and one lowercase. Needed because Pidgin sends links as <A HREF=...> (capitals).
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Sun, 12 Aug 2007 18:11:29 +0000
parents 5fe8042783c1
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;