From 42d77e919164a4b9301a91245a304611ab6e112c Mon Sep 17 00:00:00 2001 From: "james.brodman" Date: Tue, 8 Jan 2013 14:33:32 -0500 Subject: [PATCH] Modified to mirror asin.ispc and not fail. --- tests/acos.ispc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acos.ispc b/tests/acos.ispc index 225fda97..ed3ba6cf 100644 --- a/tests/acos.ispc +++ b/tests/acos.ispc @@ -6,7 +6,7 @@ bool ok(float x, float ref) { return (abs(x - ref) < 1e-6) || abs((x-ref)/ref) < export void f_v(uniform float RET[]) { uniform float vals[8] = { 0, 1, 0.5, -1, -.87, -.25, 1e-3, -.99999999 }; - uniform float r[programCount]; + uniform float r[8]; foreach (i = 0 ... 8) r[i] = cos(acos(vals[i % 8]));