mesa: whitespace changes

This commit is contained in:
Brian Paul 2011-08-05 15:01:41 -06:00
parent 4dd3272df9
commit 8488112d20

View file

@ -46,16 +46,19 @@
#define PROG_PARAM_BIT_CYL_WRAP 0x10 /**< XXX gallium debug */
/*@}*/
/**
* Actual data for constant values of parameters.
*/
typedef union gl_constant_value {
typedef union gl_constant_value
{
GLfloat f;
GLboolean b;
GLint i;
GLuint u;
} gl_constant_value;
/**
* Program parameter.
* Used by shaders/programs for uniforms, constants, varying vars, etc.