diff options
author | Ian Romanick <[email protected]> | 2016-07-12 16:49:15 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-08-30 16:28:01 -0700 |
commit | 13ef8c46b8b8b90b74e2f9d1cc7b0483fa89c3c7 (patch) | |
tree | 027932460e4c571845f64923957ae73f9dcd0368 | |
parent | ea05a7225848dbea05547fb704d4a4a32f5208be (diff) |
glsl: Always use correct float types in constant expression handling
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/compiler/glsl/ir_constant_expression.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/compiler/glsl/ir_constant_expression.cpp b/src/compiler/glsl/ir_constant_expression.cpp index 10e5e3d4502..0dafb0cba78 100644 --- a/src/compiler/glsl/ir_constant_expression.cpp +++ b/src/compiler/glsl/ir_constant_expression.cpp @@ -842,7 +842,7 @@ ir_expression::constant_expression_value(struct hash_table *variable_context) for (unsigned c = 0; c < op[0]->type->components(); c++) { switch (this->type->base_type) { case GLSL_TYPE_FLOAT: - data.f[c] = op[0]->value.f[c] - floor(op[0]->value.f[c]); + data.f[c] = op[0]->value.f[c] - floorf(op[0]->value.f[c]); break; case GLSL_TYPE_DOUBLE: data.d[c] = op[0]->value.d[c] - floor(op[0]->value.d[c]); @@ -915,10 +915,10 @@ ir_expression::constant_expression_value(struct hash_table *variable_context) data.i[c] = (op[0]->value.i[c] > 0) - (op[0]->value.i[c] < 0); break; case GLSL_TYPE_FLOAT: - data.f[c] = float((op[0]->value.f[c] > 0)-(op[0]->value.f[c] < 0)); + data.f[c] = float((op[0]->value.f[c] > 0.0F) - (op[0]->value.f[c] < 0.0F)); break; case GLSL_TYPE_DOUBLE: - data.d[c] = double((op[0]->value.d[c] > 0)-(op[0]->value.d[c] < 0)); + data.d[c] = double((op[0]->value.d[c] > 0.0) - (op[0]->value.d[c] < 0.0)); break; default: assert(0); @@ -930,7 +930,7 @@ ir_expression::constant_expression_value(struct hash_table *variable_context) for (unsigned c = 0; c < op[0]->type->components(); c++) { switch (this->type->base_type) { case GLSL_TYPE_FLOAT: - if (op[0]->value.f[c] != 0.0) + if (op[0]->value.f[c] != 0.0F) data.f[c] = 1.0F / op[0]->value.f[c]; break; case GLSL_TYPE_DOUBLE: @@ -997,7 +997,7 @@ ir_expression::constant_expression_value(struct hash_table *variable_context) case ir_unop_dFdy_fine: assert(op[0]->type->base_type == GLSL_TYPE_FLOAT); for (unsigned c = 0; c < op[0]->type->components(); c++) { - data.f[c] = 0.0; + data.f[c] = 0.0F; } break; |