Add support for int8/int16 types. Addresses issues #9 and #42.

This commit is contained in:
Matt Pharr
2011-07-21 06:57:40 +01:00
parent 2d573acd17
commit bba7211654
64 changed files with 2317 additions and 885 deletions

View File

@@ -1,9 +1,9 @@
export uniform int width() { return programCount; }
export void f_fu(uniform float RET[], uniform float aFOO[], uniform float b) {
uniform int x[8] = { 0x00020001, 0x00040003, 0x00060005, 0x00080007,
0x000a0009, 0x000c000b, 0x000e000d, 0x0010000f };
unsigned int v = load_from_int16(x, 0);
uniform int16 x[programCount];
x[programIndex] = aFOO[programIndex];
unsigned int16 v = x[programIndex];
RET[programIndex] = v;
}