OSDN Git Service

mesa: whitespace changes
authorBrian Paul <brianp@vmware.com>
Fri, 5 Aug 2011 21:01:41 +0000 (15:01 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 8 Aug 2011 14:26:49 +0000 (08:26 -0600)
src/mesa/program/prog_parameter.h

index f858cf0..1a5ed34 100644 (file)
 #define PROG_PARAM_BIT_CYL_WRAP  0x10  /**< XXX gallium debug */
 /*@}*/
 
+
 /**
  * Actual data for constant values of parameters.
  */
-typedef union gl_constant_value {
-       GLfloat f;
-       GLboolean b;
-       GLint i;
-       GLuint u;
+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.