mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
glsl: remove struct keyword from ir_variable declarations
To silence MSVC warnings. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
0bb3cd8090
commit
1ddb56d160
1 changed files with 4 additions and 4 deletions
|
|
@ -391,10 +391,10 @@ public:
|
|||
|
||||
private:
|
||||
const varying_info_visitor *info;
|
||||
struct ir_variable *new_texcoord[MAX_TEXTURE_COORD_UNITS];
|
||||
struct ir_variable *new_color[2];
|
||||
struct ir_variable *new_backcolor[2];
|
||||
struct ir_variable *new_fog;
|
||||
ir_variable *new_texcoord[MAX_TEXTURE_COORD_UNITS];
|
||||
ir_variable *new_color[2];
|
||||
ir_variable *new_backcolor[2];
|
||||
ir_variable *new_fog;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue