diff options
author | Samuel Pitoiset <[email protected]> | 2017-03-01 22:09:28 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-03-03 00:57:57 +0100 |
commit | 9fc86d4f53a66a147f38f54b09629372bd085658 (patch) | |
tree | 161bdce5cb4f2a0f7da987246db6f4a0638ffdfc /src/compiler/glsl/ast_to_hir.cpp | |
parent | 10f2c86aa3c318172a3e5cc308a1b83e0dd27e93 (diff) |
glsl: fix subroutine mismatch between declarations/definitions
Previously, when q.subroutine was set to 1, a new subroutine
declaration was added to the AST, while 0 meant a subroutine
definition has been detected by the parser.
Thus, setting the q.subroutine flag in both situations is
obviously wrong because a new type identifier is added instead
of trying to match the declaration. To fix it up, introduce
ast_type_qualifier::is_subroutine_decl() to differentiate
declarations and definitions easily.
This fixes a regression with:
arb_shader_subroutine/compiler/direct-call.vert
Cc: Mark Janes <[email protected]>
Fixes: be8aa76afd ("glsl: remove unecessary flags.q.subroutine_def")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=100026
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ast_to_hir.cpp')
-rw-r--r-- | src/compiler/glsl/ast_to_hir.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler/glsl/ast_to_hir.cpp b/src/compiler/glsl/ast_to_hir.cpp index a90813033fb..59d03c9c962 100644 --- a/src/compiler/glsl/ast_to_hir.cpp +++ b/src/compiler/glsl/ast_to_hir.cpp @@ -3256,7 +3256,7 @@ apply_explicit_location(const struct ast_type_qualifier *qual, } /* Check if index was set for the uniform instead of the function */ - if (qual->flags.q.explicit_index && qual->flags.q.subroutine) { + if (qual->flags.q.explicit_index && qual->is_subroutine_decl()) { _mesa_glsl_error(loc, state, "an index qualifier can only be " "used with subroutine functions"); return; @@ -3742,7 +3742,7 @@ apply_type_qualifier_to_variable(const struct ast_type_qualifier *qual, } } - if (qual->flags.q.subroutine && !qual->flags.q.uniform) { + if (qual->is_subroutine_decl() && !qual->flags.q.uniform) { _mesa_glsl_error(loc, state, "`subroutine' may only be applied to uniforms, " "subroutine type declarations, or function definitions"); @@ -4780,7 +4780,7 @@ ast_declarator_list::hir(exec_list *instructions, continue; } - if (this->type->qualifier.flags.q.subroutine) { + if (this->type->qualifier.is_subroutine_decl()) { const glsl_type *t; const char *name; @@ -4879,7 +4879,7 @@ ast_declarator_list::hir(exec_list *instructions, */ if (this->type->qualifier.flags.q.attribute) { mode = "attribute"; - } else if (this->type->qualifier.flags.q.subroutine) { + } else if (this->type->qualifier.is_subroutine_decl()) { mode = "subroutine uniform"; } else if (this->type->qualifier.flags.q.uniform) { mode = "uniform"; @@ -5629,7 +5629,7 @@ ast_function::hir(exec_list *instructions, f = state->symbols->get_function(name); if (f == NULL) { f = new(ctx) ir_function(name); - if (!this->return_type->qualifier.flags.q.subroutine) { + if (!this->return_type->qualifier.is_subroutine_decl()) { if (!state->symbols->add_function(f)) { /* This function name shadows a non-function use of the same name. */ YYLTYPE loc = this->get_location(); @@ -5787,7 +5787,7 @@ ast_function::hir(exec_list *instructions, } - if (this->return_type->qualifier.flags.q.subroutine) { + if (this->return_type->qualifier.is_subroutine_decl()) { if (!state->symbols->add_type(this->identifier, glsl_type::get_subroutine_instance(this->identifier))) { _mesa_glsl_error(& loc, state, "type '%s' previously defined", this->identifier); return NULL; |