ir_constant_expression: Add support for "atan" builtins.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 22 Jul 2010 00:42:23 +0000 (17:42 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Jul 2010 22:46:27 +0000 (15:46 -0700)
src/glsl/ir_constant_expression.cpp

index 301bfa8..a6ce339 100644 (file)
@@ -826,7 +826,15 @@ ir_call::constant_expression_value()
       for (unsigned c = 0; c < op[0]->type->components(); c++)
         data.f[c] = asinf(op[0]->value.f[c]);
    } else if (strcmp(callee, "atan") == 0) {
-      return NULL; /* FINISHME: implement this */
+      assert(op[0]->type->is_float());
+      if (num_parameters == 2) {
+        assert(op[1]->type->is_float());
+        for (unsigned c = 0; c < op[0]->type->components(); c++)
+           data.f[c] = atan2f(op[0]->value.f[c], op[1]->value.f[c]);
+      } else {
+        for (unsigned c = 0; c < op[0]->type->components(); c++)
+           data.f[c] = atanf(op[0]->value.f[c]);
+      }
    } else if (strcmp(callee, "dFdx") == 0 || strcmp(callee, "dFdy") == 0) {
       return ir_constant::zero(mem_ctx, this->type);
    } else if (strcmp(callee, "ceil") == 0) {