Francisco Casas : vkd3d-shader/hlsl: Fix wrong conditional in compare_param_hlsl_types().

Alexandre Julliard julliard at winehq.org
Wed Feb 9 16:03:04 CST 2022


Module: vkd3d
Branch: master
Commit: f5f9cddda238cfe151f1b98f3ce800ba029e7681
URL:    https://source.winehq.org/git/vkd3d.git/?a=commit;h=f5f9cddda238cfe151f1b98f3ce800ba029e7681

Author: Francisco Casas <fcasas at codeweavers.com>
Date:   Thu Jan 27 15:31:21 2022 -0300

vkd3d-shader/hlsl: Fix wrong conditional in compare_param_hlsl_types().

Signed-off-by: Francisco Casas <fcasas at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni at codeweavers.com>
Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Giovanni Mascellani <gmascellani at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 libs/vkd3d-shader/hlsl.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libs/vkd3d-shader/hlsl.c b/libs/vkd3d-shader/hlsl.c
index 917c7bf..e96969d 100644
--- a/libs/vkd3d-shader/hlsl.c
+++ b/libs/vkd3d-shader/hlsl.c
@@ -794,8 +794,7 @@ static int compare_param_hlsl_types(const struct hlsl_type *t1, const struct hls
     }
     if (t1->base_type != t2->base_type)
         return t1->base_type - t2->base_type;
-    if ((t1->base_type == HLSL_TYPE_SAMPLER || t1->base_type == HLSL_TYPE_TEXTURE)
-            && t1->sampler_dim != t2->sampler_dim)
+    if (t1->base_type == HLSL_TYPE_SAMPLER || t1->base_type == HLSL_TYPE_TEXTURE)
     {
         if (t1->sampler_dim != t2->sampler_dim)
             return t1->sampler_dim - t2->sampler_dim;




More information about the wine-cvs mailing list