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