Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.16.1/tests/ptr-r-erence-prepost-increment.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

17 lines
337 B
Plaintext

void foo(varying float * uniform x) {
if ((*x) <= 2)
++(*x);
}
export void f_fu(uniform float ret[], uniform float a[], uniform float b) {
float aa = a[programIndex];
foo(&aa);
ret[programIndex] = aa;
}
export void result(uniform float r[]) {
r[programIndex] = 1+programIndex;
r[0] = 2;
r[1] = 3;
}