Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
426 B
Plaintext

#include "../test_static.isph"
struct Foo {
float a, b, c;
};
void foo(Foo &f) {
f.a += f.a;
}
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
Foo f = { b, aFOO[programIndex], 1 };
if (programIndex < 2)
foo(f);
RET[programIndex] = f.a + f.b + f.c;
}
task void result(uniform float RET[]) {
RET[programIndex] = 7+programIndex;
RET[0] = 12;
RET[1] = 13;
}