diff options
author | Olivier Galibert <[email protected]> | 2012-05-08 20:40:32 +0200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-06-07 00:06:17 -0700 |
commit | 500dcbb1aa991d4c92200fcacd6eb288bb2638d7 (patch) | |
tree | e27a1039589a9bc5611792862175febcd543d4dd /src/glsl/builtins/ir/floatBitsToInt.ir | |
parent | 199771bc325900eb1d3acc7fa03808894a94fdb2 (diff) |
glsl: New unary opcodes for ARB_shader_bit_encoding support.
The opcodes are bitcast_f2u, bitcast_f2i, bitcast_i2f and bitcast_u2f.
Signed-off-by: Olivier Galibert <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/glsl/builtins/ir/floatBitsToInt.ir')
-rw-r--r-- | src/glsl/builtins/ir/floatBitsToInt.ir | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/glsl/builtins/ir/floatBitsToInt.ir b/src/glsl/builtins/ir/floatBitsToInt.ir new file mode 100644 index 00000000000..a5db4b3269a --- /dev/null +++ b/src/glsl/builtins/ir/floatBitsToInt.ir @@ -0,0 +1,21 @@ +((function floatBitsToInt + (signature int + (parameters + (declare (in) float arg)) + ((return (expression int bitcast_f2i (var_ref arg))))) + + (signature ivec2 + (parameters + (declare (in) vec2 arg)) + ((return (expression ivec2 bitcast_f2i (var_ref arg))))) + + (signature ivec3 + (parameters + (declare (in) vec3 arg)) + ((return (expression ivec3 bitcast_f2i (var_ref arg))))) + + (signature ivec4 + (parameters + (declare (in) vec4 arg)) + ((return (expression ivec4 bitcast_f2i (var_ref arg))))) +)) |