diff options
author | nobled <[email protected]> | 2010-08-22 05:16:53 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-08-31 11:34:29 -0700 |
commit | 2a78807db7a3bc852da0cda1e933a157204c3a47 (patch) | |
tree | 621fd97cab52bdf03a613238ae81fd3458119ffe /src/mesa/program | |
parent | 7406898441bfec937840d575500fb6d43192310d (diff) |
ir_to_mesa: Fix struct/class confusion
Diffstat (limited to 'src/mesa/program')
-rw-r--r-- | src/mesa/program/ir_to_mesa.cpp | 2 |
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 768c11e3bf6..337ecbaa937 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); |