Module: Mesa
Branch: master
Commit: 6afce988a9ee41af4ac1244d488ae6b89edf8d13
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=6afce988a9ee41af4ac1244d488ae6b89edf8d13

Author: Kenneth Graunke <[email protected]>
Date:   Mon Sep  5 12:12:10 2011 -0700

glsl/builtins: Fix invalid float constant in noise4 built-in.

Throwing away the extra numbers ought to match the existing behavior.

Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>

---

 src/glsl/builtins/ir/noise4 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/glsl/builtins/ir/noise4 b/src/glsl/builtins/ir/noise4
index d0894fd..4949696 100644
--- a/src/glsl/builtins/ir/noise4
+++ b/src/glsl/builtins/ir/noise4
@@ -84,9 +84,9 @@
       (assign (x) (var_ref _p) (expression float + (var_ref p) (constant float 
(1559.0))) )
 
       (assign (x) (var_ref _x) (expression float noise(var_ref p)))
-      (assign (x) (var_ref _y) (expression float noise(expression float + 
(var_ref p) (constant float (601.0 313.0 29.0 277.0)))))
+      (assign (x) (var_ref _y) (expression float noise(expression float + 
(var_ref p) (constant float (601.0)))))
       (assign (x) (var_ref _z) (expression float noise(var_ref _p)))
-      (assign (x) (var_ref _w) (expression float noise(expression float + 
(var_ref _p) (constant float (601.0 313.0 29.0 277.0)))))
+      (assign (x) (var_ref _w) (expression float noise(expression float + 
(var_ref _p) (constant float (601.0)))))
 
       (assign (x) (var_ref _r) (var_ref _x))
       (assign (y) (var_ref _r) (var_ref _y))

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to