diff options
Diffstat (limited to 'skia/ext/platform_canvas.h')
-rw-r--r-- | skia/ext/platform_canvas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skia/ext/platform_canvas.h b/skia/ext/platform_canvas.h index 49d0e21..528fd1a 100644 --- a/skia/ext/platform_canvas.h +++ b/skia/ext/platform_canvas.h @@ -69,8 +69,8 @@ class SK_API PlatformCanvas : public SkCanvas { // Call endPlatformPaint when you are done and want to use Skia operations // after calling the platform-specific beginPlatformPaint; this will // synchronize the bitmap to OS if necessary. - PlatformDevice::PlatformSurface beginPlatformPaint(); - void endPlatformPaint(); + PlatformDevice::PlatformSurface beginPlatformPaint() const; + void endPlatformPaint() const; // Returns the platform device pointer of the topmost rect with a non-empty // clip. In practice, this is usually either the top layer or nothing, since |