Files
2025-05-18 13:04:45 +08:00

11 lines
207 B
Plaintext

struct Foo { };
export void f_f(uniform float RET[], uniform float aFOO[]) {
uniform Foo f;
RET[programIndex] = sizeof(f);
}
export void result(uniform float RET[]) {
RET[programIndex] = 1;
}