view plugins/crazychat/mat_struct.h @ 13249:65a7de0f59ff

[gaim-migrate @ 15615] The callback _check_buddy_by_address expects the data to be a struct _check_buddy_by_address_t, I haven't tested this but I'm 98.874% sure it's correct. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Sun, 12 Feb 2006 17:26:06 +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;