summaryrefslogtreecommitdiffstats
path: root/src/glsl
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2015-11-23 10:07:30 +1100
committerTimothy Arceri <[email protected]>2015-11-23 13:47:19 +1100
commit6463d36394bf95f73cfe3ba6bdf900da431e4e55 (patch)
tree37b68633910d114c5fd3109e30ce591608e5e255 /src/glsl
parentad5f6b03e793b9390e3b9f3eca68bd43f9d809eb (diff)
glsl: fix max binding validation for uniform blocks
Regression as of 64710db66461e We can't use the type returned by get_interface_type() as the interface type has arrays removed. Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/ast_to_hir.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp
index df6dd9b4759..81cde73798a 100644
--- a/src/glsl/ast_to_hir.cpp
+++ b/src/glsl/ast_to_hir.cpp
@@ -6962,8 +6962,8 @@ ast_interface_block::hir(exec_list *instructions,
delete var;
} else {
if (this->layout.flags.q.explicit_binding) {
- apply_explicit_binding(state, &loc, var,
- var->get_interface_type(), &this->layout);
+ apply_explicit_binding(state, &loc, var, var->type,
+ &this->layout);
}
var->data.stream = qual_stream;