summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/library/slang_core.gc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/shader/slang/library/slang_core.gc')
-rw-r--r--src/mesa/shader/slang/library/slang_core.gc4
1 files changed, 2 insertions, 2 deletions
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)