summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornobled <nobled@dreamwidth.org>2010-08-22 05:16:53 +0000
committerEric Anholt <eric@anholt.net>2010-08-31 11:34:29 -0700
commit2a78807db7a3bc852da0cda1e933a157204c3a47 (patch)
tree621fd97cab52bdf03a613238ae81fd3458119ffe /src
parent7406898441bfec937840d575500fb6d43192310d (diff)
ir_to_mesa: Fix struct/class confusion
Diffstat (limited to 'src')
-rw-r--r--src/mesa/program/ir_to_mesa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/program/ir_to_mesa.cpp b/src/mesa/program/ir_to_mesa.cpp
index 768c11e3bf..337ecbaa93 100644
--- a/src/mesa/program/ir_to_mesa.cpp
+++ b/src/mesa/program/ir_to_mesa.cpp
@@ -1369,7 +1369,7 @@ ir_to_mesa_visitor::visit(ir_dereference_array *ir)
if (deref_var && strncmp(deref_var->var->name,
"gl_TextureMatrix",
strlen("gl_TextureMatrix")) == 0) {
- struct variable_storage *entry;
+ variable_storage *entry;
entry = get_builtin_matrix_ref(this->mem_ctx, this->prog, deref_var->var,
ir->array_index);