Added varying CFG and non-overflow part of the tests.

This commit is contained in:
Vsevolod Livinskij
2014-01-06 15:24:09 +04:00
parent 323587f10f
commit 97cc5b7f48
24 changed files with 265 additions and 144 deletions

View File

@@ -2,10 +2,26 @@
export uniform int width() { return programCount; }
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
uniform int16 a = -32768; // min signed int16
RET[programIndex] = saturating_sub(a, b);
uniform int16 a_max = 32767, a_min = -32768; // max and min signed int16
if (programIndex % 3 == 0) {
RET[programIndex] = saturating_sub(a_min, b);
}
else if (programIndex % 3 == 1) {
RET[programIndex] = saturating_sub(a_max, -b);
}
else {
RET[programIndex] = saturating_sub(a_max, b);
}
}
export void result(uniform float RET[]) {
RET[programIndex] = (uniform int16) -32768;
if (programIndex % 3 == 0) {
RET[programIndex] = (uniform int16) -32768;
}
else if (programIndex % 3 == 1) {
RET[programIndex] = (uniform int16) 32767;
}
else {
RET[programIndex] = (uniform int16) 32762;
}
}