d2d1: Use D3D11 interfaces in CopyFromMemory.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49395
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Rémi Bernon 2021-06-21 09:57:45 +02:00 committed by Alexandre Julliard
parent d00aece114
commit 6211eda12c
1 changed files with 8 additions and 5 deletions

View File

@ -152,8 +152,9 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromMemory(ID2D1Bitmap1 *iface,
const D2D1_RECT_U *dst_rect, const void *src_data, UINT32 pitch)
{
struct d2d_bitmap *bitmap = impl_from_ID2D1Bitmap1(iface);
ID3D10Device *device;
D3D10_BOX box;
ID3D11DeviceContext *context;
ID3D11Device *device;
D3D11_BOX box;
TRACE("iface %p, dst_rect %p, src_data %p, pitch %u.\n", iface, dst_rect, src_data, pitch);
@ -167,9 +168,11 @@ static HRESULT STDMETHODCALLTYPE d2d_bitmap_CopyFromMemory(ID2D1Bitmap1 *iface,
box.back = 1;
}
ID3D10Resource_GetDevice(bitmap->resource, &device);
ID3D10Device_UpdateSubresource(device, bitmap->resource, 0, dst_rect ? &box : NULL, src_data, pitch, 0);
ID3D10Device_Release(device);
ID3D11Resource_GetDevice(bitmap->d3d11_resource, &device);
ID3D11Device_GetImmediateContext(device, &context);
ID3D11DeviceContext_UpdateSubresource(context, bitmap->d3d11_resource, 0, dst_rect ? &box : NULL, src_data, pitch, 0);
ID3D11DeviceContext_Release(context);
ID3D11Device_Release(device);
return S_OK;
}