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

11 lines
247 B
Plaintext

// rule: skip on cpu=TGLLP
export void f_f(uniform float RET[], uniform float aFOO[]) {
double a = aFOO[programIndex];
RET[programIndex] = abs(-a);
}
export void result(uniform float RET[]) {
RET[programIndex] = 1 + programIndex;
}