Initial commit.
This commit is contained in:
13
tests/default-args-2.ispc
Normal file
13
tests/default-args-2.ispc
Normal file
@@ -0,0 +1,13 @@
|
||||
|
||||
export uniform int width() { return programCount; }
|
||||
|
||||
|
||||
|
||||
float foo(uniform float x, float f = 1) { return f+x; }
|
||||
|
||||
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
|
||||
float a = aFOO[programIndex];
|
||||
RET[programIndex] = foo(b);
|
||||
}
|
||||
|
||||
export void result(uniform float RET[]) { RET[programIndex] = 6; }
|
||||
Reference in New Issue
Block a user