summaryrefslogtreecommitdiff
path: root/src/glsl/builtins/profiles
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-10-14 14:33:30 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-10-14 15:59:47 -0700
commit27ced5c5ff907557007ed6cb78cef5810cf48ef5 (patch)
treea74cad6777272c1f8ef08bc25b6e1bae5535618d /src/glsl/builtins/profiles
parentf157812bbbcf9caac1f84988e738fc9d1e051056 (diff)
glsl: Add support for the 1.30 round() built-in.
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.
Diffstat (limited to 'src/glsl/builtins/profiles')
-rw-r--r--src/glsl/builtins/profiles/130.frag5
-rw-r--r--src/glsl/builtins/profiles/130.vert5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/glsl/builtins/profiles/130.frag b/src/glsl/builtins/profiles/130.frag
index c8b6319ae6..96440703bd 100644
--- a/src/glsl/builtins/profiles/130.frag
+++ b/src/glsl/builtins/profiles/130.frag
@@ -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);
diff --git a/src/glsl/builtins/profiles/130.vert b/src/glsl/builtins/profiles/130.vert
index 9d1056f282..eb765186fc 100644
--- a/src/glsl/builtins/profiles/130.vert
+++ b/src/glsl/builtins/profiles/130.vert
@@ -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);