9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
/*COextern "C" float f;*/
|
|
static uniform float f = 2.;
|
|
|
|
export void f_v(uniform float RET[]) {
|
|
RET[programIndex] = f;
|
|
}
|
|
|
|
export void result(uniform float RET[]) { RET[programIndex] = 2.; }
|