Matteo Bruni : d3dcompiler: Fix tracing of expression operators.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Oct 16 09:44:21 CDT 2014


Module: wine
Branch: master
Commit: a02f76637d1b1b1ed1b8d0ceb9d08b231480a6f0
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a02f76637d1b1b1ed1b8d0ceb9d08b231480a6f0

Author: Matteo Bruni <mbruni at codeweavers.com>
Date:   Thu Oct 16 01:32:22 2014 +0200

d3dcompiler: Fix tracing of expression operators.

This hunk should have been in d25486fba4b87981618e0f55a5a7388db95c204f.

---

 dlls/d3dcompiler_43/utils.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/d3dcompiler_43/utils.c b/dlls/d3dcompiler_43/utils.c
index 858277a..8de102f 100644
--- a/dlls/d3dcompiler_43/utils.c
+++ b/dlls/d3dcompiler_43/utils.c
@@ -2083,6 +2083,11 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
 
         "sat",
 
+        "pre++",
+        "pre--",
+        "post++",
+        "post--",
+
         "+",
         "-",
         "*",
@@ -2113,11 +2118,6 @@ static const char *debug_expr_op(const struct hlsl_ir_expr *expr)
 
         "pow",
 
-        "pre++",
-        "pre--",
-        "post++",
-        "post--",
-
         "lerp",
 
         ",",




More information about the wine-cvs mailing list