view plugins/crazychat/mat_struct.h @ 13591:dcfda39ad547

[gaim-migrate @ 15977] I know this just generates some c code that no one is actually supposed to look at, but I did one time and the lack of indentation hurt me. This should fix it and not break anything. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Fri, 07 Apr 2006 01:05:48 +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;