Some fixes in function names and more tests was added.

This commit is contained in:
Vsevolod Livinskij
2013-12-22 19:28:26 +04:00
parent 9a135c48d9
commit 07c6f1714a
44 changed files with 215 additions and 118 deletions

View File

@@ -2,10 +2,10 @@
export uniform int width() { return programCount; }
export void f_f(uniform float RET[], uniform float aFOO[]) {
varying unsigned int16 a = 65535, b = 65535; // max unsigned int16
varying unsigned int16 a = 65535, b = aFOO[programIndex]; // max unsigned int16
RET[programIndex] = saturating_add(a, b);
}
export void result(uniform float RET[]) {
RET[programIndex] = 65535;
RET[programIndex] = (varying unsigned int16) 65535;
}