view plugins/crazychat/mat_struct.h @ 13559:bbbde2f5c03b

[gaim-migrate @ 15938] This finally bothered me enough to fix. We were only rebuilding the Join a Chat dialog entries when the protocol of the selected account changed. That didn't work so well for jabber since jabber uses different nickname/server values based on which server you choose. I considered testing for jabber specifically instead of always but that seemed uglier and this really won't hurt us much. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Fri, 24 Mar 2006 16:04:59 +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;