summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vcl/headless/svpgdi.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/vcl/headless/svpgdi.cxx b/vcl/headless/svpgdi.cxx
index c756c79ae60a..35bbcf656605 100644
--- a/vcl/headless/svpgdi.cxx
+++ b/vcl/headless/svpgdi.cxx
@@ -2168,7 +2168,12 @@ void SvpSalGraphics::drawBitmap(const SalTwoRect& rTR, const SalBitmap& rSourceB
return;
}
+#if 0 // LO code is not yet bitmap32-ready.
+ // See matching SvpSalInstance::GetBackendCapabilities
copyWithOperator(rTR, source, CAIRO_OPERATOR_OVER);
+#else
+ copyWithOperator(rTR, source, CAIRO_OPERATOR_SOURCE);
+#endif
}
void SvpSalGraphics::drawBitmap(const SalTwoRect& rTR, const BitmapBuffer* pBuffer, cairo_operator_t eOp)