From ab673c852724e81365ab9d979881da7464131854 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 7 Mar 2007 11:25:37 -0700 Subject: fix broken __postDecr() --- src/mesa/shader/slang/library/slang_core.gc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/shader/slang/library/slang_core.gc') diff --git a/src/mesa/shader/slang/library/slang_core.gc b/src/mesa/shader/slang/library/slang_core.gc index 0c45515163..25afccf13f 100644 --- a/src/mesa/shader/slang/library/slang_core.gc +++ b/src/mesa/shader/slang/library/slang_core.gc @@ -2333,8 +2333,8 @@ ivec4 __postDecr(inout ivec4 v) float __postDecr(inout float a) { - __retVal = v; - v = v - 1.0; + __retVal = a; + a = a - 1.0; } vec2 __postDecr(inout vec2 v) -- cgit v1.2.3