Henri Verbeet : d2d1: Add the ID2D1PathGeometry interface.

Alexandre Julliard julliard at winehq.org
Wed May 14 15:39:06 CDT 2014


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

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Wed May 14 07:56:22 2014 +0200

d2d1: Add the ID2D1PathGeometry interface.

---

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

diff --git a/include/d2d1.idl b/include/d2d1.idl
index bfed202..c6b9288 100644
--- a/include/d2d1.idl
+++ b/include/d2d1.idl
@@ -429,5 +429,26 @@ interface ID2D1GeometrySink : ID2D1SimplifiedGeometrySink
     );
 }
 
+[
+    local,
+    object,
+    uuid(2cd906a5-12e2-11dc-9fed-001143a055f9)
+]
+interface ID2D1PathGeometry : ID2D1Geometry
+{
+    HRESULT Open(
+        [out] ID2D1GeometrySink **sink
+    );
+    HRESULT Stream(
+        [in] ID2D1GeometrySink *sink
+    );
+    HRESULT GetSegmentCount(
+        [out] UINT32 *count
+    );
+    HRESULT GetFigureCount(
+        [out] UINT32 *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