https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b74269badf34209b1c972…
commit b74269badf34209b1c97224114b3f9d541da35ec
Author: winesync <ros-dev(a)reactos.org>
AuthorDate: Mon Sep 21 22:40:28 2020 +0200
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Thu Feb 4 16:37:02 2021 +0100
[WINESYNC] d3dx9: Merge the d3dx_effect_GetMatrixTransposePointerArray() helper.
Signed-off-by: Michael Stefaniuc <mstefani(a)winehq.org>
Signed-off-by: Matteo Bruni <mbruni(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
wine commit id 95a8cfad14f1d87b9f7512f96c5c06edba04ca70 by Michael Stefaniuc
<mstefani(a)winehq.org>
---
dll/directx/wine/d3dx9_36/effect.c | 70 +++++++++++++++++---------------------
sdk/tools/winesync/d3dx9.cfg | 2 +-
2 files changed, 32 insertions(+), 40 deletions(-)
diff --git a/dll/directx/wine/d3dx9_36/effect.c b/dll/directx/wine/d3dx9_36/effect.c
index 613c38b13be..aca8c8461d1 100644
--- a/dll/directx/wine/d3dx9_36/effect.c
+++ b/dll/directx/wine/d3dx9_36/effect.c
@@ -1636,44 +1636,6 @@ static HRESULT
d3dx9_base_effect_set_matrix_transpose_pointer_array(struct d3dx9
return D3DERR_INVALIDCALL;
}
-static HRESULT d3dx9_base_effect_get_matrix_transpose_pointer_array(struct
d3dx9_base_effect *base,
- D3DXHANDLE parameter, D3DXMATRIX **matrix, UINT count)
-{
- struct d3dx_parameter *param = get_valid_parameter(base, parameter);
-
- if (!count) return D3D_OK;
-
- if (matrix && param && count <= param->element_count)
- {
- UINT i;
-
- TRACE("Class %s\n", debug_d3dxparameter_class(param->class));
-
- switch (param->class)
- {
- case D3DXPC_MATRIX_ROWS:
- for (i = 0; i < count; ++i)
- {
- get_matrix(¶m->members[i], matrix[i], TRUE);
- }
- return D3D_OK;
-
- case D3DXPC_SCALAR:
- case D3DXPC_VECTOR:
- case D3DXPC_OBJECT:
- break;
-
- default:
- FIXME("Unhandled class %s\n",
debug_d3dxparameter_class(param->class));
- break;
- }
- }
-
- WARN("Parameter not found.\n");
-
- return D3DERR_INVALIDCALL;
-}
-
static HRESULT d3dx9_base_effect_set_string(struct d3dx9_base_effect *base,
D3DXHANDLE parameter, const char *string)
{
@@ -3605,10 +3567,40 @@ static HRESULT WINAPI
d3dx_effect_GetMatrixTransposePointerArray(ID3DXEffect *if
D3DXMATRIX **matrix, UINT count)
{
struct d3dx_effect *effect = impl_from_ID3DXEffect(iface);
+ struct d3dx_parameter *param = get_valid_parameter(&effect->base_effect,
parameter);
TRACE("iface %p, parameter %p, matrix %p, count %u.\n", iface, parameter,
matrix, count);
- return
d3dx9_base_effect_get_matrix_transpose_pointer_array(&effect->base_effect,
parameter, matrix, count);
+ if (!count)
+ return D3D_OK;
+
+ if (matrix && param && count <= param->element_count)
+ {
+ unsigned int i;
+
+ TRACE("Class %s.\n", debug_d3dxparameter_class(param->class));
+
+ switch (param->class)
+ {
+ case D3DXPC_MATRIX_ROWS:
+ for (i = 0; i < count; ++i)
+ get_matrix(¶m->members[i], matrix[i], TRUE);
+ return D3D_OK;
+
+ case D3DXPC_SCALAR:
+ case D3DXPC_VECTOR:
+ case D3DXPC_OBJECT:
+ break;
+
+ default:
+ FIXME("Unhandled class %s.\n",
debug_d3dxparameter_class(param->class));
+ break;
+ }
+ }
+
+ WARN("Parameter not found.\n");
+
+ return D3DERR_INVALIDCALL;
}
static HRESULT WINAPI d3dx_effect_SetString(ID3DXEffect *iface, D3DXHANDLE parameter,
const char *string)
diff --git a/sdk/tools/winesync/d3dx9.cfg b/sdk/tools/winesync/d3dx9.cfg
index 5db3a1cffda..8aebd0ade9c 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: 29bf6988e3ae7451b46c3c73a4ba95b41c17dea0}
+tags: {wine: 95a8cfad14f1d87b9f7512f96c5c06edba04ca70}