ir_constant_expression: Add support for dot products.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 6 Jul 2010 04:15:32 +0000 (21:15 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Tue, 6 Jul 2010 23:03:33 +0000 (16:03 -0700)
src/glsl/ir_constant_expression.cpp

index d05aa104f8dab8dd438bbe344567534705759466..5c2e3629e1c689412b6bb6bbd473774f55d1345e 100644 (file)
@@ -317,6 +317,26 @@ ir_constant_visitor::visit(ir_expression *ir)
       }
       break;
 
+   case ir_binop_dot:
+      assert(op[0]->type->is_vector() && op[1]->type->is_vector());
+      data.f[0] = 0;
+      for (c = 0; c < op[0]->type->components(); c++) {
+        switch (ir->operands[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);
+        }
+      }
+
+      break;
    case ir_binop_add:
       assert(op[0]->type == op[1]->type || op0_scalar || op1_scalar);
       for (unsigned c = 0, c0 = 0, c1 = 0;