]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/region.cpp
Give NULL explicit type to make interface recognizeable
[wxWidgets.git] / src / mgl / region.cpp
index 1211a7a954714fc7bbffc37ba49e3b2b0698c6b2..2604513a1eba60c5de1eedf5116e95dc3b14fd53 100644 (file)
@@ -102,6 +102,24 @@ wxRegion::wxRegion(const MGLRegion& region)
     M_REGION = region;
 }
 
+wxRegion::wxRegion(size_t n, const wxPoint *points, int WXUNUSED(fillStyle))
+{
+    m_refData = new wxRegionRefData;
+    point_t *pts = new point_t[n];
+
+    for (size_t i = 0; i < n; i++)
+    {
+        pts[i].x = points[i].x;
+        pts[i].y = points[i].y;
+    }
+
+    region_t* rgn = MGL_rgnPolygon(n, pts, 1, 0, 0);
+
+    M_REGION = rgn;
+
+    delete [] pts;
+}
+
 wxRegion::~wxRegion()
 {
     // m_refData unrefed in ~wxObject