21 lines
451 B
Plaintext
21 lines
451 B
Plaintext
#include "../test_static.isph"
|
|
struct Foo {
|
|
float x, y;
|
|
};
|
|
|
|
struct Bar {
|
|
uniform Foo uf;
|
|
varying Foo vf;
|
|
};
|
|
|
|
task void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
|
float a = aFOO[programIndex];
|
|
// Bar bar = { { b, b }, { a, a } };
|
|
Bar bar;
|
|
bar.uf.x = b;
|
|
bar.vf.y = a;
|
|
RET[programIndex] = bar.uf.x + bar.vf.y;
|
|
}
|
|
|
|
task void result(uniform float RET[]) { RET[programIndex] = 6+programIndex; }
|