9 lines
246 B
Plaintext
9 lines
246 B
Plaintext
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
int32 i = (1ul << (programIndex % 28));
|
|
RET[programIndex] = count_leading_zeros(i);
|
|
}
|
|
|
|
export void result(uniform float RET[]) {
|
|
RET[programIndex] = 31-(programIndex%28);
|
|
}
|