Remove test that was failing (now recorded as issue #130).

This commit is contained in:
Matt Pharr
2011-12-05 09:39:50 -08:00
parent e3cae098fe
commit 0388f46a3b

View File

@@ -1,19 +0,0 @@
//add test for f(int x[2][10]) - f(int x[][10]) - f(int (*x)[10])x
export uniform int width() { return programCount; }
export void f_f(uniform float RET[], uniform float aFOO[]) {
uniform int x[2][10];
for (uniform int i = 0; i < 2; ++i) {
for (uniform int j = 0; j < 10; ++j) {
x[i][j] = 10*i+j;
}
}
uniform int (* varying y)[10] = x;
RET[programIndex] = y[1][programIndex % 5];
}
export void result(uniform float RET[]) {
RET[programIndex] = 10+ (programIndex % 5);
}