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/compiler/glsl/ast_to_hir.cpp | |
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/compiler/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/compiler/glsl/ast_to_hir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index 88fff861cc5..a4a687f687d 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++ b/src/compiler/glsl/ast_to_hir.cpp @@ -4712,7 +4712,7 @@ ast_declarator_list::hir(exec_list *instructions, "invalid type `%s' in empty declaration", type_name); } else { - if (decl_type->base_type == GLSL_TYPE_ARRAY) { + if (decl_type->is_array()) { /* From Section 13.22 (Array Declarations) of the GLSL ES 3.2 * spec: * |