summaryrefslogtreecommitdiff
path: root/src/glsl/ir_tree_grafting.cpp
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-08-14 15:35:57 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-08-14 15:35:57 +0100
commit1cbcf6693aa490c4dcb56712bfb9998deb270f08 (patch)
tree6d8257d3510737c099db74978102456f90201a59 /src/glsl/ir_tree_grafting.cpp
parent1d22923fae7f4c749b3820844110e3d8ee4d26c0 (diff)
glsl: Standardize a few more uses of struct vs class keyword.
Diffstat (limited to 'src/glsl/ir_tree_grafting.cpp')
-rw-r--r--src/glsl/ir_tree_grafting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/ir_tree_grafting.cpp b/src/glsl/ir_tree_grafting.cpp
index e80db31cb3..6acc5b86c5 100644
--- a/src/glsl/ir_tree_grafting.cpp
+++ b/src/glsl/ir_tree_grafting.cpp
@@ -324,7 +324,7 @@ tree_grafting_basic_block(ir_instruction *bb_first,
lhs_var->mode == ir_var_inout)
continue;
- struct variable_entry *entry = info->refs->get_variable_entry(lhs_var);
+ variable_entry *entry = info->refs->get_variable_entry(lhs_var);
if (!entry->declaration ||
entry->assigned_count != 1 ||