mesa: remove unused/obsolete __NormalMatrixTranspose matrix
[mesa.git] / src / mesa / shader / slang / library / slang_core.gc
old mode 100755 (executable)
new mode 100644 (file)
index 40db02a..10a6bb5
-\r
-//\r
-// This file defines nearly all constructors and operators for built-in data types, using\r
-// extended language syntax. In general, compiler treats constructors and operators as\r
-// ordinary functions with some exceptions. For example, the language does not allow\r
-// functions to be called in constant expressions - here the exception is made to allow it.\r
-//\r
-// Each implementation provides its own version of this file. Each implementation can define\r
-// the required set of operators and constructors in its own fashion.\r
-//\r
-// The extended language syntax is only present when compiling this file. It is implicitly\r
-// included at the very beginning of the compiled shader, so no built-in functions can be\r
-// used.\r
-//\r
-// To communicate with the implementation, a special extended "__asm" keyword is used, followed\r
-// by an instruction name (any valid identifier), a destination variable identifier and a\r
-// a list of zero or more source variable identifiers. A variable identifier is a variable name\r
-// declared earlier in the code (as a function parameter, local or global variable).\r
-// An instruction name designates an instruction that must be exported by the implementation.\r
-// Each instruction receives data from source variable identifiers and returns data in the\r
-// destination variable identifier.\r
-//\r
-// It is up to the implementation how to define a particular operator or constructor. If it is\r
-// expected to being used rarely, it can be defined in terms of other operators and constructors,\r
-// for example:\r
-//\r
-// ivec2 __operator + (const ivec2 x, const ivec2 y) {\r
-//    return ivec2 (x[0] + y[0], x[1] + y[1]);\r
-// }\r
-//\r
-// If a particular operator or constructor is expected to be used very often or is an atomic\r
-// operation (that is, an operation that cannot be expressed in terms of other operations or\r
-// would create a dependency cycle) it must be defined using one or more __asm constructs.\r
-//\r
-// Each implementation must define constructors for all scalar types (bool, float, int).\r
-// There are 9 scalar-to-scalar constructors (including identity constructors). However,\r
-// since the language introduces special constructors (like matrix constructor with a single\r
-// scalar value), implementations must also implement these cases.\r
-// The compiler provides the following algorithm when resolving a constructor:\r
-// - try to find a constructor with a prototype matching ours,\r
-// - if no constructor is found and this is a scalar-to-scalar constructor, raise an error,\r
-// - if a constructor is found, execute it and return,\r
-// - count the size of the constructor parameter list - if it is less than the size of\r
-//   our constructor's type, raise an error,\r
-// - for each parameter in the list do a recursive constructor matching for appropriate\r
-//   scalar fields in the constructed variable,\r
-//\r
-// Each implementation must also define a set of operators that deal with built-in data types.\r
-// There are four kinds of operators:\r
-// 1) Operators that are implemented only by the compiler: "()" (function call), "," (sequence)\r
-//    and "?:" (selection).\r
-// 2) Operators that are implemented by the compiler by expressing it in terms of other operators:\r
-//    - "." (field selection) - translated to subscript access,\r
-//    - "&&" (logical and) - translated to "<left_expr> ? <right_expr> : false",\r
-//    - "||" (logical or) - translated to "<left_expr> ? true : <right_expr>",\r
-// 3) Operators that can be defined by the implementation and if the required prototype is not\r
-//    found, standard behaviour is used:\r
-//    - "==", "!=", "=" (equality, assignment) - compare or assign matching fields one-by-one;\r
-//      note that at least operators for scalar data types must be defined by the implementation\r
-//      to get it work,\r
-// 4) All other operators not mentioned above. If no required prototype is found, an error is\r
-//    raised. An implementation must follow the language specification to provide all valid\r
-//    operator prototypes.\r
-//\r
-\r
-int __constructor (const float f) {\r
-    int i;\r
-    __asm float_to_int i, f;\r
-    return i;\r
-}\r
-\r
-bool __constructor (const int i) {\r
-    return i != 0;\r
-}\r
-\r
-bool __constructor (const float f) {\r
-    return f != 0.0;\r
-}\r
-\r
-int __constructor (const bool b) {\r
-    return b ? 1 : 0;\r
-}\r
-\r
-float __constructor (const bool b) {\r
-    return b ? 1.0 : 0.0;\r
-}\r
-\r
-float __constructor (const int i) {\r
-    float f;\r
-    __asm int_to_float f, i;\r
-    return f;\r
-}\r
-\r
-bool __constructor (const bool b) {\r
-    return b;\r
-}\r
-\r
-int __constructor (const int i) {\r
-    return i;\r
-}\r
-\r
-float __constructor (const float f) {\r
-    return f;\r
-}\r
-\r
-vec2 __constructor (const float f) {\r
-    return vec2 (f, f);\r
-}\r
-\r
-vec2 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return vec2 (x);\r
-}\r
-\r
-vec2 __constructor (const bool b) {\r
-    return vec2 (b ? 1.0 : 0.0);\r
-}\r
-\r
-vec3 __constructor (const float f) {\r
-    return vec3 (f, f, f);\r
-}\r
-\r
-vec3 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return vec3 (x);\r
-}\r
-\r
-vec3 __constructor (const bool b) {\r
-    return vec3 (b ? 1.0 : 0.0);\r
-}\r
-\r
-vec4 __constructor (const float f) {\r
-    return vec4 (f, f, f, f);\r
-}\r
-\r
-vec4 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return vec4 (x);\r
-}\r
-\r
-vec4 __constructor (const bool b) {\r
-    return vec4 (b ? 1.0 : 0.0);\r
-}\r
-\r
-ivec2 __constructor (const int i) {\r
-    return ivec2 (i, i);\r
-}\r
-\r
-ivec2 __constructor (const float f) {\r
-    return ivec2 (int (f));\r
-}\r
-\r
-ivec2 __constructor (const bool b) {\r
-    return ivec2 (int (b));\r
-}\r
-\r
-ivec3 __constructor (const int i) {\r
-    return ivec3 (i, i, i);\r
-}\r
-\r
-ivec3 __constructor (const float f) {\r
-    return ivec3 (int (f));\r
-}\r
-\r
-ivec3 __constructor (const bool b) {\r
-    return ivec3 (int (b));\r
-}\r
-\r
-ivec4 __constructor (const int i) {\r
-    return ivec4 (i, i, i, i);\r
-}\r
-\r
-ivec4 __constructor (const float f) {\r
-    return ivec4 (int (f));\r
-}\r
-\r
-ivec4 __constructor (const bool b) {\r
-    return ivec4 (int (b));\r
-}\r
-\r
-bvec2 __constructor (const bool b) {\r
-    return bvec2 (b, b);\r
-}\r
-\r
-bvec2 __constructor (const float f) {\r
-    return bvec2 (bool (f));\r
-}\r
-\r
-bvec2 __constructor (const int i) {\r
-    return bvec2 (bool (i));\r
-}\r
-\r
-bvec3 __constructor (const bool b) {\r
-    return bvec3 (b, b, b);\r
-}\r
-\r
-bvec3 __constructor (const float f) {\r
-    return bvec3 (bool (f));\r
-}\r
-\r
-bvec3 __constructor (const int i) {\r
-    return bvec3 (bool (i));\r
-}\r
-\r
-bvec4 __constructor (const bool b) {\r
-    return bvec4 (b, b, b, b);\r
-}\r
-\r
-bvec4 __constructor (const float f) {\r
-    return bvec4 (bool (f));\r
-}\r
-\r
-bvec4 __constructor (const int i) {\r
-    return bvec4 (bool (i));\r
-}\r
-\r
-mat2 __constructor (const float f) {\r
-    return mat2 (f, 0.0, 0.0, f);\r
-}\r
-\r
-mat2 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return mat2 (x);\r
-}\r
-\r
-mat2 __constructor (const bool b) {\r
-    return mat2 (b ? 1.0 : 0.0);\r
-}\r
-\r
-mat3 __constructor (const float f) {\r
-    return mat3 (f, 0.0, 0.0, 0.0, f, 0.0, 0.0, 0.0, f);\r
-}\r
-\r
-mat3 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return mat3 (x);\r
-}\r
-\r
-mat3 __constructor (const bool b) {\r
-    return mat3 (b ? 1.0 : 0.0);\r
-}\r
-\r
-mat4 __constructor (const float f) {\r
-    return mat4 (f, 0.0, 0.0, 0.0, 0.0, f, 0.0, 0.0, 0.0, 0.0, f, 0.0, 0.0, 0.0, 0.0, f);\r
-}\r
-\r
-mat4 __constructor (const int i) {\r
-    float x;\r
-    __asm int_to_float x, i;\r
-    return mat4 (x);\r
-}\r
-\r
-mat4 __constructor (const bool b) {\r
-    return mat4 (b ? 1.0 : 0.0);\r
-}\r
-\r
-void __operator += (inout float a, const float b) {\r
-    __asm float_add a, a, b;\r
-}\r
-\r
-float __operator - (const float a) {\r
-    float b;\r
-    __asm float_negate b, a;\r
-    return b;\r
-}\r
-\r
-void __operator -= (inout float a, const float b) {\r
-    float c;\r
-    __asm float_negate c, b;\r
-    __asm float_add a, a, c;\r
-}\r
-\r
-void __operator *= (inout float a, const float b) {\r
-    __asm float_multiply a, a, b;\r
-}\r
-\r
-void __operator /= (inout float a, const float b) {\r
-    __asm float_divide a, a, b;\r
-}\r
-\r
-float __operator + (const float a, const float b) {\r
-    float c;\r
-    __asm float_add c, a, b;\r
-    return c;\r
-}\r
-\r
-void __operator += (inout int a, const int b) {\r
-    a = int (float (a) + float (b));\r
-}\r
-\r
-int __operator - (const int a) {\r
-    float x;\r
-    int b;\r
-    __asm int_to_float x, a;\r
-    __asm float_negate x, x;\r
-    __asm float_to_int b, x;\r
-    return b;\r
-}\r
-\r
-void __operator -= (inout int a, const int b) {\r
-    a += -b;\r
-}\r
-\r
-float __operator * (const float a, const float b) {\r
-    float c;\r
-    __asm float_multiply c, a, b;\r
-    return c;\r
-}\r
-\r
-void __operator *= (inout int a, const int b) {\r
-    a = int (float (a) * float (b));\r
-}\r
-\r
-float __operator / (const float a, const float b) {\r
-    float c;\r
-    __asm float_divide c, a, b;\r
-    return c;\r
-}\r
-\r
-void __operator /= (inout int a, const int b) {\r
-    a = int (float (a) / float (b));\r
-}\r
-\r
-void __operator += (inout vec2 v, const vec2 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-}\r
-\r
-void __operator -= (inout vec2 v, const vec2 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-}\r
-\r
-void __operator *= (inout vec2 v, const vec2 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-}\r
-\r
-void __operator /= (inout vec2 v, const vec2 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-}\r
-\r
-void __operator += (inout vec3 v, const vec3 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-    v.z += u.z;\r
-}\r
-\r
-void __operator -= (inout vec3 v, const vec3 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-    v.z -= u.z;\r
-}\r
-\r
-void __operator *= (inout vec3 v, const vec3 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-    v.z *= u.z;\r
-}\r
-\r
-void __operator /= (inout vec3 v, const vec3 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-    v.z /= u.z;\r
-}\r
-\r
-void __operator += (inout vec4 v, const vec4 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-    v.z += u.z;\r
-    v.w += u.w;\r
-}\r
-\r
-void __operator -= (inout vec4 v, const vec4 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-    v.z -= u.z;\r
-    v.w -= u.w;\r
-}\r
-\r
-void __operator *= (inout vec4 v, const vec4 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-    v.z *= u.z;\r
-    v.w *= u.w;\r
-}\r
-\r
-void __operator /= (inout vec4 v, const vec4 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-    v.z /= u.z;\r
-    v.w /= u.w;\r
-}\r
-\r
-void __operator += (inout ivec2 v, const ivec2 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-}\r
-\r
-void __operator -= (inout ivec2 v, const ivec2 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-}\r
-\r
-void __operator *= (inout ivec2 v, const ivec2 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-}\r
-\r
-void __operator /= (inout ivec2 v, const ivec2 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-}\r
-\r
-void __operator += (inout ivec3 v, const ivec3 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-    v.z += u.z;\r
-}\r
-\r
-void __operator -= (inout ivec3 v, const ivec3 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-    v.z -= u.z;\r
-}\r
-\r
-void __operator *= (inout ivec3 v, const ivec3 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-    v.z *= u.z;\r
-}\r
-\r
-void __operator /= (inout ivec3 v, const ivec3 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-    v.z /= u.z;\r
-}\r
-\r
-void __operator += (inout ivec4 v, const ivec4 u) {\r
-    v.x += u.x;\r
-    v.y += u.y;\r
-    v.z += u.z;\r
-    v.w += u.w;\r
-}\r
-\r
-void __operator -= (inout ivec4 v, const ivec4 u) {\r
-    v.x -= u.x;\r
-    v.y -= u.y;\r
-    v.z -= u.z;\r
-    v.w -= u.w;\r
-}\r
-\r
-void __operator *= (inout ivec4 v, const ivec4 u) {\r
-    v.x *= u.x;\r
-    v.y *= u.y;\r
-    v.z *= u.z;\r
-    v.w *= u.w;\r
-}\r
-\r
-void __operator /= (inout ivec4 v, const ivec4 u) {\r
-    v.x /= u.x;\r
-    v.y /= u.y;\r
-    v.z /= u.z;\r
-    v.w /= u.w;\r
-}\r
-\r
-void __operator += (inout mat2 m, const mat2 n) {\r
-    m[0] += n[0];\r
-    m[1] += n[1];\r
-}\r
-\r
-void __operator -= (inout mat2 m, const mat2 n) {\r
-    m[0] -= n[0];\r
-    m[1] -= n[1];\r
-}\r
-\r
-vec2 __operator * (const mat2 m, const vec2 v) {\r
-    return vec2 (\r
-        v.x * m[0].x + v.y * m[1].x,\r
-        v.x * m[0].y + v.y * m[1].y\r
-    );\r
-}\r
-\r
-mat2 __operator * (const mat2 m, const mat2 n) {\r
-    return mat2 (m * n[0], m * n[1]);\r
-}\r
-\r
-void __operator *= (inout mat2 m, const mat2 n) {\r
-    m = m * n;\r
-}\r
-\r
-void __operator /= (inout mat2 m, const mat2 n) {\r
-    m[0] /= n[0];\r
-    m[1] /= n[1];\r
-}\r
-\r
-void __operator += (inout mat3 m, const mat3 n) {\r
-    m[0] += n[0];\r
-    m[1] += n[1];\r
-    m[2] += n[2];\r
-}\r
-\r
-void __operator -= (inout mat3 m, const mat3 n) {\r
-    m[0] -= n[0];\r
-    m[1] -= n[1];\r
-    m[2] -= n[2];\r
-}\r
-\r
-vec3 __operator * (const mat3 m, const vec3 v) {\r
-    return vec3 (\r
-        v.x * m[0].x + v.y * m[1].x + v.z * m[2].x,\r
-        v.x * m[0].y + v.y * m[1].y + v.z * m[2].y,\r
-        v.x * m[0].z + v.y * m[1].z + v.z * m[2].z\r
-    );\r
-}\r
-\r
-mat3 __operator * (const mat3 m, const mat3 n) {\r
-    return mat3 (m * n[0], m * n[1], m * n[2]);\r
-}\r
-\r
-void __operator *= (inout mat3 m, const mat3 n) {\r
-    m = m * n;\r
-}\r
-\r
-void __operator /= (inout mat3 m, const mat3 n) {\r
-    m[0] /= n[0];\r
-    m[1] /= n[1];\r
-    m[2] /= n[2];\r
-}\r
-\r
-void __operator += (inout mat4 m, const mat4 n) {\r
-    m[0] += n[0];\r
-    m[1] += n[1];\r
-    m[2] += n[2];\r
-    m[3] += n[3];\r
-}\r
-\r
-void __operator -= (inout mat4 m, const mat4 n) {\r
-    m[0] -= n[0];\r
-    m[1] -= n[1];\r
-    m[2] -= n[2];\r
-    m[3] -= n[3];\r
-}\r
-\r
-vec4 __operator * (const mat4 m, const vec4 v) {\r
-    return vec4 (\r
-        v.x * m[0].x + v.y * m[1].x + v.z * m[2].x + v.w * m[3].x,\r
-        v.x * m[0].y + v.y * m[1].y + v.z * m[2].y + v.w * m[3].y,\r
-        v.x * m[0].z + v.y * m[1].z + v.z * m[2].z + v.w * m[3].z,\r
-        v.x * m[0].w + v.y * m[1].w + v.z * m[2].w + v.w * m[3].w\r
-    );\r
-}\r
-\r
-mat4 __operator * (const mat4 m, const mat4 n) {\r
-    return mat4 (m * n[0], m * n[1], m * n[2], m * n[3]);\r
-}\r
-\r
-void __operator *= (inout mat4 m, const mat4 n) {\r
-    m = m * n;\r
-}\r
-\r
-void __operator /= (inout mat4 m, const mat4 n) {\r
-    m[0] /= n[0];\r
-    m[1] /= n[1];\r
-    m[2] /= n[2];\r
-    m[3] /= n[3];\r
-}\r
-\r
-void __operator += (inout vec2 v, const float a) {\r
-    v.x += a;\r
-    v.y += a;\r
-}\r
-\r
-void __operator -= (inout vec2 v, const float a) {\r
-    v.x -= a;\r
-    v.y -= a;\r
-}\r
-\r
-void __operator *= (inout vec2 v, const float a) {\r
-    v.x *= a;\r
-    v.y *= a;\r
-}\r
-\r
-void __operator /= (inout vec2 v, const float a) {\r
-    v.x /= a;\r
-    v.y /= a;\r
-}\r
-\r
-void __operator += (inout vec3 v, const float a) {\r
-    v.x += a;\r
-    v.y += a;\r
-    v.z += a;\r
-}\r
-\r
-void __operator -= (inout vec3 v, const float a) {\r
-    v.x -= a;\r
-    v.y -= a;\r
-    v.z -= a;\r
-}\r
-\r
-void __operator *= (inout vec3 v, const float a) {\r
-    v.x *= a;\r
-    v.y *= a;\r
-    v.z *= a;\r
-}\r
-\r
-void __operator /= (inout vec3 v, const float a) {\r
-    v.x /= a;\r
-    v.y /= a;\r
-    v.z /= a;\r
-}\r
-\r
-void __operator += (inout vec4 v, const float a) {\r
-    v.x += a;\r
-    v.y += a;\r
-    v.z += a;\r
-    v.w += a;\r
-}\r
-\r
-void __operator -= (inout vec4 v, const float a) {\r
-    v.x -= a;\r
-    v.y -= a;\r
-    v.z -= a;\r
-    v.w -= a;\r
-}\r
-\r
-void __operator *= (inout vec4 v, const float a) {\r
-    v.x *= a;\r
-    v.y *= a;\r
-    v.z *= a;\r
-    v.w *= a;\r
-}\r
-\r
-void __operator /= (inout vec4 v, const float a) {\r
-    v.x /= a;\r
-    v.y /= a;\r
-    v.z /= a;\r
-    v.w /= a;\r
-}\r
-\r
-void __operator += (inout mat2 m, const float a) {\r
-    m[0] += a;\r
-    m[1] += a;\r
-}\r
-\r
-void __operator -= (inout mat2 m, const float a) {\r
-    m[0] -= a;\r
-    m[1] -= a;\r
-}\r
-\r
-void __operator *= (inout mat2 m, const float a) {\r
-    m[0] *= a;\r
-    m[1] *= a;\r
-}\r
-\r
-void __operator /= (inout mat2 m, const float a) {\r
-    m[0] /= a;\r
-    m[1] /= a;\r
-}\r
-\r
-void __operator += (inout mat3 m, const float a) {\r
-    m[0] += a;\r
-    m[1] += a;\r
-    m[2] += a;\r
-}\r
-\r
-void __operator -= (inout mat3 m, const float a) {\r
-    m[0] -= a;\r
-    m[1] -= a;\r
-    m[2] -= a;\r
-}\r
-\r
-void __operator *= (inout mat3 m, const float a) {\r
-    m[0] *= a;\r
-    m[1] *= a;\r
-    m[2] *= a;\r
-}\r
-\r
-void __operator /= (inout mat3 m, const float a) {\r
-    m[0] /= a;\r
-    m[1] /= a;\r
-    m[2] /= a;\r
-}\r
-\r
-void __operator += (inout mat4 m, const float a) {\r
-    m[0] += a;\r
-    m[1] += a;\r
-    m[2] += a;\r
-    m[3] += a;\r
-}\r
-\r
-void __operator -= (inout mat4 m, const float a) {\r
-    m[0] -= a;\r
-    m[1] -= a;\r
-    m[2] -= a;\r
-    m[3] -= a;\r
-}\r
-\r
-void __operator *= (inout mat4 m, const float a) {\r
-    m[0] *= a;\r
-    m[1] *= a;\r
-    m[2] *= a;\r
-    m[3] *= a;\r
-}\r
-\r
-void __operator /= (inout mat4 m, const float a) {\r
-    m[0] /= a;\r
-    m[1] /= a;\r
-    m[2] /= a;\r
-    m[3] /= a;\r
-}\r
-\r
-vec2 __operator * (const vec2 v, const mat2 m) {\r
-    return vec2 (\r
-        v.x * m[0].x + v.y * m[0].y,\r
-        v.x * m[1].x + v.y * m[1].y\r
-    );\r
-}\r
-\r
-void __operator *= (inout vec2 v, const mat2 m) {\r
-    v = v * m;\r
-}\r
-\r
-vec3 __operator * (const vec3 v, const mat3 m) {\r
-    return vec3 (\r
-        v.x * m[0].x + v.y * m[0].y + v.z * m[0].z,\r
-        v.x * m[1].x + v.y * m[1].y + v.z * m[1].z,\r
-        v.x * m[2].x + v.y * m[2].y + v.z * m[2].z\r
-    );\r
-}\r
-\r
-void __operator *= (inout vec3 v, const mat3 m) {\r
-    v = v * m;\r
-}\r
-\r
-vec4 __operator * (const vec4 v, const mat4 m) {\r
-    return vec4 (\r
-        v.x * m[0].x + v.y * m[0].y + v.z * m[0].z + v.w * m[0].w,\r
-        v.x * m[1].x + v.y * m[1].y + v.z * m[1].z + v.w * m[1].w,\r
-        v.x * m[2].x + v.y * m[2].y + v.z * m[2].z + v.w * m[2].w,\r
-        v.x * m[3].x + v.y * m[3].y + v.z * m[3].z + v.w * m[3].w\r
-    );\r
-}\r
-\r
-void __operator *= (inout vec4 v, const mat4 m) {\r
-    v = v * m;\r
-}\r
-\r
-float __operator - (const float a, const float b) {\r
-    float c;\r
-    __asm float_negate c, b;\r
-    __asm float_add    c, a, c;\r
-    return c;\r
-}\r
-\r
-int __operator + (const int a, const int b) {\r
-    float x, y;\r
-    int c;\r
-    __asm int_to_float x, a;\r
-    __asm int_to_float y, b;\r
-    __asm float_add    x, x, y;\r
-    __asm float_to_int c, x;\r
-    return c;\r
-}\r
-\r
-int __operator - (const int a, const int b) {\r
-    float x, y;\r
-    int c;\r
-    __asm int_to_float x, a;\r
-    __asm int_to_float y, b;\r
-    __asm float_negate y, y;\r
-    __asm float_add    x, x, y;\r
-    __asm float_to_int c, x;\r
-    return c;\r
-}\r
-\r
-int __operator * (const int a, const int b) {\r
-    float x, y;\r
-    int c;\r
-    __asm int_to_float   x, a;\r
-    __asm int_to_float   y, b;\r
-    __asm float_multiply x, x, y;\r
-    __asm float_to_int   c, x;\r
-    return c;\r
-}\r
-\r
-int __operator / (const int a, const int b) {\r
-    float x, y;\r
-    int c;\r
-    __asm int_to_float x, a;\r
-    __asm int_to_float y, b;\r
-    __asm float_divide x, x, y;\r
-    __asm float_to_int c, x;\r
-    return c;\r
-}\r
-\r
-vec2 __operator + (const vec2 v, const vec2 u) {\r
-    return vec2 (v.x + u.x, v.y + u.y);\r
-}\r
-\r
-vec2 __operator - (const vec2 v, const vec2 u) {\r
-    return vec2 (v.x - u.x, v.y - u.y);\r
-}\r
-\r
-vec2 __operator * (const vec2 v, const vec2 u) {\r
-    return vec2 (v.x * u.x, v.y * u.y);\r
-}\r
-\r
-vec2 __operator / (const vec2 v, const vec2 u) {\r
-    return vec2 (v.x / u.x, v.y / u.y);\r
-}\r
-\r
-vec3 __operator + (const vec3 v, const vec3 u) {\r
-    return vec3 (v.x + u.x, v.y + u.y, v.z + u.z);\r
-}\r
-\r
-vec3 __operator - (const vec3 v, const vec3 u) {\r
-    return vec3 (v.x - u.x, v.y - u.y, v.z - u.z);\r
-}\r
-\r
-vec3 __operator * (const vec3 v, const vec3 u) {\r
-    return vec3 (v.x * u.x, v.y * u.y, v.z * u.z);\r
-}\r
-\r
-vec3 __operator / (const vec3 v, const vec3 u) {\r
-    return vec3 (v.x / u.x, v.y / u.y, v.z / u.z);\r
-}\r
-\r
-vec4 __operator + (const vec4 v, const vec4 u) {\r
-    return vec4 (v.x + u.x, v.y + u.y, v.z + u.z, v.w + u.w);\r
-}\r
-\r
-vec4 __operator - (const vec4 v, const vec4 u) {\r
-    return vec4 (v.x - u.x, v.y - u.y, v.z - u.z, v.w - u.w);\r
-}\r
-\r
-vec4 __operator * (const vec4 v, const vec4 u) {\r
-    return vec4 (v.x * u.x, v.y * u.y, v.z * u.z, v.w * u.w);\r
-}\r
-\r
-vec4 __operator / (const vec4 v, const vec4 u) {\r
-    return vec4 (v.x / u.x, v.y / u.y, v.z / u.z, v.w / u.w);\r
-}\r
-\r
-ivec2 __operator + (const ivec2 v, const ivec2 u) {\r
-    return ivec2 (v.x + u.x, v.y + u.y);\r
-}\r
-\r
-ivec2 __operator - (const ivec2 v, const ivec2 u) {\r
-    return ivec2 (v.x - u.x, v.y - u.y);\r
-}\r
-\r
-ivec2 __operator * (const ivec2 v, const ivec2 u) {\r
-    return ivec2 (v.x * u.x, v.y * u.y);\r
-}\r
-\r
-ivec2 __operator / (const ivec2 v, const ivec2 u) {\r
-    return ivec2 (v.x / u.x, v.y / u.y);\r
-}\r
-\r
-ivec3 __operator + (const ivec3 v, const ivec3 u) {\r
-    return ivec3 (v.x + u.x, v.y + u.y, v.z + u.z);\r
-}\r
-\r
-ivec3 __operator - (const ivec3 v, const ivec3 u) {\r
-    return ivec3 (v.x - u.x, v.y - u.y, v.z - u.z);\r
-}\r
-\r
-ivec3 __operator * (const ivec3 v, const ivec3 u) {\r
-    return ivec3 (v.x * u.x, v.y * u.y, v.z * u.z);\r
-}\r
-\r
-ivec3 __operator / (const ivec3 v, const ivec3 u) {\r
-    return ivec3 (v.x / u.x, v.y / u.y, v.z / u.z);\r
-}\r
-\r
-ivec4 __operator + (const ivec4 v, const ivec4 u) {\r
-    return ivec4 (v.x + u.x, v.y + u.y, v.z + u.z, v.w + u.w);\r
-}\r
-\r
-ivec4 __operator - (const ivec4 v, const ivec4 u) {\r
-    return ivec4 (v.x - u.x, v.y - u.y, v.z - u.z, v.w - u.w);\r
-}\r
-\r
-ivec4 __operator * (const ivec4 v, const ivec4 u) {\r
-    return ivec4 (v.x * u.x, v.y * u.y, v.z * u.z, v.w * u.w);\r
-}\r
-\r
-ivec4 __operator / (const ivec4 v, const ivec4 u) {\r
-    return ivec4 (v.x / u.x, v.y / u.y, v.z / u.z, v.w / u.w);\r
-}\r
-\r
-mat2 __operator + (const mat2 m, const mat2 n) {\r
-    return mat2 (m[0] + n[0], m[1] + n[1]);\r
-}\r
-\r
-mat2 __operator - (const mat2 m, const mat2 n) {\r
-    return mat2 (m[0] - n[0], m[1] - n[1]);\r
-}\r
-\r
-mat2 __operator / (const mat2 m, const mat2 n) {\r
-    return mat2 (m[0] / n[0], m[1] / n[1]);\r
-}\r
-\r
-mat3 __operator + (const mat3 m, const mat3 n) {\r
-    return mat3 (m[0] + n[0], m[1] + n[1], m[2] + n[2]);\r
-}\r
-\r
-mat3 __operator - (const mat3 m, const mat3 n) {\r
-    return mat3 (m[0] - n[0], m[1] - n[1], m[2] - n[2]);\r
-}\r
-\r
-mat3 __operator / (const mat3 m, const mat3 n) {\r
-    return mat3 (m[0] / n[0], m[1] / n[1], m[2] / n[2]);\r
-}\r
-\r
-mat4 __operator + (const mat4 m, const mat4 n) {\r
-    return mat4 (m[0] + n[0], m[1] + n[1], m[2] + n[2], m[3] + n[3]);\r
-}\r
-\r
-mat4 __operator - (const mat4 m, const mat4 n) {\r
-    return mat4 (m[0] - n[0], m[1] - n[1], m[2] - n[2], m[3] - n[3]);\r
-}\r
-\r
-mat4 __operator / (const mat4 m, const mat4 n) {\r
-    return mat4 (m[0] / n[0], m[1] / n[1], m[2] / n[2], m[3] / n[3]);\r
-}\r
-\r
-vec2 __operator + (const float a, const vec2 u) {\r
-    return vec2 (a + u.x, a + u.y);\r
-}\r
-\r
-vec2 __operator + (const vec2 v, const float b) {\r
-    return vec2 (v.x + b, v.y + b);\r
-}\r
-\r
-vec2 __operator - (const float a, const vec2 u) {\r
-    return vec2 (a - u.x, a - u.y);\r
-}\r
-\r
-vec2 __operator - (const vec2 v, const float b) {\r
-    return vec2 (v.x - b, v.y - b);\r
-}\r
-\r
-vec2 __operator * (const float a, const vec2 u) {\r
-    return vec2 (a * u.x, a * u.y);\r
-}\r
-\r
-vec2 __operator * (const vec2 v, const float b) {\r
-    return vec2 (v.x * b, v.y * b);\r
-}\r
-\r
-vec2 __operator / (const float a, const vec2 u) {\r
-    return vec2 (a / u.x, a / u.y);\r
-}\r
-\r
-vec2 __operator / (const vec2 v, const float b) {\r
-    return vec2 (v.x / b, v.y / b);\r
-}\r
-\r
-vec3 __operator + (const float a, const vec3 u) {\r
-    return vec3 (a + u.x, a + u.y, a + u.z);\r
-}\r
-\r
-vec3 __operator + (const vec3 v, const float b) {\r
-    return vec3 (v.x + b, v.y + b, v.z + b);\r
-}\r
-\r
-vec3 __operator - (const float a, const vec3 u) {\r
-    return vec3 (a - u.x, a - u.y, a - u.z);\r
-}\r
-\r
-vec3 __operator - (const vec3 v, const float b) {\r
-    return vec3 (v.x - b, v.y - b, v.z - b);\r
-}\r
-\r
-vec3 __operator * (const float a, const vec3 u) {\r
-    return vec3 (a * u.x, a * u.y, a * u.z);\r
-}\r
-\r
-vec3 __operator * (const vec3 v, const float b) {\r
-    return vec3 (v.x * b, v.y * b, v.z * b);\r
-}\r
-\r
-vec3 __operator / (const float a, const vec3 u) {\r
-    return vec3 (a / u.x, a / u.y, a / u.z);\r
-}\r
-\r
-vec3 __operator / (const vec3 v, const float b) {\r
-    return vec3 (v.x / b, v.y / b, v.z / b);\r
-}\r
-\r
-vec4 __operator + (const float a, const vec4 u) {\r
-    return vec4 (a + u.x, a + u.y, a + u.z, a + u.w);\r
-}\r
-\r
-vec4 __operator + (const vec4 v, const float b) {\r
-    return vec4 (v.x + b, v.y + b, v.z + b, v.w + b);\r
-}\r
-\r
-vec4 __operator - (const float a, const vec4 u) {\r
-    return vec4 (a - u.x, a - u.y, a - u.z, a - u.w);\r
-}\r
-\r
-vec4 __operator - (const vec4 v, const float b) {\r
-    return vec4 (v.x - b, v.y - b, v.z - b, v.w - b);\r
-}\r
-\r
-vec4 __operator * (const float a, const vec4 u) {\r
-    return vec4 (a * u.x, a * u.y, a * u.z, a * u.w);\r
-}\r
-\r
-vec4 __operator * (const vec4 v, const float b) {\r
-    return vec4 (v.x * b, v.y * b, v.z * b, v.w * b);\r
-}\r
-\r
-vec4 __operator / (const float a, const vec4 u) {\r
-    return vec4 (a / u.x, a / u.y, a / u.z, a / u.w);\r
-}\r
-\r
-vec4 __operator / (const vec4 v, const float b) {\r
-    return vec4 (v.x / b, v.y / b, v.z / b, v.w / b);\r
-}\r
-\r
-mat2 __operator + (const float a, const mat2 n) {\r
-    return mat2 (a + n[0], a + n[1]);\r
-}\r
-\r
-mat2 __operator + (const mat2 m, const float b) {\r
-    return mat2 (m[0] + b, m[1] + b);\r
-}\r
-\r
-mat2 __operator - (const float a, const mat2 n) {\r
-    return mat2 (a - n[0], a - n[1]);\r
-}\r
-\r
-mat2 __operator - (const mat2 m, const float b) {\r
-    return mat2 (m[0] - b, m[1] - b);\r
-}\r
-\r
-mat2 __operator * (const float a, const mat2 n) {\r
-    return mat2 (a * n[0], a * n[1]);\r
-}\r
-\r
-mat2 __operator * (const mat2 m, const float b) {\r
-    return mat2 (m[0] * b, m[1] * b);\r
-}\r
-\r
-mat2 __operator / (const float a, const mat2 n) {\r
-    return mat2 (a / n[0], a / n[1]);\r
-}\r
-\r
-mat2 __operator / (const mat2 m, const float b) {\r
-    return mat2 (m[0] / b, m[1] / b);\r
-}\r
-\r
-mat3 __operator + (const float a, const mat3 n) {\r
-    return mat3 (a + n[0], a + n[1], a + n[2]);\r
-}\r
-\r
-mat3 __operator + (const mat3 m, const float b) {\r
-    return mat3 (m[0] + b, m[1] + b, m[2] + b);\r
-}\r
-\r
-mat3 __operator - (const float a, const mat3 n) {\r
-    return mat3 (a - n[0], a - n[1], a - n[2]);\r
-}\r
-\r
-mat3 __operator - (const mat3 m, const float b) {\r
-    return mat3 (m[0] - b, m[1] - b, m[2] - b);\r
-}\r
-\r
-mat3 __operator * (const float a, const mat3 n) {\r
-    return mat3 (a * n[0], a * n[1], a * n[2]);\r
-}\r
-\r
-mat3 __operator * (const mat3 m, const float b) {\r
-    return mat3 (m[0] * b, m[1] * b, m[2] * b);\r
-}\r
-\r
-mat3 __operator / (const float a, const mat3 n) {\r
-    return mat3 (a / n[0], a / n[1], a / n[2]);\r
-}\r
-\r
-mat3 __operator / (const mat3 m, const float b) {\r
-    return mat3 (m[0] / b, m[1] / b, m[2] / b);\r
-}\r
-\r
-mat4 __operator + (const float a, const mat4 n) {\r
-    return mat4 (a + n[0], a + n[1], a + n[2], a + n[3]);\r
-}\r
-\r
-mat4 __operator + (const mat4 m, const float b) {\r
-    return mat4 (m[0] + b, m[1] + b, m[2] + b, m[3] + b);\r
-}\r
-\r
-mat4 __operator - (const float a, const mat4 n) {\r
-    return mat4 (a - n[0], a - n[1], a - n[2], a - n[3]);\r
-}\r
-\r
-mat4 __operator - (const mat4 m, const float b) {\r
-    return mat4 (m[0] - b, m[1] - b, m[2] - b, m[3] - b);\r
-}\r
-\r
-mat4 __operator * (const float a, const mat4 n) {\r
-    return mat4 (a * n[0], a * n[1], a * n[2], a * n[3]);\r
-}\r
-\r
-mat4 __operator * (const mat4 m, const float b) {\r
-    return mat4 (m[0] * b, m[1] * b, m[2] * b, m[3] * b);\r
-}\r
-\r
-mat4 __operator / (const float a, const mat4 n) {\r
-    return mat4 (a / n[0], a / n[1], a / n[2], a / n[3]);\r
-}\r
-\r
-mat4 __operator / (const mat4 m, const float b) {\r
-    return mat4 (m[0] / b, m[1] / b, m[2] / b, m[3] / b);\r
-}\r
-\r
-ivec2 __operator + (const int a, const ivec2 u) {\r
-    return ivec2 (a) + u;\r
-}\r
-\r
-ivec2 __operator + (const ivec2 v, const int b) {\r
-    return v + ivec2 (b);\r
-}\r
-\r
-ivec2 __operator - (const int a, const ivec2 u) {\r
-    return ivec2 (a) - u;\r
-}\r
-\r
-ivec2 __operator - (const ivec2 v, const int b) {\r
-    return v - ivec2 (b);\r
-}\r
-\r
-ivec2 __operator * (const int a, const ivec2 u) {\r
-    return ivec2 (a) * u;\r
-}\r
-\r
-ivec2 __operator * (const ivec2 v, const int b) {\r
-    return v * ivec2 (b);\r
-}\r
-\r
-ivec2 __operator / (const int a, const ivec2 u) {\r
-    return ivec2 (a) / u;\r
-}\r
-\r
-ivec2 __operator / (const ivec2 v, const int b) {\r
-    return v / ivec2 (b);\r
-}\r
-\r
-ivec3 __operator + (const int a, const ivec3 u) {\r
-    return ivec3 (a) + u;\r
-}\r
-\r
-ivec3 __operator + (const ivec3 v, const int b) {\r
-    return v + ivec3 (b);\r
-}\r
-\r
-ivec3 __operator - (const int a, const ivec3 u) {\r
-    return ivec3 (a) - u;\r
-}\r
-\r
-ivec3 __operator - (const ivec3 v, const int b) {\r
-    return v - ivec3 (b);\r
-}\r
-\r
-ivec3 __operator * (const int a, const ivec3 u) {\r
-    return ivec3 (a) * u;\r
-}\r
-\r
-ivec3 __operator * (const ivec3 v, const int b) {\r
-    return v * ivec3 (b);\r
-}\r
-\r
-ivec3 __operator / (const int a, const ivec3 u) {\r
-    return ivec3 (a) / u;\r
-}\r
-\r
-ivec3 __operator / (const ivec3 v, const int b) {\r
-    return v / ivec3 (b);\r
-}\r
-\r
-ivec4 __operator + (const int a, const ivec4 u) {\r
-    return ivec4 (a) + u;\r
-}\r
-\r
-ivec4 __operator + (const ivec4 v, const int b) {\r
-    return v + ivec4 (b);\r
-}\r
-\r
-ivec4 __operator - (const int a, const ivec4 u) {\r
-    return ivec4 (a) - u;\r
-}\r
-\r
-ivec4 __operator - (const ivec4 v, const int b) {\r
-    return v - ivec4 (b);\r
-}\r
-\r
-ivec4 __operator * (const int a, const ivec4 u) {\r
-    return ivec4 (a) * u;\r
-}\r
-\r
-ivec4 __operator * (const ivec4 v, const int b) {\r
-    return v * ivec4 (b);\r
-}\r
-\r
-ivec4 __operator / (const int a, const ivec4 u) {\r
-    return ivec4 (a) / u;\r
-}\r
-\r
-ivec4 __operator / (const ivec4 v, const int b) {\r
-    return v / ivec4 (b);\r
-}\r
-\r
-vec2 __operator - (const vec2 v) {\r
-    return vec2 (-v.x, -v.y);\r
-}\r
-\r
-vec3 __operator - (const vec3 v) {\r
-    return vec3 (-v.x, -v.y, -v.z);\r
-}\r
-\r
-vec4 __operator - (const vec4 v) {\r
-    return vec4 (-v.x, -v.y, -v.z, -v.w);\r
-}\r
-\r
-ivec2 __operator - (const ivec2 v) {\r
-    return ivec2 (-v.x, -v.y);\r
-}\r
-\r
-ivec3 __operator - (const ivec3 v) {\r
-    return ivec3 (-v.x, -v.y, -v.z);\r
-}\r
-\r
-ivec4 __operator - (const ivec4 v) {\r
-    return ivec4 (-v.x, -v.y, -v.z, -v.w);\r
-}\r
-\r
-mat2 __operator - (const mat2 m) {\r
-    return mat2 (-m[0], -m[1]);\r
-}\r
-\r
-mat3 __operator - (const mat3 m) {\r
-    return mat3 (-m[0], -m[1], -m[2]);\r
-}\r
-\r
-mat4 __operator - (const mat4 m) {\r
-    return mat4 (-m[0], -m[1], -m[2], -m[3]);\r
-}\r
-\r
-void __operator -- (inout float a) {\r
-    a -= 1.0;\r
-}\r
-\r
-void __operator -- (inout int a) {\r
-    a -= 1;\r
-}\r
-\r
-void __operator -- (inout vec2 v) {\r
-    --v.x;\r
-    --v.y;\r
-}\r
-\r
-void __operator -- (inout vec3 v) {\r
-    --v.x;\r
-    --v.y;\r
-    --v.z;\r
-}\r
-\r
-void __operator -- (inout vec4 v) {\r
-    --v.x;\r
-    --v.y;\r
-    --v.z;\r
-    --v.w;\r
-}\r
-\r
-void __operator -- (inout ivec2 v) {\r
-    --v.x;\r
-    --v.y;\r
-}\r
-\r
-void __operator -- (inout ivec3 v) {\r
-    --v.x;\r
-    --v.y;\r
-    --v.z;\r
-}\r
-\r
-void __operator -- (inout ivec4 v) {\r
-    --v.x;\r
-    --v.y;\r
-    --v.z;\r
-    --v.w;\r
-}\r
-\r
-void __operator -- (inout mat2 m) {\r
-    --m[0];\r
-    --m[1];\r
-}\r
-\r
-void __operator -- (inout mat3 m) {\r
-    --m[0];\r
-    --m[1];\r
-    --m[2];\r
-}\r
-\r
-void __operator -- (inout mat4 m) {\r
-    --m[0];\r
-    --m[1];\r
-    --m[2];\r
-    --m[3];\r
-}\r
-\r
-void __operator ++ (inout float a) {\r
-    a += 1.0;\r
-}\r
-\r
-void __operator ++ (inout int a) {\r
-    a += 1;\r
-}\r
-\r
-void __operator ++ (inout vec2 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-}\r
-\r
-void __operator ++ (inout vec3 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-    ++v.z;\r
-}\r
-\r
-void __operator ++ (inout vec4 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-    ++v.z;\r
-    ++v.w;\r
-}\r
-\r
-void __operator ++ (inout ivec2 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-}\r
-\r
-void __operator ++ (inout ivec3 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-    ++v.z;\r
-}\r
-\r
-void __operator ++ (inout ivec4 v) {\r
-    ++v.x;\r
-    ++v.y;\r
-    ++v.z;\r
-    ++v.w;\r
-}\r
-\r
-void __operator ++ (inout mat2 m) {\r
-    ++m[0];\r
-    ++m[1];\r
-}\r
-\r
-void __operator ++ (inout mat3 m) {\r
-    ++m[0];\r
-    ++m[1];\r
-    ++m[2];\r
-}\r
-\r
-void __operator ++ (inout mat4 m) {\r
-    ++m[0];\r
-    ++m[1];\r
-    ++m[2];\r
-    ++m[3];\r
-}\r
-\r
-//\r
-// NOTE: postfix increment and decrement operators take additional dummy int parameter to\r
-//       distinguish their prototypes from prefix ones.\r
-//\r
-\r
-float __operator -- (inout float a, const int) {\r
-    float b;\r
-    b = a;\r
-    --a;\r
-    return b;\r
-}\r
-\r
-int __operator -- (inout int a, const int) {\r
-    int b;\r
-    b = a;\r
-    --a;\r
-    return b;\r
-}\r
-\r
-vec2 __operator -- (inout vec2 v, const int) {\r
-    return vec2 (v.x--, v.y--);\r
-}\r
-\r
-vec3 __operator -- (inout vec3 v, const int) {\r
-    return vec3 (v.x--, v.y--, v.z--);\r
-}\r
-\r
-vec4 __operator -- (inout vec4 v, const int) {\r
-    return vec4 (v.x--, v.y--, v.z--, v.w--);\r
-}\r
-\r
-ivec2 __operator -- (inout ivec2 v, const int) {\r
-    return ivec2 (v.x--, v.y--);\r
-}\r
-\r
-ivec3 __operator -- (inout ivec3 v, const int) {\r
-    return ivec3 (v.x--, v.y--, v.z--);\r
-}\r
-\r
-ivec4 __operator -- (inout ivec4 v, const int) {\r
-    return ivec4 (v.x--, v.y--, v.z--, v.w--);\r
-}\r
-\r
-mat2 __operator -- (inout mat2 m, const int) {\r
-    return mat2 (m[0]--, m[1]--);\r
-}\r
-\r
-mat3 __operator -- (inout mat3 m, const int) {\r
-    return mat3 (m[0]--, m[1]--, m[2]--);\r
-}\r
-\r
-mat4 __operator -- (inout mat4 m, const int) {\r
-    return mat4 (m[0]--, m[1]--, m[2]--, m[3]--);\r
-}\r
-\r
-float __operator ++ (inout float a, const int) {\r
-    float b;\r
-    b = a;\r
-    ++a;\r
-    return b;\r
-}\r
-\r
-int __operator ++ (inout int a, const int) {\r
-    int b;\r
-    b = a;\r
-    ++a;\r
-    return b;\r
-}\r
-\r
-vec2 __operator ++ (inout vec2 v, const int) {\r
-    return vec2 (v.x++, v.y++);\r
-}\r
-\r
-vec3 __operator ++ (inout vec3 v, const int) {\r
-    return vec3 (v.x++, v.y++, v.z++);\r
-}\r
-\r
-vec4 __operator ++ (inout vec4 v, const int) {\r
-    return vec4 (v.x++, v.y++, v.z++, v.w++);\r
-}\r
-\r
-ivec2 __operator ++ (inout ivec2 v, const int) {\r
-    return ivec2 (v.x++, v.y++);\r
-}\r
-\r
-ivec3 __operator ++ (inout ivec3 v, const int) {\r
-    return ivec3 (v.x++, v.y++, v.z++);\r
-}\r
-\r
-ivec4 __operator ++ (inout ivec4 v, const int) {\r
-    return ivec4 (v.x++, v.y++, v.z++, v.w++);\r
-}\r
-\r
-mat2 __operator ++ (inout mat2 m, const int) {\r
-    return mat2 (m[0]++, m[1]++);\r
-}\r
-\r
-mat3 __operator ++ (inout mat3 m, const int) {\r
-    return mat3 (m[0]++, m[1]++, m[2]++);\r
-}\r
-\r
-mat4 __operator ++ (inout mat4 m, const int) {\r
-    return mat4 (m[0]++, m[1]++, m[2]++, m[3]++);\r
-}\r
-\r
-bool __operator < (const float a, const float b) {\r
-    bool c;\r
-    __asm float_less c, a, b;\r
-    return c;\r
-}\r
-\r
-bool __operator < (const int a, const int b) {\r
-    return float (a) < float (b);\r
-}\r
-\r
-bool __operator > (const float a, const float b) {\r
-    bool c;\r
-    __asm float_less c, b, a;\r
-    return c;\r
-}\r
-\r
-bool __operator > (const int a, const int b) {\r
-    return float (a) > float (b);\r
-}\r
-\r
-bool __operator >= (const float a, const float b) {\r
-    bool g, e;\r
-    __asm float_less  g, b, a;\r
-    __asm float_equal e, a, b;\r
-    return g || e;\r
-}\r
-\r
-bool __operator >= (const int a, const int b) {\r
-    return float (a) >= float (b);\r
-}\r
-\r
-bool __operator <= (const float a, const float b) {\r
-    bool g, e;\r
-    __asm float_less  g, a, b;\r
-    __asm float_equal e, a, b;\r
-    return g || e;\r
-}\r
-\r
-bool __operator <= (const int a, const int b) {\r
-    return float (a) <= float (b);\r
-}\r
-\r
-bool __operator ^^ (const bool a, const bool b) {\r
-    return a != b;\r
-}\r
-\r
-//\r
-// These operators are handled internally by the compiler:\r
-//\r
-// bool __operator && (bool a, bool b) {\r
-//     return a ? b : false;\r
-// }\r
-// bool __operator || (bool a, bool b) {\r
-//     return a ? true : b;\r
-// }\r
-//\r
-\r
-bool __operator ! (const bool a) {\r
-    return a == false;\r
-}\r
-\r
-//\r
-// mesa-specific extension functions.\r
-//\r
-\r
-void print (const float f) {\r
-    __asm float_print f;\r
-}\r
-\r
-void print (const int i) {\r
-    __asm int_print i;\r
-}\r
-\r
-void print (const bool b) {\r
-    __asm bool_print b;\r
-}\r
-\r
-void print (const vec2 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-}\r
-\r
-void print (const vec3 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-}\r
-\r
-void print (const vec4 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-    print (v.w);\r
-}\r
-\r
-void print (const ivec2 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-}\r
-\r
-void print (const ivec3 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-}\r
-\r
-void print (const ivec4 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-    print (v.w);\r
-}\r
-\r
-void print (const bvec2 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-}\r
-\r
-void print (const bvec3 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-}\r
-\r
-void print (const bvec4 v) {\r
-    print (v.x);\r
-    print (v.y);\r
-    print (v.z);\r
-    print (v.w);\r
-}\r
-\r
-void print (const mat2 m) {\r
-    print (m[0]);\r
-    print (m[1]);\r
-}\r
-\r
-void print (const mat3 m) {\r
-    print (m[0]);\r
-    print (m[1]);\r
-    print (m[2]);\r
-}\r
-\r
-void print (const mat4 m) {\r
-    print (m[0]);\r
-    print (m[1]);\r
-    print (m[2]);\r
-    print (m[3]);\r
-}\r
-\r
-void print (const sampler1D e) {\r
-    __asm int_print e;\r
-}\r
-\r
-void print (const sampler2D e) {\r
-    __asm int_print e;\r
-}\r
-\r
-void print (const sampler3D e) {\r
-    __asm int_print e;\r
-}\r
-\r
-void print (const samplerCube e) {\r
-    __asm int_print e;\r
-}\r
-\r
-void print (const sampler1DShadow e) {\r
-    __asm int_print e;\r
-}\r
-\r
-void print (const sampler2DShadow e) {\r
-    __asm int_print e;\r
-}\r
-\r
+/*
+ * Mesa 3-D graphics library
+ * Version:  6.5
+ *
+ * Copyright (C) 2006  Brian Paul   All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included
+ * in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+//
+// This file defines nearly all constructors and operators for built-in data
+// types, using extended language syntax. In general, compiler treats
+// constructors and operators as ordinary functions with some exceptions.
+// For example, the language does not allow functions to be called in
+// constant expressions - here the exception is made to allow it.
+//
+// Each implementation provides its own version of this file. Each
+// implementation can define the required set of operators and constructors
+// in its own fashion.
+//
+// The extended language syntax is only present when compiling this file.
+// It is implicitly included at the very beginning of the compiled shader,
+// so no built-in functions can be used.
+//
+// To communicate with the implementation, a special extended "__asm" keyword
+// is used, followed by an instruction name (any valid identifier), a
+// destination variable identifier and a list of zero or more source
+// variable identifiers.
+//
+// A variable identifier is a variable name declared earlier in the code
+// (as a function parameter, local or global variable).
+//
+// An instruction name designates an instruction that must be exported
+// by the implementation.  Each instruction receives data from source
+// variable identifiers and returns data in the destination variable
+// identifier.
+//
+// It is up to the implementation how to define a particular operator
+// or constructor. If it is expected to being used rarely, it can be
+// defined in terms of other operators and constructors,
+// for example:
+//
+// ivec2 __operator + (const ivec2 x, const ivec2 y) {
+//    return ivec2 (x[0] + y[0], x[1] + y[1]);
+// }
+//
+// If a particular operator or constructor is expected to be used very
+// often or is an atomic operation (that is, an operation that cannot be
+// expressed in terms of other operations or would create a dependency
+// cycle) it must be defined using one or more __asm constructs.
+//
+// Each implementation must define constructors for all scalar types
+// (bool, float, int).  There are 9 scalar-to-scalar constructors
+// (including identity constructors). However, since the language
+// introduces special constructors (like matrix constructor with a single
+// scalar value), implementations must also implement these cases.
+// The compiler provides the following algorithm when resolving a constructor:
+// - try to find a constructor with a prototype matching ours,
+// - if no constructor is found and this is a scalar-to-scalar constructor,
+//   raise an error,
+// - if a constructor is found, execute it and return,
+// - count the size of the constructor parameter list - if it is less than
+//   the size of our constructor's type, raise an error,
+// - for each parameter in the list do a recursive constructor matching for
+//   appropriate scalar fields in the constructed variable,
+//
+// Each implementation must also define a set of operators that deal with
+// built-in data types.
+// There are four kinds of operators:
+// 1) Operators that are implemented only by the compiler: "()" (function
+//    call), "," (sequence) and "?:" (selection).
+// 2) Operators that are implemented by the compiler by expressing it in
+//    terms of other operators:
+//    - "." (field selection) - translated to subscript access,
+//    - "&&" (logical and) - translated to "<left_expr> ? <right_expr> :
+//      false",
+//    - "||" (logical or) - translated to "<left_expr> ? true : <right_expr>",
+// 3) Operators that can be defined by the implementation and if the required
+//    prototype is not found, standard behaviour is used:
+//    - "==", "!=", "=" (equality, assignment) - compare or assign
+//      matching fields one-by-one;
+//      note that at least operators for scalar data types must be defined
+//      by the implementation to get it work,
+// 4) All other operators not mentioned above. If no required prototype is
+//    found, an error is raised. An implementation must follow the language
+//    specification to provide all valid operator prototypes.
+//
+
+
+
+//// Basic, scalar constructors/casts
+
+int __constructor(const float f)
+{
+   __asm vec4_to_ivec4 __retVal, f;
+}
+
+int __constructor(const bool b)
+{
+   __retVal = b;
+}
+
+int __constructor(const int i)
+{
+   __retVal = i;
+}
+
+bool __constructor(const int i)
+{
+   __asm vec4_sne __retVal, i, 0.0;
+}
+
+bool __constructor(const float f)
+{
+   __asm vec4_sne __retVal, f, 0.0;
+}
+
+bool __constructor(const bool b)
+{
+   __retVal = b;
+}
+
+float __constructor(const int i)
+{
+    __asm ivec4_to_vec4 __retVal, i;
+}
+
+float __constructor(const bool b)
+{
+    __asm ivec4_to_vec4 __retVal, b;
+}
+
+float __constructor(const float f)
+{
+   __retVal = f;
+}
+
+
+//// vec2 constructors
+
+vec2 __constructor(const float x, const float y)
+{
+   __retVal.x = x;
+   __retVal.y = y;
+}
+
+vec2 __constructor(const float f)
+{
+   __asm vec4_move __retVal.xy, f;
+}
+
+vec2 __constructor(const int i)
+{
+   __asm ivec4_to_vec4 __retVal.xy, i;
+}
+
+vec2 __constructor(const bool b)
+{
+   __asm ivec4_to_vec4 __retVal.xy, b;
+}
+
+vec2 __constructor(const bvec2 b)
+{
+//   __retVal = b;
+   __asm ivec4_to_vec4 __retVal.xy, b;
+}
+
+vec2 __constructor(const vec3 v)
+{
+   __asm vec4_move __retVal.xy, v.xy;
+}
+
+vec2 __constructor(const vec4 v)
+{
+   __asm vec4_move __retVal.xy, v.xy;
+}
+
+
+//// vec3 constructors
+
+vec3 __constructor(const float x, const float y, const float z)
+{
+   __retVal.x = x;
+   __retVal.y = y;
+   __retVal.z = z;
+}
+
+vec3 __constructor(const float f)
+{
+   // Note: this could be "__retVal.xyz = f" but that's an illegal assignment
+   __asm vec4_move __retVal.xyz, f;
+}
+
+vec3 __constructor(const int i)
+{
+   __asm ivec4_to_vec4 __retVal.xyz, i;
+}
+
+vec3 __constructor(const bool b)
+{
+   __asm ivec4_to_vec4 __retVal.xyz, b;
+}
+
+vec3 __constructor(const bvec3 b)
+{
+   __asm ivec4_to_vec4 __retVal.xyz, b;
+}
+
+vec3 __constructor(const vec4 v)
+{
+   __asm vec4_move __retVal.xyz, v;
+}
+
+
+//// vec4 constructors
+
+vec4 __constructor(const float x, const float y, const float z, const float w)
+{
+   __retVal.x = x;
+   __retVal.y = y;
+   __retVal.z = z;
+   __retVal.w = w;
+}
+
+vec4 __constructor(const float f)
+{
+   // Note: this could be "__retVal = f" but that's an illegal assignment
+   __asm vec4_move __retVal, f;
+}
+
+vec4 __constructor(const int i)
+{
+   __asm ivec4_to_vec4 __retVal, i;
+}
+
+vec4 __constructor(const bool b)
+{
+   __asm ivec4_to_vec4 __retVal, b;
+}
+
+vec4 __constructor(const bvec4 b)
+{
+   __asm ivec4_to_vec4 __retVal, b;
+}
+
+vec4 __constructor(const ivec4 i)
+{
+   __asm ivec4_to_vec4 __retVal, i;
+}
+
+vec4 __constructor(const vec3 v3, const float f)
+{
+   // XXX this constructor shouldn't be needed anymore
+   __retVal.xyz = v3;
+   __retVal.w = f;
+}
+
+vec4 __constructor(const vec2 v2, const float f1, const float f2)
+{
+   // XXX this constructor shouldn't be needed anymore
+   __retVal.xy = v2;
+   __retVal.z = f1;
+   __retVal.w = f2;
+}
+
+
+//// ivec2 constructors
+
+ivec2 __constructor(const int i, const int j)
+{
+   __retVal.x = i;
+   __retVal.y = j;
+}
+
+ivec2 __constructor(const int i)
+{
+   __asm vec4_move __retVal.xy, i;
+}
+
+ivec2 __constructor(const float f)
+{
+   __asm vec4_to_ivec4 __retVal.xy, f;
+}
+
+ivec2 __constructor(const bool b)
+{
+   __asm vec4_to_ivec4 __retVal.xy, b;
+}
+
+
+//// ivec3 constructors
+
+ivec3 __constructor(const int i, const int j, const int k)
+{
+   __retVal.x = i;
+   __retVal.y = j;
+   __retVal.z = k;
+}
+
+ivec3 __constructor(const int i)
+{
+   __asm vec4_move __retVal.xyz, i;
+}
+
+ivec3 __constructor(const float f)
+{
+   __asm vec4_to_ivec4 __retVal.xyz, f;
+}
+
+ivec3 __constructor(const bool b)
+{
+   __asm vec4_move __retVal.xyz, b;
+}
+
+
+//// ivec4 constructors
+
+ivec4 __constructor(const int x, const int y, const int z, const int w)
+{
+   __retVal.x = x;
+   __retVal.y = y;
+   __retVal.z = z;
+   __retVal.w = w;
+}
+
+ivec4 __constructor(const int i)
+{
+   __asm vec4_move __retVal, i;
+}
+
+ivec4 __constructor(const float f)
+{
+   __asm vec4_to_ivec4 __retVal, f;
+}
+
+ivec4 __constructor(const bool b)
+{
+   __asm vec4_to_ivec4 __retVal, b;
+}
+
+
+//// bvec2 constructors
+
+bvec2 __constructor(const bool b1, const bool b2)
+{
+   __retVal.x = b1;
+   __retVal.y = b2;
+}
+
+bvec2 __constructor(const int i1, const int i2)
+{
+   __asm vec4_sne __retVal.x, i1, 0.0;
+   __asm vec4_sne __retVal.y, i2, 0.0;
+}
+
+
+bvec2 __constructor(const bool b)
+{
+   __asm vec4_move __retVal.xy, b;
+}
+
+bvec2 __constructor(const float f)
+{
+   __asm vec4_sne __retVal.xy, f, 0.0;
+}
+
+bvec2 __constructor(const int i)
+{
+   __asm vec4_sne __retVal.xy, i, 0.0;
+}
+
+bvec2 __constructor(const vec2 v)
+{
+   __asm vec4_sne __retVal.xy, v, 0.0;
+}
+
+bvec2 __constructor(const ivec2 v)
+{
+   __asm vec4_sne __retVal.xy, v, 0.0;
+}
+
+
+
+//// bvec3 constructors
+
+bvec3 __constructor(const bool b1, const bool b2, const bool b3)
+{
+   __retVal.x = b1;
+   __retVal.y = b2;
+   __retVal.z = b3;
+}
+
+bvec3 __constructor(const float f1, const float f2, const float f3)
+{
+   __asm vec4_sne __retVal.x, f1, 0.0;
+   __asm vec4_sne __retVal.y, f2, 0.0;
+   __asm vec4_sne __retVal.z, f3, 0.0;
+}
+
+bvec3 __constructor(const bool b)
+{
+   __asm vec4_move __retVal.xyz, b;
+}
+
+bvec3 __constructor(const float f)
+{
+   __asm vec4_sne __retVal.xyz, f, 0.0;
+}
+
+bvec3 __constructor(const int i)
+{
+   __asm vec4_sne __retVal.xyz, i, 0.0;
+}
+
+bvec3 __constructor(const vec3 v)
+{
+   __asm vec4_sne __retVal.xyz, v, 0.0;
+}
+
+bvec3 __constructor(const ivec3 v)
+{
+   __asm vec4_sne __retVal.xyz, v, 0.0;
+}
+
+
+
+//// bvec4 constructors
+
+bvec4 __constructor(const bool b1, const bool b2, const bool b3, const bool b4)
+{
+   __retVal.x = b1;
+   __retVal.y = b2;
+   __retVal.z = b3;
+   __retVal.w = b4;
+}
+
+bvec4 __constructor(const float f1, const float f2, const float f3, const float f4)
+{
+   const float zero = 0.0;
+   __asm vec4_sne __retVal.x, f1, zero;   
+   __asm vec4_sne __retVal.y, f2, zero;   
+   __asm vec4_sne __retVal.z, f3, zero;   
+   __asm vec4_sne __retVal.w, f4, zero;   
+}
+
+bvec4 __constructor(const bool b)
+{
+   __asm vec4_move __retVal.xyzw, b;
+}
+
+bvec4 __constructor(const float f)
+{
+   __asm vec4_sne __retVal.xyzw, f, 0.0;
+}
+
+bvec4 __constructor(const int i)
+{
+   __asm vec4_sne __retVal.xyzw, i, 0.0;
+}
+
+bvec4 __constructor(const vec4 v)
+{
+   __asm vec4_sne __retVal.xyzw, v, 0.0;
+}
+
+bvec4 __constructor(const ivec4 v)
+{
+   __asm vec4_sne __retVal.xyzw, v, 0.0;
+}
+
+
+
+//// mat2 constructors
+
+mat2 __constructor(const float m00, const float m10,
+                   const float m01, const float m11)
+{
+   __retVal[0].x = m00;
+   __retVal[0].y = m10;
+   __retVal[1].x = m01;
+   __retVal[1].y = m11;
+}
+
+mat2 __constructor(const float f)
+{
+   __retVal[0].x = f;
+   __retVal[0].y = 0.0;
+   __retVal[1].x = 0.0;
+   __retVal[1].y = f;
+}
+
+mat2 __constructor(const int i)
+{
+   return mat2(float(i));
+}
+
+mat2 __constructor(const bool b)
+{
+   return mat2(float(b));
+}
+
+mat2 __constructor(const vec2 c0, const vec2 c1)
+{
+   __retVal[0] = c0;
+   __retVal[1] = c1;
+}
+
+
+//// mat3 constructors
+
+mat3 __constructor(const float m00, const float m10, const float m20,
+                   const float m01, const float m11, const float m21,
+                   const float m02, const float m12, const float m22)
+{
+   __retVal[0].x = m00;
+   __retVal[0].y = m10;
+   __retVal[0].z = m20;
+   __retVal[1].x = m01;
+   __retVal[1].y = m11;
+   __retVal[1].z = m21;
+   __retVal[2].x = m02;
+   __retVal[2].y = m12;
+   __retVal[2].z = m22;
+}
+
+mat3 __constructor(const float f)
+{
+   vec2 v = vec2(f, 0.0);
+   __retVal[0] = v.xyy;
+   __retVal[1] = v.yxy;
+   __retVal[2] = v.yyx;
+}
+
+mat3 __constructor(const int i)
+{
+   return mat3(float(i));
+}
+
+mat3 __constructor(const bool b)
+{
+   return mat3(float(b));
+}
+
+mat3 __constructor(const vec3 c0, const vec3 c1, const vec3 c2)
+{
+   __retVal[0] = c0;
+   __retVal[1] = c1;
+   __retVal[2] = c2;
+}
+
+
+//// mat4 constructors
+
+mat4 __constructor(const float m00, const float m10, const float m20, const float m30,
+                   const float m01, const float m11, const float m21, const float m31,
+                   const float m02, const float m12, const float m22, const float m32,
+                   const float m03, const float m13, const float m23, const float m33)
+{
+   __retVal[0].x = m00;
+   __retVal[0].y = m10;
+   __retVal[0].z = m20;
+   __retVal[0].w = m30;
+   __retVal[1].x = m01;
+   __retVal[1].y = m11;
+   __retVal[1].z = m21;
+   __retVal[1].w = m31;
+   __retVal[2].x = m02;
+   __retVal[2].y = m12;
+   __retVal[2].z = m22;
+   __retVal[2].w = m32;
+   __retVal[3].x = m03;
+   __retVal[3].y = m13;
+   __retVal[3].z = m23;
+   __retVal[3].w = m33;
+}
+
+
+mat4 __constructor(const float f)
+{
+   vec2 v = vec2(f, 0.0);
+   __retVal[0] = v.xyyy;
+   __retVal[1] = v.yxyy;
+   __retVal[2] = v.yyxy;
+   __retVal[3] = v.yyyx;
+}
+
+mat4 __constructor(const int i)
+{
+   return mat4(float(i));
+}
+
+mat4 __constructor(const bool b)
+{
+   return mat4(float(b));
+}
+
+mat4 __constructor(const vec4 c0, const vec4 c1, const vec4 c2, const vec4 c3)
+{
+   __retVal[0] = c0;
+   __retVal[1] = c1;
+   __retVal[2] = c2;
+   __retVal[3] = c3;
+}
+
+
+
+//// Basic int operators
+
+int __operator + (const int a, const int b)
+{
+   __asm vec4_add __retVal, a, b;
+}
+
+int __operator - (const int a, const int b)
+{
+   __asm vec4_subtract __retVal, a, b;
+}
+
+int __operator * (const int a, const int b)
+{
+   __asm vec4_multiply __retVal, a, b;
+}
+
+int __operator / (const int a, const int b)
+{
+   float bInv, x;
+   __asm float_rcp bInv, b;
+   __asm vec4_multiply x, a, bInv;
+   __asm vec4_to_ivec4 __retVal, x;
+}
+
+
+//// Basic ivec2 operators
+
+ivec2 __operator + (const ivec2 a, const ivec2 b)
+{
+   __asm vec4_add __retVal, a, b;
+}
+
+ivec2 __operator - (const ivec2 a, const ivec2 b)
+{
+   __asm vec4_subtract __retVal, a, b;
+}
+
+ivec2 __operator * (const ivec2 a, const ivec2 b)
+{
+   __asm vec4_multiply __retVal, a, b;
+}
+
+ivec2 __operator / (const ivec2 a, const ivec2 b)
+{
+   vec2 bInv, x;
+   __asm float_rcp bInv.x, b.x;
+   __asm float_rcp bInv.y, b.y;
+   __asm vec4_multiply x, a, bInv;
+   __asm vec4_to_ivec4 __retVal, x;
+}
+
+
+//// Basic ivec3 operators
+
+ivec3 __operator + (const ivec3 a, const ivec3 b)
+{
+   __asm vec4_add __retVal, a, b;
+}
+
+ivec3 __operator - (const ivec3 a, const ivec3 b)
+{
+   __asm vec4_subtract __retVal, a, b;
+}
+
+ivec3 __operator * (const ivec3 a, const ivec3 b)
+{
+   __asm vec4_multiply __retVal, a, b;
+}
+
+ivec3 __operator / (const ivec3 a, const ivec3 b)
+{
+   vec3 bInv, x;
+   __asm float_rcp bInv.x, b.x;
+   __asm float_rcp bInv.y, b.y;
+   __asm float_rcp bInv.z, b.z;
+   __asm vec4_multiply x, a, bInv;
+   __asm vec4_to_ivec4 __retVal, x;
+}
+
+
+//// Basic ivec4 operators
+
+ivec4 __operator + (const ivec4 a, const ivec4 b)
+{
+   __asm vec4_add __retVal, a, b;
+}
+
+ivec4 __operator - (const ivec4 a, const ivec4 b)
+{
+   __asm vec4_subtract __retVal, a, b;
+}
+
+ivec4 __operator * (const ivec4 a, const ivec4 b)
+{
+   __asm vec4_multiply __retVal, a, b;
+}
+
+ivec4 __operator / (const ivec4 a, const ivec4 b)
+{
+   vec4 bInv, x;
+   __asm float_rcp bInv.x, b.x;
+   __asm float_rcp bInv.y, b.y;
+   __asm float_rcp bInv.z, b.z;
+   __asm float_rcp bInv.w, b.w;
+   __asm vec4_multiply x, a, bInv;
+   __asm vec4_to_ivec4 __retVal, x;
+}
+
+
+//// Basic float operators
+
+float __operator + (const float a, const float b)
+{
+   __asm vec4_add __retVal, a, b;
+}
+
+float __operator - (const float a, const float b)
+{
+   __asm vec4_subtract __retVal, a, b;
+}
+
+float __operator * (const float a, const float b)
+{
+    __asm vec4_multiply __retVal, a, b;
+}
+
+float __operator / (const float a, const float b)
+{
+   float bInv;
+   __asm float_rcp bInv.x, b;
+   __asm vec4_multiply __retVal, a, bInv;
+}
+
+
+//// Basic vec2 operators
+
+vec2 __operator + (const vec2 v, const vec2 u)
+{
+   __asm vec4_add __retVal.xy, v, u;
+}
+
+vec2 __operator - (const vec2 v, const vec2 u)
+{
+    __asm vec4_subtract __retVal.xy, v, u;
+}
+
+vec2 __operator * (const vec2 v, const vec2 u)
+{
+    __asm vec4_multiply __retVal.xy, v, u;
+}
+
+vec2 __operator / (const vec2 v, const vec2 u)
+{
+   vec2 w; // = 1 / u
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm vec4_multiply __retVal.xy, v, w;
+}
+
+
+//// Basic vec3 operators
+
+vec3 __operator + (const vec3 v, const vec3 u)
+{
+   __asm vec4_add __retVal.xyz, v, u;
+}
+
+vec3 __operator - (const vec3 v, const vec3 u)
+{
+    __asm vec4_subtract __retVal.xyz, v, u;
+}
+
+vec3 __operator * (const vec3 v, const vec3 u)
+{
+    __asm vec4_multiply __retVal.xyz, v, u;
+}
+
+vec3 __operator / (const vec3 v, const vec3 u)
+{
+   vec3 w; // = 1 / u
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm float_rcp w.z, u.z;
+   __asm vec4_multiply __retVal.xyz, v, w;
+}
+
+
+//// Basic vec4 operators
+
+vec4 __operator + (const vec4 v, const vec4 u)
+{
+   __asm vec4_add __retVal, v, u;
+}
+
+vec4 __operator - (const vec4 v, const vec4 u)
+{
+    __asm vec4_subtract __retVal, v, u;
+}
+
+vec4 __operator * (const vec4 v, const vec4 u)
+{
+    __asm vec4_multiply __retVal, v, u;
+}
+
+vec4 __operator / (const vec4 v, const vec4 u)
+{
+   vec4 w; // = 1 / u
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm float_rcp w.z, u.z;
+   __asm float_rcp w.w, u.w;
+   __asm vec4_multiply __retVal, v, w;
+}
+
+
+
+
+//// Basic vec2/float operators
+
+vec2 __operator + (const float a, const vec2 u)
+{
+   __asm vec4_add __retVal.xy, a, u.xy;
+}
+
+vec2 __operator + (const vec2 v, const float b)
+{
+   __asm vec4_add __retVal.xy, v.xy, b;
+}
+
+vec2 __operator - (const float a, const vec2 u)
+{
+   __asm vec4_subtract __retVal.xy, a, u.xy;
+}
+
+vec2 __operator - (const vec2 v, const float b)
+{
+   __asm vec4_subtract __retVal.xy, v.xy, b;
+}
+
+vec2 __operator * (const float a, const vec2 u)
+{
+   __asm vec4_multiply __retVal.xy, a, u.xy;
+}
+
+vec2 __operator * (const vec2 v, const float b)
+{
+   __asm vec4_multiply __retVal.xy, v.xy, b;
+}
+
+vec2 __operator / (const float a, const vec2 u)
+{
+   vec2 invU;
+   __asm float_rcp invU.x, u.x;
+   __asm float_rcp invU.y, u.y;
+   __asm vec4_multiply __retVal.xy, a, invU.xy;
+}
+
+vec2 __operator / (const vec2 v, const float b)
+{
+   float invB;
+   __asm float_rcp invB, b;
+   __asm vec4_multiply __retVal.xy, v.xy, invB;
+}
+
+
+//// Basic vec3/float operators
+
+vec3 __operator + (const float a, const vec3 u)
+{
+   __asm vec4_add __retVal.xyz, a, u.xyz;
+}
+
+vec3 __operator + (const vec3 v, const float b)
+{
+   __asm vec4_add __retVal.xyz, v.xyz, b;
+}
+
+vec3 __operator - (const float a, const vec3 u)
+{
+   __asm vec4_subtract __retVal.xyz, a, u.xyz;
+}
+
+vec3 __operator - (const vec3 v, const float b)
+{
+   __asm vec4_subtract __retVal.xyz, v.xyz, b;
+}
+
+vec3 __operator * (const float a, const vec3 u)
+{
+   __asm vec4_multiply __retVal.xyz, a, u.xyz;
+}
+
+vec3 __operator * (const vec3 v, const float b)
+{
+   __asm vec4_multiply __retVal.xyz, v.xyz, b;
+}
+
+vec3 __operator / (const float a, const vec3 u)
+{
+   vec3 invU;
+   __asm float_rcp invU.x, u.x;
+   __asm float_rcp invU.y, u.y;
+   __asm float_rcp invU.z, u.z;
+   __asm vec4_multiply __retVal.xyz, a, invU.xyz;
+}
+
+vec3 __operator / (const vec3 v, const float b)
+{
+   float invB;
+   __asm float_rcp invB, b;
+   __asm vec4_multiply __retVal.xyz, v.xyz, invB;
+}
+
+
+//// Basic vec4/float operators
+
+vec4 __operator + (const float a, const vec4 u)
+{
+   __asm vec4_add __retVal, a, u;
+}
+
+vec4 __operator + (const vec4 v, const float b)
+{
+   __asm vec4_add __retVal, v, b;
+}
+
+vec4 __operator - (const float a, const vec4 u)
+{
+   __asm vec4_subtract __retVal, a, u;
+}
+
+vec4 __operator - (const vec4 v, const float b)
+{
+   __asm vec4_subtract __retVal, v, b;
+}
+
+vec4 __operator * (const float a, const vec4 u)
+{
+   __asm vec4_multiply __retVal, a, u;
+}
+
+vec4 __operator * (const vec4 v, const float b)
+{
+   __asm vec4_multiply __retVal, v, b;
+}
+
+vec4 __operator / (const float a, const vec4 u)
+{
+   vec4 invU;
+   __asm float_rcp invU.x, u.x;
+   __asm float_rcp invU.y, u.y;
+   __asm float_rcp invU.z, u.z;
+   __asm float_rcp invU.w, u.w;
+   __asm vec4_multiply __retVal, a, invU;
+}
+
+vec4 __operator / (const vec4 v, const float b)
+{
+   float invB;
+   __asm float_rcp invB, b;
+   __asm vec4_multiply __retVal, v, invB;
+}
+
+
+
+//// Basic ivec2/int operators
+
+ivec2 __operator + (const int a, const ivec2 u)
+{
+   __retVal = ivec2(a) + u;
+}
+
+ivec2 __operator + (const ivec2 v, const int b)
+{
+   __retVal = v + ivec2(b);
+}
+
+ivec2 __operator - (const int a, const ivec2 u)
+{
+   __retVal = ivec2(a) - u;
+}
+
+ivec2 __operator - (const ivec2 v, const int b)
+{
+   __retVal = v - ivec2(b);
+}
+
+ivec2 __operator * (const int a, const ivec2 u)
+{
+   __retVal = ivec2(a) * u;
+}
+
+ivec2 __operator * (const ivec2 v, const int b)
+{
+   __retVal = v * ivec2(b);
+}
+
+ivec2 __operator / (const int a, const ivec2 u)
+{
+   __retVal = ivec2(a) / u;
+}
+
+ivec2 __operator / (const ivec2 v, const int b)
+{
+   __retVal = v / ivec2(b);
+}
+
+
+//// Basic ivec3/int operators
+
+ivec3 __operator + (const int a, const ivec3 u)
+{
+   __retVal = ivec3(a) + u;
+}
+
+ivec3 __operator + (const ivec3 v, const int b)
+{
+   __retVal = v + ivec3(b);
+}
+
+ivec3 __operator - (const int a, const ivec3 u)
+{
+   __retVal = ivec3(a) - u;
+}
+
+ivec3 __operator - (const ivec3 v, const int b)
+{
+   __retVal = v - ivec3(b);
+}
+
+ivec3 __operator * (const int a, const ivec3 u)
+{
+   __retVal = ivec3(a) * u;
+}
+
+ivec3 __operator * (const ivec3 v, const int b)
+{
+   __retVal = v * ivec3(b);
+}
+
+ivec3 __operator / (const int a, const ivec3 u)
+{
+   __retVal = ivec3(a) / u;
+}
+
+ivec3 __operator / (const ivec3 v, const int b)
+{
+   __retVal = v / ivec3(b);
+}
+
+
+//// Basic ivec4/int operators
+
+ivec4 __operator + (const int a, const ivec4 u)
+{
+   __retVal = ivec4(a) + u;
+}
+
+ivec4 __operator + (const ivec4 v, const int b)
+{
+   __retVal = v + ivec4(b);
+}
+
+ivec4 __operator - (const int a, const ivec4 u)
+{
+   __retVal = ivec4(a) - u;
+}
+
+ivec4 __operator - (const ivec4 v, const int b)
+{
+   __retVal = v - ivec4(b);
+}
+
+ivec4 __operator * (const int a, const ivec4 u)
+{
+   __retVal = ivec4(a) * u;
+}
+
+ivec4 __operator * (const ivec4 v, const int b)
+{
+   __retVal = v * ivec4(b);
+}
+
+ivec4 __operator / (const int a, const ivec4 u)
+{
+   __retVal = ivec4(a) / u;
+}
+
+ivec4 __operator / (const ivec4 v, const int b)
+{
+   __retVal = v / ivec4(b);
+}
+
+
+
+
+//// Unary negation operator
+
+int __operator - (const int a)
+{
+   __asm vec4_negate __retVal.x, a;
+}
+
+ivec2 __operator - (const ivec2 v)
+{
+   __asm vec4_negate __retVal, v;
+}
+
+ivec3 __operator - (const ivec3 v)
+{
+   __asm vec4_negate __retVal, v;
+}
+
+ivec4 __operator - (const ivec4 v)
+{
+   __asm vec4_negate __retVal, v;
+}
+
+float __operator - (const float a)
+{
+   __asm vec4_negate __retVal.x, a;
+}
+
+vec2 __operator - (const vec2 v)
+{
+   __asm vec4_negate __retVal.xy, v.xy;
+}
+
+vec3 __operator - (const vec3 v)
+{
+   __asm vec4_negate __retVal.xyz, v.xyz;
+}
+
+vec4 __operator - (const vec4 v)
+{
+   __asm vec4_negate __retVal, v;
+}
+
+mat2 __operator - (const mat2 m)
+{
+   __retVal[0] = -m[0];
+   __retVal[1] = -m[1];
+}
+
+mat3 __operator - (const mat3 m)
+{
+   __retVal[0] = -m[0];
+   __retVal[1] = -m[1];
+   __retVal[2] = -m[2];
+}
+
+mat4 __operator - (const mat4 m)
+{
+   __retVal[0] = -m[0];
+   __retVal[1] = -m[1];
+   __retVal[2] = -m[2];
+   __retVal[3] = -m[3];
+}
+
+
+
+//// dot product
+
+float dot(const float a, const float b)
+{
+   __retVal = a * b;
+}
+
+float dot(const vec2 a, const vec2 b)
+{
+   __retVal = a.x * b.x + a.y * b.y;
+}
+
+float dot(const vec3 a, const vec3 b)
+{
+    __asm vec3_dot __retVal, a, b;
+}
+
+float dot(const vec4 a, const vec4 b)
+{
+    __asm vec4_dot __retVal, a, b;
+}
+
+
+
+//// int assignment operators
+
+void __operator += (inout int a, const int b)
+{
+   __asm vec4_add a, a, b;
+}
+
+void __operator -= (inout int a, const int b)
+{
+   __asm vec4_subtract a, a, b;
+}
+
+void __operator *= (inout int a, const int b)
+{
+   __asm vec4_multiply a, a, b;
+}
+
+void __operator /= (inout int a, const int b)
+{
+   float invB;
+   __asm float_rcp invB, b;
+   __asm vec4_multiply a, a, invB;
+   __asm vec4_to_ivec4 a, a;
+}
+
+
+//// ivec2 assignment operators
+
+void __operator += (inout ivec2 v, const ivec2 u)
+{
+   __asm vec4_add v, v, u;
+}
+
+void __operator -= (inout ivec2 v, const ivec2 u)
+{
+   __asm vec4_subtract v, v, u;
+}
+
+void __operator *= (inout ivec2 v, const ivec2 u)
+{
+   __asm vec4_multiply v, v, u;
+}
+
+void __operator /= (inout ivec2 v, const ivec2 u)
+{
+   ivec2 inv, z;
+   __asm float_rcp inv.x, u.x;
+   __asm float_rcp inv.y, u.y;
+   __asm vec4_multiply z, v, inv;
+   __asm vec4_to_ivec4 v, z;
+}
+
+
+//// ivec3 assignment operators
+
+void __operator += (inout ivec3 v, const ivec3 u)
+{
+   __asm vec4_add v, v, u;
+}
+
+void __operator -= (inout ivec3 v, const ivec3 u)
+{
+   __asm vec4_subtract v, v, u;
+}
+
+void __operator *= (inout ivec3 v, const ivec3 u)
+{
+   __asm vec4_multiply v, v, u;
+}
+
+void __operator /= (inout ivec3 v, const ivec3 u)
+{
+   ivec3 inv, z;
+   __asm float_rcp inv.x, u.x;
+   __asm float_rcp inv.y, u.y;
+   __asm vec4_multiply z, v, inv;
+   __asm vec4_to_ivec4 v, z;
+}
+
+
+//// ivec4 assignment operators
+
+void __operator += (inout ivec4 v, const ivec4 u)
+{
+   __asm vec4_add v, v, u;
+}
+
+void __operator -= (inout ivec4 v, const ivec4 u)
+{
+   __asm vec4_subtract v, v, u;
+}
+
+void __operator *= (inout ivec4 v, const ivec4 u)
+{
+   __asm vec4_multiply v, v, u;
+}
+
+void __operator /= (inout ivec4 v, const ivec4 u)
+{
+   ivec4 inv, z;
+   __asm float_rcp inv.x, u.x;
+   __asm float_rcp inv.y, u.y;
+   __asm vec4_multiply z, v, inv;
+   __asm vec4_to_ivec4 v, z;
+}
+
+
+//// float assignment operators
+
+void __operator += (inout float a, const float b)
+{
+    __asm vec4_add a.x, a.x, b.x;
+}
+
+void __operator -= (inout float a, const float b)
+{
+    __asm vec4_subtract a.x, a, b;
+}
+
+void __operator *= (inout float a, const float b)
+{
+    __asm vec4_multiply a.x, a, b;
+}
+
+void __operator /= (inout float a, const float b)
+{
+   float w; // = 1 / b
+   __asm float_rcp w.x, b;
+   __asm vec4_multiply a.x, a, w;
+}
+
+
+//// vec2 assignment operators
+
+void __operator += (inout vec2 v, const vec2 u)
+{
+   __asm vec4_add v.xy, v.xy, u.xy;
+}
+
+void __operator -= (inout vec2 v, const vec2 u)
+{
+   __asm vec4_subtract v.xy, v.xy, u.xy;
+}
+
+void __operator *= (inout vec2 v, const vec2 u)
+{
+   __asm vec4_multiply v.xy, v.xy, u.xy;
+}
+
+void __operator /= (inout vec2 v, const vec2 u)
+{
+   vec2 w;
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm vec4_multiply v.xy, v.xy, w.xy;
+}
+
+
+//// vec3 assignment operators
+
+void __operator += (inout vec3 v, const vec3 u)
+{
+   __asm vec4_add v.xyz, v, u;
+}
+
+void __operator -= (inout vec3 v, const vec3 u)
+{
+   __asm vec4_subtract v.xyz, v, u;
+}
+
+void __operator *= (inout vec3 v, const vec3 u)
+{
+   __asm vec4_multiply v.xyz, v, u;
+}
+
+void __operator /= (inout vec3 v, const vec3 u)
+{
+   vec3 w;
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm float_rcp w.z, u.z;
+   __asm vec4_multiply v.xyz, v.xyz, w.xyz;
+}
+
+
+//// vec4 assignment operators
+
+void __operator += (inout vec4 v, const vec4 u)
+{
+   __asm vec4_add v, v, u;
+}
+
+void __operator -= (inout vec4 v, const vec4 u)
+{
+   __asm vec4_subtract v, v, u;
+}
+
+void __operator *= (inout vec4 v, const vec4 u)
+{
+   __asm vec4_multiply v, v, u;
+}
+
+void __operator /= (inout vec4 v, const vec4 u)
+{
+   vec4 w;
+   __asm float_rcp w.x, u.x;
+   __asm float_rcp w.y, u.y;
+   __asm float_rcp w.z, u.z;
+   __asm float_rcp w.w, u.w;
+   __asm vec4_multiply v, v, w;
+}
+
+
+
+//// ivec2/int assignment operators
+
+void __operator += (inout ivec2 v, const int a)
+{
+   __asm vec4_add v.xy, v.xy, a;
+}
+
+void __operator -= (inout ivec2 v, const int a)
+{
+   __asm vec4_subtract v.xy, v.xy, a;
+}
+
+void __operator *= (inout ivec2 v, const int a)
+{
+   __asm vec4_multiply v.xy, v.xy, a;
+   v.x *= a;
+   v.y *= a;
+}
+
+void __operator /= (inout ivec2 v, const int a)
+{
+// XXX rcp
+    v.x /= a;
+    v.y /= a;
+}
+
+
+//// ivec3/int assignment operators
+
+void __operator += (inout ivec3 v, const int a)
+{
+   __asm vec4_add v.xyz, v.xyz, a;
+}
+
+void __operator -= (inout ivec3 v, const int a)
+{
+   __asm vec4_subtract v.xyz, v.xyz, a;
+}
+
+void __operator *= (inout ivec3 v, const int a)
+{
+   __asm vec4_multiply v.xyz, v.xyz, a;
+}
+
+void __operator /= (inout ivec3 v, const int a)
+{
+   // XXX rcp
+    v.x /= a;
+    v.y /= a;
+    v.z /= a;
+}
+
+
+//// ivec4/int assignment operators
+
+void __operator += (inout ivec4 v, const int a)
+{
+   __asm vec4_add v, v, a;
+}
+
+void __operator -= (inout ivec4 v, const int a)
+{
+   __asm vec4_subtract v, v, a;
+}
+
+void __operator *= (inout ivec4 v, const int a)
+{
+   __asm vec4_multiply v, v, a;
+}
+
+void __operator /= (inout ivec4 v, const int a)
+{
+    v.x /= a;
+    v.y /= a;
+    v.z /= a;
+    v.w /= a;
+}
+
+
+
+//// vec2/float assignment operators
+
+void __operator += (inout vec2 v, const float a)
+{
+   __asm vec4_add v.xy, v, a;
+}
+
+void __operator -= (inout vec2 v, const float a)
+{
+   __asm vec4_subtract v.xy, v, a;
+}
+
+void __operator *= (inout vec2 v, const float a)
+{
+   __asm vec4_multiply v.xy, v, a;
+}
+
+void __operator /= (inout vec2 v, const float a)
+{
+   float invA;
+   __asm float_rcp invA, a;
+   __asm vec4_multiply v.xy, v.xy, invA;
+}
+
+
+//// vec3/float assignment operators
+
+void __operator += (inout vec3 v, const float a)
+{
+   __asm vec4_add v.xyz, v, a;
+}
+
+void __operator -= (inout vec3 v, const float a)
+{
+   __asm vec4_subtract v.xyz, v, a;
+}
+
+void __operator *= (inout vec3 v, const float a)
+{
+   __asm vec4_multiply v.xyz, v, a;
+}
+
+void __operator /= (inout vec3 v, const float a)
+{
+   float invA;
+   __asm float_rcp invA, a;
+   __asm vec4_multiply v.xyz, v.xyz, invA;
+}
+
+
+//// vec4/float assignment operators
+
+void __operator += (inout vec4 v, const float a)
+{
+   __asm vec4_add v, v, a;
+}
+
+void __operator -= (inout vec4 v, const float a)
+{
+   __asm vec4_subtract v, v, a;
+}
+
+void __operator *= (inout vec4 v, const float a)
+{
+   __asm vec4_multiply v, v, a;
+}
+
+void __operator /= (inout vec4 v, const float a)
+{
+   float invA;
+   __asm float_rcp invA, a;
+   __asm vec4_multiply v, v, invA;
+}
+
+
+
+
+
+//// Basic mat2 operations
+
+mat2 __operator + (const mat2 m, const mat2 n)
+{
+   __retVal[0] = m[0] + n[0];
+   __retVal[1] = m[1] + n[1];
+}
+
+mat2 __operator - (const mat2 m, const mat2 n)
+{
+   __retVal[0] = m[0] - n[0];
+   __retVal[1] = m[1] - n[1];
+}
+
+mat2 __operator * (const mat2 m, const mat2 n)
+{
+   __retVal[0] = m[0] * n[0].xx + m[1] * n[0].yy;
+   __retVal[1] = m[0] * n[1].xx + m[1] * n[1].yy;
+}
+
+mat2 __operator / (const mat2 m, const mat2 n)
+{
+   __retVal[0] = m[0] / n[0];
+   __retVal[1] = m[1] / n[1];
+}
+
+
+//// Basic mat3 operations
+
+mat3 __operator + (const mat3 m, const mat3 n)
+{
+   __retVal[0] = m[0] + n[0];
+   __retVal[1] = m[1] + n[1];
+   __retVal[2] = m[2] + n[2];
+}
+
+mat3 __operator - (const mat3 m, const mat3 n)
+{
+   __retVal[0] = m[0] - n[0];
+   __retVal[1] = m[1] - n[1];
+   __retVal[2] = m[2] - n[2];
+}
+
+mat3 __operator * (const mat3 m, const mat3 n)
+{
+   __retVal[0] = m[0] * n[0].xxx + m[1] * n[0].yyy + m[2] * n[0].zzz;
+   __retVal[1] = m[0] * n[1].xxx + m[1] * n[1].yyy + m[2] * n[1].zzz;
+   __retVal[2] = m[0] * n[2].xxx + m[1] * n[2].yyy + m[2] * n[2].zzz;
+}
+
+mat3 __operator / (const mat3 m, const mat3 n)
+{
+    __retVal[0] = m[0] / n[0];
+    __retVal[1] = m[1] / n[1];
+    __retVal[2] = m[2] / n[2];
+}
+
+
+//// Basic mat4 operations
+
+mat4 __operator + (const mat4 m, const mat4 n)
+{
+   __retVal[0] = m[0] + n[0];
+   __retVal[1] = m[1] + n[1];
+   __retVal[2] = m[2] + n[2];
+   __retVal[3] = m[3] + n[3];
+}
+
+mat4 __operator - (const mat4 m, const mat4 n)
+{
+   __retVal[0] = m[0] - n[0];
+   __retVal[1] = m[1] - n[1];
+   __retVal[2] = m[2] - n[2];
+   __retVal[3] = m[3] - n[3];
+}
+
+mat4 __operator * (const mat4 m, const mat4 n)
+{
+   __retVal[0] = m[0] * n[0].xxxx + m[1] * n[0].yyyy + m[2] * n[0].zzzz + m[3] * n[0].wwww;
+   __retVal[1] = m[0] * n[1].xxxx + m[1] * n[1].yyyy + m[2] * n[1].zzzz + m[3] * n[1].wwww;
+   __retVal[2] = m[0] * n[2].xxxx + m[1] * n[2].yyyy + m[2] * n[2].zzzz + m[3] * n[2].wwww;
+   __retVal[3] = m[0] * n[3].xxxx + m[1] * n[3].yyyy + m[2] * n[3].zzzz + m[3] * n[3].wwww;
+}
+
+mat4 __operator / (const mat4 m, const mat4 n)
+{
+    __retVal[0] = m[0] / n[0];
+    __retVal[1] = m[1] / n[1];
+    __retVal[2] = m[2] / n[2];
+    __retVal[3] = m[3] / n[3];
+}
+
+
+//// mat2/float operations
+
+mat2 __operator + (const float a, const mat2 n)
+{
+   __retVal[0] = a + n[0];
+   __retVal[1] = a + n[1];
+}
+
+mat2 __operator + (const mat2 m, const float b)
+{
+   __retVal[0] = m[0] + b;
+   __retVal[1] = m[1] + b;
+}
+
+mat2 __operator - (const float a, const mat2 n)
+{
+   __retVal[0] = a - n[0];
+   __retVal[1] = a - n[1];
+}
+
+mat2 __operator - (const mat2 m, const float b)
+{
+   __retVal[0] = m[0] - b;
+   __retVal[1] = m[1] - b;
+}
+
+mat2 __operator * (const float a, const mat2 n)
+{
+   __retVal[0] = a * n[0];
+   __retVal[1] = a * n[1];
+}
+
+mat2 __operator * (const mat2 m, const float b)
+{
+   __retVal[0] = m[0] * b;
+   __retVal[1] = m[1] * b;
+}
+
+mat2 __operator / (const float a, const mat2 n)
+{
+   __retVal[0] = a / n[0];
+   __retVal[1] = a / n[1];
+}
+
+mat2 __operator / (const mat2 m, const float b)
+{
+   __retVal[0] = m[0] / b;
+   __retVal[1] = m[1] / b;
+}
+
+
+//// mat3/float operations
+
+mat3 __operator + (const float a, const mat3 n)
+{
+   __retVal[0] = a + n[0];
+   __retVal[1] = a + n[1];
+   __retVal[2] = a + n[2];
+}
+
+mat3 __operator + (const mat3 m, const float b)
+{
+   __retVal[0] = m[0] + b;
+   __retVal[1] = m[1] + b;
+   __retVal[2] = m[2] + b;
+}
+
+mat3 __operator - (const float a, const mat3 n)
+{
+   __retVal[0] = a - n[0];
+   __retVal[1] = a - n[1];
+   __retVal[2] = a - n[2];
+}
+
+mat3 __operator - (const mat3 m, const float b)
+{
+   __retVal[0] = m[0] - b;
+   __retVal[1] = m[1] - b;
+   __retVal[2] = m[2] - b;
+}
+
+mat3 __operator * (const float a, const mat3 n)
+{
+   __retVal[0] = a * n[0];
+   __retVal[1] = a * n[1];
+   __retVal[2] = a * n[2];
+}
+
+mat3 __operator * (const mat3 m, const float b)
+{
+   __retVal[0] = m[0] * b;
+   __retVal[1] = m[1] * b;
+   __retVal[2] = m[2] * b;
+}
+
+mat3 __operator / (const float a, const mat3 n)
+{
+   __retVal[0] = a / n[0];
+   __retVal[1] = a / n[1];
+   __retVal[2] = a / n[2];
+}
+
+mat3 __operator / (const mat3 m, const float b)
+{
+   __retVal[0] = m[0] / b;
+   __retVal[1] = m[1] / b;
+   __retVal[2] = m[2] / b;
+}
+
+
+//// mat4/float operations
+
+mat4 __operator + (const float a, const mat4 n)
+{
+   __retVal[0] = a + n[0];
+   __retVal[1] = a + n[1];
+   __retVal[2] = a + n[2];
+   __retVal[3] = a + n[3];
+}
+
+mat4 __operator + (const mat4 m, const float b)
+{
+   __retVal[0] = m[0] + b;
+   __retVal[1] = m[1] + b;
+   __retVal[2] = m[2] + b;
+   __retVal[3] = m[3] + b;
+}
+
+mat4 __operator - (const float a, const mat4 n)
+{
+   __retVal[0] = a - n[0];
+   __retVal[1] = a - n[1];
+   __retVal[2] = a - n[2];
+   __retVal[3] = a - n[3];
+}
+
+mat4 __operator - (const mat4 m, const float b)
+{
+   __retVal[0] = m[0] - b;
+   __retVal[1] = m[1] - b;
+   __retVal[2] = m[2] - b;
+   __retVal[3] = m[3] - b;
+}
+
+mat4 __operator * (const float a, const mat4 n)
+{
+   __retVal[0] = a * n[0];
+   __retVal[1] = a * n[1];
+   __retVal[2] = a * n[2];
+   __retVal[3] = a * n[3];
+}
+
+mat4 __operator * (const mat4 m, const float b)
+{
+   __retVal[0] = m[0] * b;
+   __retVal[1] = m[1] * b;
+   __retVal[2] = m[2] * b;
+   __retVal[3] = m[3] * b;
+}
+
+mat4 __operator / (const float a, const mat4 n)
+{
+   __retVal[0] = a / n[0];
+   __retVal[1] = a / n[1];
+   __retVal[2] = a / n[2];
+   __retVal[3] = a / n[3];
+}
+
+mat4 __operator / (const mat4 m, const float b)
+{
+   __retVal[0] = m[0] / b;
+   __retVal[1] = m[1] / b;
+   __retVal[2] = m[2] / b;
+   __retVal[3] = m[3] / b;
+}
+
+
+
+//// matrix / vector products
+
+vec2 __operator * (const mat2 m, const vec2 v)
+{
+   __retVal = m[0] * v.xx
+            + m[1] * v.yy;
+}
+
+vec2 __operator * (const vec2 v, const mat2 m)
+{
+   __retVal.x = dot(v, m[0]);
+   __retVal.y = dot(v, m[1]);
+}
+
+vec3 __operator * (const mat3 m, const vec3 v)
+{
+   __retVal = m[0] * v.xxx
+            + m[1] * v.yyy
+            + m[2] * v.zzz;
+}
+
+vec3 __operator * (const vec3 v, const mat3 m)
+{
+   __retVal.x = dot(v, m[0]);
+   __retVal.y = dot(v, m[1]);
+   __retVal.z = dot(v, m[2]);
+}
+
+vec4 __operator * (const mat4 m, const vec4 v)
+{
+   __retVal = m[0] * v.xxxx
+            + m[1] * v.yyyy
+            + m[2] * v.zzzz
+            + m[3] * v.wwww;
+}
+
+vec4 __operator * (const vec4 v, const mat4 m)
+{
+   __retVal.x = dot(v, m[0]);
+   __retVal.y = dot(v, m[1]);
+   __retVal.z = dot(v, m[2]);
+   __retVal.w = dot(v, m[3]);
+}
+
+
+
+//// mat2 assignment operators
+
+void __operator += (inout mat2 m, const mat2 n)
+{
+    m[0] += n[0];
+    m[1] += n[1];
+}
+
+void __operator -= (inout mat2 m, const mat2 n)
+{
+    m[0] -= n[0];
+    m[1] -= n[1];
+}
+
+void __operator *= (inout mat2 m, const mat2 n)
+{
+    m = m * n;
+}
+
+void __operator /= (inout mat2 m, const mat2 n)
+{
+    m[0] /= n[0];
+    m[1] /= n[1];
+}
+
+
+//// mat3 assignment operators
+
+void __operator += (inout mat3 m, const mat3 n)
+{
+    m[0] += n[0];
+    m[1] += n[1];
+    m[2] += n[2];
+}
+
+void __operator -= (inout mat3 m, const mat3 n)
+{
+    m[0] -= n[0];
+    m[1] -= n[1];
+    m[2] -= n[2];
+}
+
+void __operator *= (inout mat3 m, const mat3 n)
+{
+    m = m * n;
+}
+
+void __operator /= (inout mat3 m, const mat3 n)
+{
+    m[0] /= n[0];
+    m[1] /= n[1];
+    m[2] /= n[2];
+}
+
+
+// mat4 assignment operators
+
+void __operator += (inout mat4 m, const mat4 n)
+{
+    m[0] += n[0];
+    m[1] += n[1];
+    m[2] += n[2];
+    m[3] += n[3];
+}
+
+void __operator -= (inout mat4 m, const mat4 n) {
+    m[0] -= n[0];
+    m[1] -= n[1];
+    m[2] -= n[2];
+    m[3] -= n[3];
+}
+
+void __operator *= (inout mat4 m, const mat4 n)
+{
+    m = m * n;
+}
+
+void __operator /= (inout mat4 m, const mat4 n)
+{
+    m[0] /= n[0];
+    m[1] /= n[1];
+    m[2] /= n[2];
+    m[3] /= n[3];
+}
+
+
+//// mat2/float assignment operators
+
+void __operator += (inout mat2 m, const float a) {
+    m[0] += a;
+    m[1] += a;
+}
+
+void __operator -= (inout mat2 m, const float a) {
+    m[0] -= a;
+    m[1] -= a;
+}
+
+void __operator *= (inout mat2 m, const float a) {
+    m[0] *= a;
+    m[1] *= a;
+}
+
+void __operator /= (inout mat2 m, const float a) {
+    m[0] /= a;
+    m[1] /= a;
+}
+
+
+//// mat3/float assignment operators
+
+void __operator += (inout mat3 m, const float a) {
+    m[0] += a;
+    m[1] += a;
+    m[2] += a;
+}
+
+void __operator -= (inout mat3 m, const float a) {
+    m[0] -= a;
+    m[1] -= a;
+    m[2] -= a;
+}
+
+void __operator *= (inout mat3 m, const float a) {
+    m[0] *= a;
+    m[1] *= a;
+    m[2] *= a;
+}
+
+void __operator /= (inout mat3 m, const float a) {
+    m[0] /= a;
+    m[1] /= a;
+    m[2] /= a;
+}
+
+
+//// mat4/float assignment operators
+
+void __operator += (inout mat4 m, const float a) {
+    m[0] += a;
+    m[1] += a;
+    m[2] += a;
+    m[3] += a;
+}
+
+void __operator -= (inout mat4 m, const float a) {
+    m[0] -= a;
+    m[1] -= a;
+    m[2] -= a;
+    m[3] -= a;
+}
+
+void __operator *= (inout mat4 m, const float a) {
+    m[0] *= a;
+    m[1] *= a;
+    m[2] *= a;
+    m[3] *= a;
+}
+
+void __operator /= (inout mat4 m, const float a) {
+    m[0] /= a;
+    m[1] /= a;
+    m[2] /= a;
+    m[3] /= a;
+}
+
+
+
+//// vec/mat assignment operators
+
+void __operator *= (inout vec2 v, const mat2 m)
+{
+    v = v * m;
+}
+
+void __operator *= (inout vec3 v, const mat3 m)
+{
+    v = v * m;
+}
+
+void __operator *= (inout vec4 v, const mat4 m)
+{
+    v = v * m;
+}
+
+
+
+//// pre-decrement operators
+
+int __operator --(inout int a)
+{
+    a = a - 1;
+   __retVal = a;
+}
+
+ivec2 __operator --(inout ivec2 v)
+{
+   v = v - ivec2(1);
+   __retVal = v;
+}
+
+ivec3 __operator --(inout ivec3 v)
+{
+   v = v - ivec3(1);
+   __retVal = v;
+}
+
+ivec4 __operator --(inout ivec4 v)
+{
+   v = v - ivec4(1);
+   __retVal = v;
+}
+
+
+float __operator --(inout float a)
+{
+   a = a - 1.0;
+   __retVal = a;
+}
+
+vec2 __operator --(inout vec2 v)
+{
+   v = v - vec2(1.0);
+   __retVal = v;
+}
+
+vec3 __operator --(inout vec3 v)
+{
+   v = v - vec3(1.0);
+   __retVal = v;
+}
+
+vec4 __operator --(inout vec4 v)
+{
+   v = v - vec4(1.0);
+   __retVal = v;
+}
+
+
+mat2 __operator --(inout mat2 m)
+{
+   m[0] = m[0] - vec2(1.0);
+   m[1] = m[1] - vec2(1.0);
+   __retVal = m;
+}
+
+mat3 __operator --(inout mat3 m)
+{
+   m[0] = m[0] - vec3(1.0);
+   m[1] = m[1] - vec3(1.0);
+   m[2] = m[2] - vec3(1.0);
+   __retVal = m;
+}
+
+mat4 __operator --(inout mat4 m)
+{
+   m[0] = m[0] - vec4(1.0);
+   m[1] = m[1] - vec4(1.0);
+   m[2] = m[2] - vec4(1.0);
+   m[3] = m[3] - vec4(1.0);
+   __retVal = m;
+}
+
+
+//// pre-increment operators
+
+int __operator ++(inout int a)
+{
+    a = a + 1;
+    __retVal = a;
+}
+
+ivec2 __operator ++(inout ivec2 v)
+{
+   v = v + ivec2(1);
+   __retVal = v;
+}
+
+ivec3 __operator ++(inout ivec3 v)
+{
+   v = v + ivec3(1);
+   __retVal = v;
+}
+
+ivec4 __operator ++(inout ivec4 v)
+{
+   v = v + ivec4(1);
+   __retVal = v;
+}
+
+
+float __operator ++(inout float a)
+{
+    a = a + 1.0;
+    __retVal = a;
+}
+
+vec2 __operator ++(inout vec2 v)
+{
+   v = v + vec2(1.0);
+   __retVal = v;
+}
+
+vec3 __operator ++(inout vec3 v)
+{
+   v = v + vec3(1.0);
+   __retVal = v;
+}
+
+vec4 __operator ++(inout vec4 v)
+{
+   v = v + vec4(1.0);
+   __retVal = v;
+}
+
+
+mat2 __operator ++(inout mat2 m)
+{
+   m[0] = m[0] + vec2(1.0);
+   m[1] = m[1] + vec2(1.0);
+   __retVal = m;
+}
+
+mat3 __operator ++(inout mat3 m)
+{
+   m[0] = m[0] + vec3(1.0);
+   m[1] = m[1] + vec3(1.0);
+   m[2] = m[2] + vec3(1.0);
+   __retVal = m;
+}
+
+mat4 __operator ++(inout mat4 m)
+{
+   m[0] = m[0] + vec4(1.0);
+   m[1] = m[1] + vec4(1.0);
+   m[2] = m[2] + vec4(1.0);
+   m[3] = m[3] + vec4(1.0);
+   __retVal = m;
+}
+
+
+
+//// post-decrement
+
+int __postDecr(inout int a)
+{
+   __retVal = a;
+   a = a - 1;
+}
+
+ivec2 __postDecr(inout ivec2 v)
+{
+   __retVal = v;
+   v = v - ivec2(1);
+}
+
+ivec3 __postDecr(inout ivec3 v)
+{
+   __retVal = v;
+   v = v - ivec3(1);
+}
+
+ivec4 __postDecr(inout ivec4 v)
+{
+   __retVal = v;
+   v = v - ivec4(1);
+}
+
+
+float __postDecr(inout float a)
+{
+   __retVal = a;
+   a = a - 1.0;
+}
+
+vec2 __postDecr(inout vec2 v)
+{
+   __retVal = v;
+   v = v - vec2(1.0);
+}
+
+vec3 __postDecr(inout vec3 v)
+{
+   __retVal = v;
+   v = v - vec3(1.0);
+}
+
+vec4 __postDecr(inout vec4 v)
+{
+   __retVal = v;
+   v = v - vec4(1.0);
+}
+
+
+mat2 __postDecr(inout mat2 m)
+{
+   __retVal = m;
+   m[0] = m[0] - vec2(1.0);
+   m[1] = m[1] - vec2(1.0);
+}
+
+mat3 __postDecr(inout mat3 m)
+{
+   __retVal = m;
+   m[0] = m[0] - vec3(1.0);
+   m[1] = m[1] - vec3(1.0);
+   m[2] = m[2] - vec3(1.0);
+}
+
+mat4 __postDecr(inout mat4 m)
+{
+   __retVal = m;
+   m[0] = m[0] - vec4(1.0);
+   m[1] = m[1] - vec4(1.0);
+   m[2] = m[2] - vec4(1.0);
+   m[3] = m[3] - vec4(1.0);
+}
+
+
+//// post-increment
+
+float __postIncr(inout float a)
+{
+   __retVal = a;
+   a = a + 1;
+}
+
+vec2 __postIncr(inout vec2 v)
+{
+   __retVal = v;
+   v = v + vec2(1.0);
+}
+
+vec3 __postIncr(inout vec3 v)
+{
+   __retVal = v;
+   v = v + vec3(1.0);
+}
+
+vec4 __postIncr(inout vec4 v)
+{
+   __retVal = v;
+   v = v + vec4(1.0);
+}
+
+
+int __postIncr(inout int a)
+{
+   __retVal = a;
+   a = a + 1;
+}
+
+ivec2 __postIncr(inout ivec2 v)
+{
+   __retVal = v;
+   v = v + ivec2(1);
+}
+
+ivec3 __postIncr(inout ivec3 v)
+{
+   __retVal = v;
+   v = v + ivec3(1);
+}
+
+ivec4 __postIncr(inout ivec4 v)
+{
+   __retVal = v;
+   v = v + ivec3(1);
+}
+
+
+mat2 __postIncr(inout mat2 m)
+{
+   mat2 n = m;
+   m[0] = m[0] + vec2(1.0);
+   m[1] = m[1] + vec2(1.0);
+   return n;
+}
+
+mat3 __postIncr(inout mat3 m)
+{
+   mat3 n = m;
+   m[0] = m[0] + vec3(1.0);
+   m[1] = m[1] + vec3(1.0);
+   m[2] = m[2] + vec3(1.0);
+   return n;
+}
+
+mat4 __postIncr(inout mat4 m)
+{
+   mat4 n = m;
+   m[0] = m[0] + vec4(1.0);
+   m[1] = m[1] + vec4(1.0);
+   m[2] = m[2] + vec4(1.0);
+   m[3] = m[3] + vec4(1.0);
+   return n;
+}
+
+
+
+//// inequality operators
+
+
+// XXX are the inequality operators for floats/ints really needed????
+bool __operator < (const float a, const float b)
+{
+   __asm vec4_sgt __retVal.x, b, a;
+}
+
+
+bool __operator < (const int a, const int b) {
+    return float (a) < float (b);
+}
+
+bool __operator > (const float a, const float b) {
+    bool c;
+    __asm float_less c, b, a;
+    return c;
+}
+
+bool __operator > (const int a, const int b) {
+    return float (a) > float (b);
+}
+
+bool __operator >= (const float a, const float b) {
+    bool g, e;
+    __asm float_less  g, b, a;
+    __asm float_equal e, a, b;
+    return g || e;
+}
+
+bool __operator >= (const int a, const int b) {
+    return float (a) >= float (b);
+}
+
+bool __operator <= (const float a, const float b) {
+    bool g, e;
+    __asm float_less  g, a, b;
+    __asm float_equal e, a, b;
+    return g || e;
+}
+
+bool __operator <= (const int a, const int b) {
+    return float (a) <= float (b);
+}
+
+
+
+//
+// MESA-specific extension functions.
+//
+
+void printMESA (const float f) {
+    __asm float_print f;
+}
+
+void printMESA (const int i) {
+    __asm int_print i;
+}
+
+void printMESA (const bool b) {
+    __asm bool_print b;
+}
+
+void printMESA (const vec2 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+}
+
+void printMESA (const vec3 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+}
+
+void printMESA (const vec4 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+    printMESA (v.w);
+}
+
+void printMESA (const ivec2 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+}
+
+void printMESA (const ivec3 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+}
+
+void printMESA (const ivec4 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+    printMESA (v.w);
+}
+
+void printMESA (const bvec2 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+}
+
+void printMESA (const bvec3 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+}
+
+void printMESA (const bvec4 v) {
+    printMESA (v.x);
+    printMESA (v.y);
+    printMESA (v.z);
+    printMESA (v.w);
+}
+
+void printMESA (const mat2 m) {
+    printMESA (m[0]);
+    printMESA (m[1]);
+}
+
+void printMESA (const mat3 m) {
+    printMESA (m[0]);
+    printMESA (m[1]);
+    printMESA (m[2]);
+}
+
+void printMESA (const mat4 m) {
+    printMESA (m[0]);
+    printMESA (m[1]);
+    printMESA (m[2]);
+    printMESA (m[3]);
+}
+
+void printMESA (const sampler1D e) {
+    __asm int_print e;
+}
+
+void printMESA (const sampler2D e) {
+    __asm int_print e;
+}
+
+void printMESA (const sampler3D e) {
+    __asm int_print e;
+}
+
+void printMESA (const samplerCube e) {
+    __asm int_print e;
+}
+
+void printMESA (const sampler1DShadow e) {
+    __asm int_print e;
+}
+
+void printMESA (const sampler2DShadow e) {
+    __asm int_print e;
+}
+