12 lines
276 B
Plaintext
12 lines
276 B
Plaintext
#include "../test_static.isph"
|
|
task void f_f(uniform float RET[], uniform float aFOO[]) {
|
|
uniform float * uniform b = aFOO;
|
|
b += 10;
|
|
uniform int8 index = -5;
|
|
RET[programIndex] = b[index];
|
|
}
|
|
|
|
task void result(uniform float RET[]) {
|
|
RET[programIndex] = 6;
|
|
}
|