16 lines
275 B
Plaintext
16 lines
275 B
Plaintext
|
|
export uniform int width() { return programCount; }
|
|
|
|
|
|
export void f_v(uniform float RET[]) {
|
|
int i=0, j=0;
|
|
cwhile (i++ < 10) {
|
|
++j;
|
|
if (i >= 5) break;
|
|
++j;}
|
|
RET[programIndex] = (float)j; }
|
|
|
|
export void result(uniform float RET[]) {
|
|
RET[programIndex] = 9.000000;
|
|
}
|