view plugins/crazychat/mat_struct.h @ 12892:3ab3e68df807

[gaim-migrate @ 15245] These functions return a list of strings in C, in perl they were retuning a blessed object that didn't seem to have any use, so I made them return strings instead so they work "normally". I think this an improvement. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 16 Jan 2006 10:19:31 +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;