diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-09-20 14:45:36 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-11-27 09:55:05 +0100 |
commit | 886e5d2701c8d1f08c612eb3f093027fc590c508 (patch) | |
tree | e9d8d47e441e78ebedda2bbc45e648f69f2c6b56 /vcl/source/outdev | |
parent | 1e9fae677579b59ddbc4cd69e201b95f51b8c742 (diff) |
basic functional implementation of Skia SalBmp
Not complete but can pass basic tests.
Change-Id: I8e81c44554663a99cd4b262e37f4841ba0687cf1
Diffstat (limited to 'vcl/source/outdev')
-rw-r--r-- | vcl/source/outdev/bitmap.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/outdev/bitmap.cxx b/vcl/source/outdev/bitmap.cxx index de677fcdce66..0bce168579cc 100644 --- a/vcl/source/outdev/bitmap.cxx +++ b/vcl/source/outdev/bitmap.cxx @@ -690,7 +690,9 @@ void OutputDevice::DrawDeviceAlphaBitmap( const Bitmap& rBmp, const AlphaMask& r #if HAVE_FEATURE_OPENGL assert(!OpenGLHelper::isVCLOpenGLEnabled()); #endif +#if HAVE_FEATURE_SKIA assert(!SkiaHelper::isVCLSkiaEnabled()); +#endif tools::Rectangle aBmpRect(Point(), rBmp.GetSizePixel()); if (!aBmpRect.Intersection(tools::Rectangle(rSrcPtPixel, rSrcSizePixel)).IsEmpty()) { |