Add some additional tests

This commit is contained in:
Matt Pharr
2011-12-06 14:26:52 -08:00
parent 04df63d955
commit bd70182369
8 changed files with 128 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
export uniform int width() { return programCount; }
export void f_f(uniform float RET[], uniform float aFOO[]) {
float aa = aFOO[programIndex];
float<4> a = { -1, -2, -3, -4 };
if (programIndex < 4)
a[3-programIndex] = aa;
RET[programIndex] = a[2];
}
export void result(uniform float RET[]) {
RET[programIndex] = -3;
RET[1] = 2;
}