Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.16.1/tests/ptr-r-erence-prepost-increment.ispc
2025-05-18 13:04:45 +08: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;
}