[PATCH 2/4] ddraw: Update the primary stateblock in d3d_device7_MultiplyTransform(). (original) (raw)
Zebediah Figura z.figura12 at gmail.com
Tue Dec 3 22:23:23 CST 2019
- Previous message (by thread): [PATCH 1/4] wined3d: Introduce wined3d_stateblock_multiply_transform().
- Next message (by thread): [PATCH 2/4] ddraw: Update the primary stateblock in d3d_device7_MultiplyTransform().
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
dlls/ddraw/device.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/ddraw/device.c b/dlls/ddraw/device.c index d4dd74f8ae3..0999c01cb2d 100644 --- a/dlls/ddraw/device.c +++ b/dlls/ddraw/device.c @@ -3349,6 +3349,8 @@ static HRESULT d3d_device7_MultiplyTransform(IDirect3DDevice7 iface, / Note: D3DMATRIX is compatible with struct wined3d_matrix. */ wined3d_mutex_lock(); + wined3d_stateblock_multiply_transform(device->state, + wined3d_state, (struct wined3d_matrix *)matrix); wined3d_device_multiply_transform(device->wined3d_device, wined3d_state, (struct wined3d_matrix *)matrix); wined3d_mutex_unlock();
2.23.0
- Previous message (by thread): [PATCH 1/4] wined3d: Introduce wined3d_stateblock_multiply_transform().
- Next message (by thread): [PATCH 2/4] ddraw: Update the primary stateblock in d3d_device7_MultiplyTransform().
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]