From baed91bab05546f7f5233701bd7aaed44f25a364 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Mon, 23 Aug 2021 18:45:12 +0200 Subject: implement explicit screen flushing also for Skia/Mac MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I29b9f54d24aece32949ac3ba916f1d6588cfd85f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120910 Tested-by: Jenkins Reviewed-by: Luboš Luňák --- vcl/quartz/salgdi.cxx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'vcl/quartz') diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx index 1480c0fda6ab..358ae3881983 100644 --- a/vcl/quartz/salgdi.cxx +++ b/vcl/quartz/salgdi.cxx @@ -780,6 +780,16 @@ void AquaSalGraphics::FreeEmbedFontData( const void* pData, tools::Long /*nDataL SAL_WARN_IF( (pData==nullptr), "vcl", "AquaSalGraphics::FreeEmbedFontData() is not implemented"); } +void AquaSalGraphics::Flush() +{ + mpBackend->Flush(); +} + +void AquaSalGraphics::Flush( const tools::Rectangle& rRect ) +{ + mpBackend->Flush( rRect ); +} + #ifdef IOS bool AquaSharedAttributes::checkContext() -- cgit