Henri Verbeet : d2d1: Add the ID2D1GeometryGroup interface.

Alexandre Julliard julliard at winehq.org
Tue May 13 14:23:46 CDT 2014


Module: wine
Branch: master
Commit: a7c259fa1a8c4fa91c699e85813f8ba96dc3e4bf
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a7c259fa1a8c4fa91c699e85813f8ba96dc3e4bf

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Tue May 13 09:41:11 2014 +0200

d2d1: Add the ID2D1GeometryGroup interface.

---

 include/d2d1.idl |   15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/include/d2d1.idl b/include/d2d1.idl
index 4860cf5..092c1cc 100644
--- a/include/d2d1.idl
+++ b/include/d2d1.idl
@@ -344,5 +344,20 @@ interface ID2D1EllipseGeometry : ID2D1Geometry
     );
 }
 
+[
+    local,
+    object,
+    uuid(2cd906a6-12e2-11dc-9fed-001143a055f9)
+]
+interface ID2D1GeometryGroup : ID2D1Geometry
+{
+    D2D1_FILL_MODE GetFillMode();
+    UINT32 GetSourceGeometryCount();
+    void GetSourceGeometries(
+        [out, size_is(geometry_count)] ID2D1Geometry **geometry,
+        [in] UINT32 geometry_count
+    );
+}
+
 [local] HRESULT __stdcall D2D1CreateFactory(D2D1_FACTORY_TYPE factory_type, REFIID iid,
         const D2D1_FACTORY_OPTIONS *factory_options, void **factory);




More information about the wine-cvs mailing list