mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 13:20: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 */
|
||||
/*@}*/
|
||||
|
||||
|
||||
/**
|
||||
* 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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue