diff options
author | Brian Paul <[email protected]> | 2011-08-05 15:01:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-08 08:26:49 -0600 |
commit | 8488112d20d49d3dc7fefef19c6e550e4b71661c (patch) | |
tree | 49f7ed2dbe51ad8dcb6bc4133b24876471f5b794 /src/mesa/program/prog_parameter.h | |
parent | 4dd3272df9f6d483cb3734c3b8c77e9c190b3773 (diff) |
mesa: whitespace changes
Diffstat (limited to 'src/mesa/program/prog_parameter.h')
-rw-r--r-- | src/mesa/program/prog_parameter.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/mesa/program/prog_parameter.h b/src/mesa/program/prog_parameter.h index f858cf0fa0d..1a5ed343937 100644 --- a/src/mesa/program/prog_parameter.h +++ b/src/mesa/program/prog_parameter.h @@ -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 { - 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. |