diff options
author | Brian Paul <[email protected]> | 2012-01-12 09:53:07 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-12 13:02:44 -0700 |
commit | decd018b992eb0f7f85338ee39083daca04885b6 (patch) | |
tree | 5c6369563c2cec662473332b5981b27a5f7dd865 /src/mesa/main/ff_fragment_shader.cpp | |
parent | a240c998ac649d79f423bb0c445993132cd56f97 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa/main/ff_fragment_shader.cpp')
-rw-r--r-- | src/mesa/main/ff_fragment_shader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/ff_fragment_shader.cpp b/src/mesa/main/ff_fragment_shader.cpp index 7b8d1fe9b50..afc17dc49a2 100644 --- a/src/mesa/main/ff_fragment_shader.cpp +++ b/src/mesa/main/ff_fragment_shader.cpp @@ -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. |