Matteo Bruni : d3dcompiler: Improve debug_hlsl_type function.

Alexandre Julliard julliard at winehq.org
Wed Jul 11 17:39:21 CDT 2012


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

Author: Matteo Bruni <mbruni at codeweavers.com>
Date:   Wed Jul 11 17:27:53 2012 +0200

d3dcompiler: Improve debug_hlsl_type function.

---

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

diff --git a/dlls/d3dcompiler_43/utils.c b/dlls/d3dcompiler_43/utils.c
index 880a484..2d4eefb 100644
--- a/dlls/d3dcompiler_43/utils.c
+++ b/dlls/d3dcompiler_43/utils.c
@@ -999,16 +999,16 @@ const char *debug_hlsl_type(const struct hlsl_type *type)
         return debugstr_a(type->name);
 
     if (type->type == HLSL_CLASS_STRUCT)
-        name = "<anonymous struct>";
-    else
-        name = debug_base_type(type);
+        return "<anonymous struct>";
+
+    name = debug_base_type(type);
 
     if (type->type == HLSL_CLASS_SCALAR)
         return wine_dbg_sprintf("%s", name);
     if (type->type == HLSL_CLASS_VECTOR)
-        return wine_dbg_sprintf("vector<%s, %u>", name, type->dimx);
+        return wine_dbg_sprintf("%s%u", name, type->dimx);
     if (type->type == HLSL_CLASS_MATRIX)
-        return wine_dbg_sprintf("matrix<%s, %u, %u>", name, type->dimx, type->dimy);
+        return wine_dbg_sprintf("%s%ux%u", name, type->dimx, type->dimy);
     return "unexpected_type";
 }
 




More information about the wine-cvs mailing list