d2d1: Add the ID2D1Brush interface.

oldstable
Henri Verbeet 2014-05-14 07:56:26 +02:00 committed by Alexandre Julliard
parent 2156e68a4c
commit eb4d5c7a25
1 changed files with 19 additions and 0 deletions

View File

@ -543,5 +543,24 @@ interface ID2D1Bitmap : ID2D1Image
);
}
[
local,
object,
uuid(2cd906a8-12e2-11dc-9fed-001143a055f9)
]
interface ID2D1Brush : ID2D1Resource
{
void SetOpacity(
[in] float opacity
);
void SetTransform(
[in] const D2D1_MATRIX_3X2_F *transform
);
float GetOpacity();
void GetTransform(
[out] D2D1_MATRIX_3X2_F *transform
);
}
[local] HRESULT __stdcall D2D1CreateFactory(D2D1_FACTORY_TYPE factory_type, REFIID iid,
const D2D1_FACTORY_OPTIONS *factory_options, void **factory);