Fix various tests/[frs]* files to be correct with 32 and 64-wide targets.

Still todo: tests/c*, tests/test-*
This commit is contained in:
Matt Pharr
2012-05-30 10:31:12 -07:00
parent d86653668e
commit 5cb53f52c3
45 changed files with 97 additions and 101 deletions

View File

@@ -10,12 +10,13 @@ struct Foo {
export void f_fi(uniform float RET[], uniform float aFOO[], uniform int bFOO[]) {
float a = aFOO[programIndex];
int b = bFOO[programIndex];
varying Foo myFoo[17];
varying Foo myFoo[128];
uniform int i;
for (i = 0; i < 17; ++i) {
for (i = 0; i < 128; ++i) {
myFoo[i].x = i;
myFoo[i].f = 2*i;
}
assert(b/2 < 128);
RET[programIndex] = myFoo[b/2].f;
}