view pidgin/plugins/crazychat/mat_struct.h @ 25430:1442c0a54831

Increment display_lines here so that, for fonts where pixels_inside_wrap() set a value greater than 0, it won't cause a few extra pixels to be added to the height when the user starts typing
author Mark Doliner <mark@kingant.net>
date Wed, 28 Jan 2009 10:06:56 +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;