OSDN Git Service

glsl: Add support for the 1.30 round() built-in.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 14 Oct 2010 21:33:30 +0000 (14:33 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 14 Oct 2010 22:59:47 +0000 (15:59 -0700)
This implements round() via the ir_unop_round_even opcode, rather than
adding a new opcode.  We may wish to add one in the future, since it
might enable a small performance increase on some hardware, but for now,
this should suffice.

src/glsl/builtins/ir/round [new file with mode: 0644]
src/glsl/builtins/profiles/130.frag
src/glsl/builtins/profiles/130.vert

diff --git a/src/glsl/builtins/ir/round b/src/glsl/builtins/ir/round
new file mode 100644 (file)
index 0000000..d0d425b
--- /dev/null
@@ -0,0 +1,21 @@
+((function round
+   (signature float
+     (parameters
+       (declare (in) float arg0))
+     ((return (expression float round_even (var_ref arg0)))))
+
+   (signature vec2
+     (parameters
+       (declare (in) vec2 arg0))
+     ((return (expression vec2 round_even (var_ref arg0)))))
+
+   (signature vec3
+     (parameters
+       (declare (in) vec3 arg0))
+     ((return (expression vec3 round_even (var_ref arg0)))))
+
+   (signature vec4
+     (parameters
+       (declare (in) vec4 arg0))
+     ((return (expression vec4 round_even (var_ref arg0)))))
+))
index c8b6319..9644070 100644 (file)
@@ -148,6 +148,11 @@ vec2  trunc(vec2  x);
 vec3  trunc(vec3  x);
 vec4  trunc(vec4  x);
 
+float round(float x);
+vec2  round(vec2  x);
+vec3  round(vec3  x);
+vec4  round(vec4  x);
+
 float roundEven(float x);
 vec2  roundEven(vec2  x);
 vec3  roundEven(vec3  x);
index 9d1056f..eb76518 100644 (file)
@@ -148,6 +148,11 @@ vec2  trunc(vec2  x);
 vec3  trunc(vec3  x);
 vec4  trunc(vec4  x);
 
+float round(float x);
+vec2  round(vec2  x);
+vec3  round(vec3  x);
+vec4  round(vec4  x);
+
 float roundEven(float x);
 vec2  roundEven(vec2  x);
 vec3  roundEven(vec3  x);