Module: wine Branch: master Commit: ef16100946e9870bfc8333195735e4ff49c13a94 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ef16100946e9870bfc8333195...
Author: Ziqing Hui zhui@codeweavers.com Date: Tue Apr 26 10:40:34 2022 +0800
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
---
include/d2d1effectauthor.idl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+)
diff --git a/include/d2d1effectauthor.idl b/include/d2d1effectauthor.idl index 8b7a024c025..9d64690b453 100644 --- a/include/d2d1effectauthor.idl +++ b/include/d2d1effectauthor.idl @@ -31,3 +31,20 @@ interface ID2D1VertexBuffer : IUnknown ); 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 + ); +}