Files
UnrealEngine/Engine/Source/ThirdParty/Intel/ISPC/ispc-1.16.1/tests/soa-10.ispc
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
456 B
Plaintext

struct Point { float x, y, z; };
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
float a = aFOO[programIndex];
soa<8> Point pts[10];
foreach (i = 0 ... 80) {
pts[i].x = b*i;
pts[i].y = 2*b*i;
pts[i].z = 3*b*i;
}
uniform Point up = pts[1];
assert(programCount < 80);
RET[programIndex] = up.y;
}
export void result(uniform float RET[]) {
RET[programIndex] = 10;
}