mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 15:30:14 +01:00
mesa: whitespace changes
This commit is contained in:
parent
4dd3272df9
commit
8488112d20
1 changed files with 8 additions and 5 deletions
|
|
@ -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;
|
{
|
||||||
GLboolean b;
|
GLfloat f;
|
||||||
GLint i;
|
GLboolean b;
|
||||||
GLuint u;
|
GLint i;
|
||||||
|
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.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue