17 lines
373 B
Plaintext
17 lines
373 B
Plaintext
|
|
export uniform int width() { return programCount; }
|
|
|
|
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
uniform int k = 0;
|
|
int index = aFOO[programIndex/2];
|
|
foreach_unique(j in index) {
|
|
if (j & 1) continue;
|
|
++k;
|
|
}
|
|
RET[programIndex] = k;
|
|
}
|
|
|
|
export void result(uniform float RET[]) {
|
|
RET[programIndex] = programCount / 4;
|
|
}
|