Type convert arrays in select expressions to pointers to the first element.

Fixes issue #345.
This commit is contained in:
Matt Pharr
2012-08-03 11:53:59 -07:00
parent 49dde7c6f2
commit 8f5189f606
2 changed files with 30 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
uniform float a[1234];
float * uniform func(uniform bool x) {
return x ? a : NULL;
}
export uniform int width() { return programCount; }
export void f_f(uniform float RET[], uniform float aFOO[]) {
a[programIndex] = aFOO[programIndex];
float * uniform ptr = func(aFOO[0] == 1);
RET[programIndex] = ptr[programIndex];
}
export void result(uniform float RET[]) {
RET[programIndex] = 1 + programIndex;
}