Fix test for 16-wide case
This commit is contained in:
@@ -3,10 +3,10 @@ export uniform int width() { return programCount; }
|
|||||||
|
|
||||||
|
|
||||||
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
||||||
unsigned int64 i = ((unsigned int64)1 << (50+programIndex));
|
unsigned int64 i = ((unsigned int64)1 << (40+programIndex));
|
||||||
RET[programIndex] = count_trailing_zeros(i);
|
RET[programIndex] = count_trailing_zeros(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
export void result(uniform float RET[]) {
|
export void result(uniform float RET[]) {
|
||||||
RET[programIndex] = 50+programIndex;
|
RET[programIndex] = 40+programIndex;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user