Fix some tests for up to 64-wide gangs

This commit is contained in:
Jean-Luc Duprat
2012-05-29 07:51:48 -07:00
committed by Matt Pharr
parent 1f6075506c
commit ece65cab18
6 changed files with 56 additions and 16 deletions

View File

@@ -4,7 +4,7 @@ export uniform int width() { return programCount; }
export void f_f(uniform float RET[], uniform float aFOO[]) {
float a = aFOO[programIndex];
RET[programIndex] = a < 17.;
RET[programIndex] = a < 65.;
}