include: Add defines for ID2D1ResourceTexture.
Signed-off-by: Ziqing Hui <zhui@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2629c606bf
commit
ef16100946
|
@ -31,3 +31,20 @@ interface ID2D1VertexBuffer : IUnknown
|
||||||
);
|
);
|
||||||
HRESULT Unmap();
|
HRESULT Unmap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
object,
|
||||||
|
uuid(688d15c3-02b0-438d-b13a-d1b44c32c39a),
|
||||||
|
local,
|
||||||
|
]
|
||||||
|
interface ID2D1ResourceTexture : IUnknown
|
||||||
|
{
|
||||||
|
HRESULT Update(
|
||||||
|
[in] const UINT32 *min_extents,
|
||||||
|
[in] const UINT32 *max_extents,
|
||||||
|
[in] const UINT32 *strides,
|
||||||
|
[in] UINT32 dimensions,
|
||||||
|
[in] const BYTE *data,
|
||||||
|
[in] UINT32 data_size
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue