From 175c2996662ba05b1dd7fd46178ed4d671b6e155 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 24 Sep 2014 02:03:50 +0000 Subject: [PATCH] Add cairo_image_surface_get_[width|height] to the wxCairo dynamic importer git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77875 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/cairo.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/cairo.cpp b/src/common/cairo.cpp index 330e5b2aa1..ed057500f1 100644 --- a/src/common/cairo.cpp +++ b/src/common/cairo.cpp @@ -214,6 +214,10 @@ (cairo_format_t format, int width), (format, width), 0) \ m( int, cairo_version, \ (), (), 0) \ + m( int, cairo_image_surface_get_width, \ + (cairo_surface_t *surface), (surface), 0) \ + m( int, cairo_image_surface_get_height, \ + (cairo_surface_t *surface), (surface), 0) \ m( int, cairo_image_surface_get_stride, \ (cairo_surface_t *surface), (surface), 0) \ m( unsigned char *, cairo_image_surface_get_data, \