13 lines
266 B
Plaintext
13 lines
266 B
Plaintext
#include "../test_static.isph"
|
|
task void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
float x = aFOO[programIndex];
|
|
float y;
|
|
y = ++x, 3;
|
|
RET[programIndex] = y;
|
|
}
|
|
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = 2+programIndex;
|
|
}
|