13 lines
234 B
Plaintext
13 lines
234 B
Plaintext
|
|
export uniform int width() { return programCount; }
|
|
|
|
|
|
|
|
export void f_v(uniform float RET[]) {
|
|
static const uniform float x = 1.;
|
|
RET[programIndex] = x+x;
|
|
}
|
|
|
|
|
|
export void result(uniform float RET[]) { RET[programIndex] = 2; }
|