diff options
Diffstat (limited to 'skia/ext/platform_device.cc')
-rw-r--r-- | skia/ext/platform_device.cc | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/skia/ext/platform_device.cc b/skia/ext/platform_device.cc index 4bfde0f..9e1dde7 100644 --- a/skia/ext/platform_device.cc +++ b/skia/ext/platform_device.cc @@ -27,5 +27,12 @@ PlatformDevice* GetPlatformDevice(SkDevice* device) { return NULL; } -} // namespace skia +bool PlatformDevice::IsNativeFontRenderingAllowed() { + return true; +} +bool PlatformDevice::AlphaBlendUsed() const { + return false; +} + +} // namespace skia |