view pidgin/plugins/crazychat/mat_struct.h @ 28450:1b534812157d

Explicitly save the language when using the silent installer (if it is explicitly set). NSIS doesn\'t do this for us. Fixes #8658.
author Daniel Atallah <daniel.atallah@gmail.com>
date Wed, 26 Aug 2009 03:59:49 +0000
parents 5fe8042783c1
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;