view plugins/crazychat/mat_struct.h @ 11841:f91b4fedd8b5

[gaim-migrate @ 14132] The first thing bonjour_dns_sd_send_status() does is free data->status, so passing it a pointer to that as the new status is stupid. This leaked too. committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Wed, 26 Oct 2005 10:32:06 +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;