diff options
Diffstat (limited to 'skia/ext/platform_device_linux.cc')
-rw-r--r-- | skia/ext/platform_device_linux.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/skia/ext/platform_device_linux.cc b/skia/ext/platform_device_linux.cc index c8ea48e..b943120 100644 --- a/skia/ext/platform_device_linux.cc +++ b/skia/ext/platform_device_linux.cc @@ -11,7 +11,11 @@ PlatformDevice::PlatformDevice(const SkBitmap& bitmap) } bool PlatformDevice::IsNativeFontRenderingAllowed() { - return true; + return true; +} + +void PlatformDevice::EndPlatformPaint() { + // We don't need to do anything on Linux here. } } // namespace skia |