summaryrefslogtreecommitdiff
path: root/ast_to_hir.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-29 16:20:07 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-29 16:29:26 -0700
commit0150f5f20edaef96520af5d1bbed0e62e24918e5 (patch)
tree5ad85769a1c87490ca226a59808aa7c7db9f85bb /ast_to_hir.cpp
parent0104536568ed031654c1c3c957b0216bbca4a1d6 (diff)
Apply implicit conversions to relational operators
Diffstat (limited to 'ast_to_hir.cpp')
-rw-r--r--ast_to_hir.cpp22
1 files changed, 8 insertions, 14 deletions
diff --git a/ast_to_hir.cpp b/ast_to_hir.cpp
index 34762df18d..31cd01eda8 100644
--- a/ast_to_hir.cpp
+++ b/ast_to_hir.cpp
@@ -333,10 +333,12 @@ modulus_result_type(const struct glsl_type *type_a,
static const struct glsl_type *
-relational_result_type(const struct glsl_type *type_a,
- const struct glsl_type *type_b,
+relational_result_type(ir_rvalue **value_a, ir_rvalue **value_b,
struct _mesa_glsl_parse_state *state)
{
+ const glsl_type *const type_a = (*value_a)->type;
+ const glsl_type *const type_b = (*value_b)->type;
+
/* From GLSL 1.50 spec, page 56:
* "The relational operators greater than (>), less than (<), greater
* than or equal (>=), and less than or equal (<=) operate only on
@@ -351,18 +353,10 @@ relational_result_type(const struct glsl_type *type_a,
/* "Either the operands' types must match, or the conversions from
* Section 4.1.10 "Implicit Conversions" will be applied to the integer
* operand, after which the types must match."
- *
- * This conversion was added in GLSL 1.20. If the compilation mode is
- * GLSL 1.10, the conversion is skipped.
*/
- if (state->language_version >= 120) {
- if ((type_a->base_type == GLSL_TYPE_FLOAT)
- && (type_b->base_type != GLSL_TYPE_FLOAT)) {
- /* FINISHME: Generate the implicit type conversion. */
- } else if ((type_a->base_type != GLSL_TYPE_FLOAT)
- && (type_b->base_type == GLSL_TYPE_FLOAT)) {
- /* FINISHME: Generate the implicit type conversion. */
- }
+ if (!apply_implicit_conversion(type_a, value_b, state)
+ && !apply_implicit_conversion(type_b, value_a, state)) {
+ return glsl_type::error_type;
}
if (type_a->base_type != type_b->base_type)
@@ -639,7 +633,7 @@ ast_expression::hir(exec_list *instructions,
error_emitted = op[0]->type->is_error() || op[1]->type->is_error();
- type = relational_result_type(op[0]->type, op[1]->type, state);
+ type = relational_result_type(& op[0], & op[1], state);
/* The relational operators must either generate an error or result
* in a scalar boolean. See page 57 of the GLSL 1.50 spec.