diff options
author | Samuel Pitoiset <[email protected]> | 2017-04-21 10:25:42 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-04-21 19:33:32 +0200 |
commit | 0c8898dc34b1b8efc12e7491c303249bd081253d (patch) | |
tree | 371bfadf373c3e3aea4c6d5e97f24a467b171e21 /src/mesa/state_tracker | |
parent | 053912382ee2865da24be4bdd4c21de525519460 (diff) |
glsl: make use of glsl_type::is_array()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp index 96c08a64f31..9a19167faa0 100644 --- a/src/mesa/state_tracker/st_glsl_to_tgsi.cpp +++ b/src/mesa/state_tracker/st_glsl_to_tgsi.cpp @@ -4246,7 +4246,7 @@ glsl_to_tgsi_visitor::visit(ir_texture *ir) component = this->result; if (ir->offset) { ir->offset->accept(this); - if (ir->offset->type->base_type == GLSL_TYPE_ARRAY) { + if (ir->offset->type->is_array()) { const glsl_type *elt_type = ir->offset->type->fields.array; for (i = 0; i < ir->offset->type->length; i++) { offset[i] = this->result; |