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:
@@ -17,8 +17,8 @@ void set(Foo f[], int offset, Foo val) {
|
||||
|
||||
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
||||
float a = aFOO[programIndex];
|
||||
Foo foo[35];
|
||||
for (uniform int i = 0; i < 35; ++i) {
|
||||
Foo foo[programCount+5];
|
||||
for (uniform int i = 0; i < programCount+5; ++i) {
|
||||
foo[i].f = a;
|
||||
foo[i].a = i;
|
||||
foo[i].y = 2*a;
|
||||
|
||||
Reference in New Issue
Block a user