diff options
author | Eric Anholt <[email protected]> | 2011-04-09 14:57:17 -1000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-05-31 17:45:41 -0700 |
commit | e78908d1521dcc744a17d13eb3a716cdb3b8d2b3 (patch) | |
tree | 48a388650d57086ac372bc473c22fd7a08a5ad22 | |
parent | 1d779672fafe4680b20fa5fb81f1e6ec3d553f49 (diff) |
glsl: Perform type checking on "^^" operands.
We were letting any old operand through, which generally resulted in
assertion failures later.
Fixes array-logical-xor.vert.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
(cherry picked from commit 756c262756b2434efeb2c2a33a180fda0757a6e5)
-rw-r--r-- | src/glsl/ast_to_hir.cpp | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/glsl/ast_to_hir.cpp b/src/glsl/ast_to_hir.cpp index e016e10fd73..c88a745302b 100644 --- a/src/glsl/ast_to_hir.cpp +++ b/src/glsl/ast_to_hir.cpp @@ -1192,9 +1192,16 @@ ast_expression::hir(exec_list *instructions, } case ast_logic_xor: - op[0] = this->subexpressions[0]->hir(instructions, state); - op[1] = this->subexpressions[1]->hir(instructions, state); - + /* From page 33 (page 39 of the PDF) of the GLSL 1.10 spec: + * + * "The logical binary operators and (&&), or ( | | ), and + * exclusive or (^^). They operate only on two Boolean + * expressions and result in a Boolean expression." + */ + op[0] = get_scalar_boolean_operand(instructions, state, this, 0, "LHS", + &error_emitted); + op[1] = get_scalar_boolean_operand(instructions, state, this, 1, "RHS", + &error_emitted); result = new(ctx) ir_expression(operations[this->oper], glsl_type::bool_type, op[0], op[1]); |