summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/glsl/ir_constant_expression.cpp15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/glsl/ir_constant_expression.cpp b/src/glsl/ir_constant_expression.cpp
index cce13139b7..799bd4a60b 100644
--- a/src/glsl/ir_constant_expression.cpp
+++ b/src/glsl/ir_constant_expression.cpp
@@ -327,21 +327,10 @@ ir_expression::constant_expression_value()
case ir_binop_dot:
assert(op[0]->type->is_vector() && op[1]->type->is_vector());
+ assert(op[0]->type->is_float() && op[1]->type->is_float());
data.f[0] = 0;
for (unsigned c = 0; c < op[0]->type->components(); c++) {
- switch (op[0]->type->base_type) {
- case GLSL_TYPE_UINT:
- data.u[0] += op[0]->value.u[c] * op[1]->value.u[c];
- break;
- case GLSL_TYPE_INT:
- data.i[0] += op[0]->value.i[c] * op[1]->value.i[c];
- break;
- case GLSL_TYPE_FLOAT:
- data.f[0] += op[0]->value.f[c] * op[1]->value.f[c];
- break;
- default:
- assert(0);
- }
+ data.f[0] += op[0]->value.f[c] * op[1]->value.f[c];
}
break;