https://git.reactos.org/?p=reactos.git;a=commitdiff;h=706fd8dde366a4e1f0223412b9f48a2acd4f6e7c

commit 706fd8dde366a4e1f0223412b9f48a2acd4f6e7c
Author:     winesync <[email protected]>
AuthorDate: Mon Sep 21 22:40:26 2020 +0200
Commit:     Jérôme Gardou <[email protected]>
CommitDate: Thu Feb 4 16:37:02 2021 +0100

    [WINESYNC] d3dx9: Merge the d3dx_effect_GetBool() helper.
    
    Signed-off-by: Michael Stefaniuc <[email protected]>
    Signed-off-by: Matteo Bruni <[email protected]>
    Signed-off-by: Alexandre Julliard <[email protected]>
    
    wine commit id cca43ca090ccb27c5e3d3564dbe69a424f0c9872 by Michael 
Stefaniuc <[email protected]>
---
 dll/directx/wine/d3dx9_36/effect.c | 28 +++++++++++-----------------
 sdk/tools/winesync/d3dx9.cfg       |  2 +-
 2 files changed, 12 insertions(+), 18 deletions(-)

diff --git a/dll/directx/wine/d3dx9_36/effect.c 
b/dll/directx/wine/d3dx9_36/effect.c
index 88a5c7aca01..9ff76097072 100644
--- a/dll/directx/wine/d3dx9_36/effect.c
+++ b/dll/directx/wine/d3dx9_36/effect.c
@@ -1365,22 +1365,6 @@ static HRESULT d3dx9_base_effect_set_bool(struct 
d3dx9_base_effect *base, D3DXHA
     return D3DERR_INVALIDCALL;
 }
 
-static HRESULT d3dx9_base_effect_get_bool(struct d3dx9_base_effect *base, 
D3DXHANDLE parameter, BOOL *b)
-{
-    struct d3dx_parameter *param = get_valid_parameter(base, parameter);
-
-    if (b && param && !param->element_count && param->rows == 1 && 
param->columns == 1)
-    {
-        set_number(b, D3DXPT_BOOL, param->data, param->type);
-        TRACE("Returning %s\n", *b ? "TRUE" : "FALSE");
-        return D3D_OK;
-    }
-
-    WARN("Parameter not found.\n");
-
-    return D3DERR_INVALIDCALL;
-}
-
 static HRESULT d3dx9_base_effect_set_bool_array(struct d3dx9_base_effect *base,
         D3DXHANDLE parameter, const BOOL *b, UINT count)
 {
@@ -3514,10 +3498,20 @@ static HRESULT WINAPI d3dx_effect_SetBool(ID3DXEffect 
*iface, D3DXHANDLE paramet
 static HRESULT WINAPI d3dx_effect_GetBool(ID3DXEffect *iface, D3DXHANDLE 
parameter, BOOL *b)
 {
     struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
+    struct d3dx_parameter *param = get_valid_parameter(&effect->base_effect, 
parameter);
 
     TRACE("iface %p, parameter %p, b %p.\n", iface, parameter, b);
 
-    return d3dx9_base_effect_get_bool(&effect->base_effect, parameter, b);
+    if (b && param && !param->element_count && param->rows == 1 && 
param->columns == 1)
+    {
+        set_number(b, D3DXPT_BOOL, param->data, param->type);
+        TRACE("Returning %s\n", *b ? "TRUE" : "FALSE");
+        return D3D_OK;
+    }
+
+    WARN("Parameter not found.\n");
+
+    return D3DERR_INVALIDCALL;
 }
 
 static HRESULT WINAPI d3dx_effect_SetBoolArray(ID3DXEffect *iface, D3DXHANDLE 
parameter, const BOOL *b, UINT count)
diff --git a/sdk/tools/winesync/d3dx9.cfg b/sdk/tools/winesync/d3dx9.cfg
index b4b66e5ae06..0048c27ab3e 100644
--- a/sdk/tools/winesync/d3dx9.cfg
+++ b/sdk/tools/winesync/d3dx9.cfg
@@ -15,4 +15,4 @@ files: {include/d3dx9.h: sdk/include/dxsdk/d3dx9.h, 
include/d3dx9anim.h: sdk/inc
   include/d3dx9mesh.h: sdk/include/dxsdk/d3dx9mesh.h, include/d3dx9of.h: 
sdk/include/dxsdk/d3dx9of.h,
   include/d3dx9shader.h: sdk/include/dxsdk/d3dx9shader.h, 
include/d3dx9shape.h: sdk/include/dxsdk/d3dx9shape.h,
   include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h, include/d3dx9xof.h: 
sdk/include/dxsdk/d3dx9xof.h}
-tags: {wine: f0d7dd0761fc0b6a45b3d3ae136339d3c3bf8075}
+tags: {wine: cca43ca090ccb27c5e3d3564dbe69a424f0c9872}

Reply via email to