view plugins/crazychat/mat_struct.h @ 12899:83de40f1c0df

[gaim-migrate @ 15252] Inspired by SF Patch #1406992 from Sadrul Fixes Bug #1406932 This removes/resets formatting as necessary when the active conversation changes. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 17 Jan 2006 01:42:46 +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;