mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 07:50:11 +01:00
mesa: fix ir_variable declaration
ir_variable is a class, not a struct. NOTE: This is a candidate for the 8.0 branch. Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
a240c998ac
commit
decd018b99
1 changed files with 1 additions and 1 deletions
|
|
@ -528,7 +528,7 @@ struct texenv_fragment_program {
|
|||
*/
|
||||
|
||||
/* Texcoord override from bumpmapping. */
|
||||
struct ir_variable *texcoord_tex[MAX_TEXTURE_COORD_UNITS];
|
||||
ir_variable *texcoord_tex[MAX_TEXTURE_COORD_UNITS];
|
||||
|
||||
/* Reg containing texcoord for a texture unit,
|
||||
* needed for bump mapping, else undef.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue