Some fixes in function names and more tests was added.
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
export uniform int width() { return programCount; }
|
||||
|
||||
export void f_f(uniform float RET[], uniform float aFOO[]) {
|
||||
varying int16 a = -32768, b = 32767; // min and max unsigned int16
|
||||
varying int16 a = -32768, b = aFOO[programIndex]; // min unsigned int16
|
||||
RET[programIndex] = saturating_sub(a, b);
|
||||
}
|
||||
|
||||
export void result(uniform float RET[]) {
|
||||
RET[programIndex] = -32768;
|
||||
RET[programIndex] = (varying int16) -32768;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user