d2d1: Add the ID2D1TransformedGeometry interface.
This commit is contained in:
parent
a7c259fa1a
commit
fb763bf361
|
@ -359,5 +359,20 @@ interface ID2D1GeometryGroup : ID2D1Geometry
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[
|
||||||
|
local,
|
||||||
|
object,
|
||||||
|
uuid(2cd906bb-12e2-11dc-9fed-001143a055f9)
|
||||||
|
]
|
||||||
|
interface ID2D1TransformedGeometry : ID2D1Geometry
|
||||||
|
{
|
||||||
|
void GetSourceGeometry(
|
||||||
|
[out] ID2D1Geometry **geometry
|
||||||
|
);
|
||||||
|
void GetTransform(
|
||||||
|
[out] D2D1_MATRIX_3X2_F *transform
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
[local] HRESULT __stdcall D2D1CreateFactory(D2D1_FACTORY_TYPE factory_type, REFIID iid,
|
[local] HRESULT __stdcall D2D1CreateFactory(D2D1_FACTORY_TYPE factory_type, REFIID iid,
|
||||||
const D2D1_FACTORY_OPTIONS *factory_options, void **factory);
|
const D2D1_FACTORY_OPTIONS *factory_options, void **factory);
|
||||||
|
|
Loading…
Reference in New Issue