vcl/skia/gdiimpl.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f805f98f3ee52be752da7ddc33bd757a6dbe70cb
Author:     Patrick Luby <guibomac...@gmail.com>
AuthorDate: Mon Jul 7 02:11:32 2025 +0200
Commit:     Patrick Luby <guibomac...@gmail.com>
CommitDate: Tue Jul 8 19:42:38 2025 +0200

    Revert "tdf#167059 Revert remaining use of POST_PAINT priority for Skia 
paint timer"
    
    This reverts commit ad59ecf37f847295e99069281d94518f5afedf90.
    
    Reason for revert: Only the first block of the original patch was needed. I 
will submit a new patch after this patch is committed so that the new patch can 
be backported.
    
    Change-Id: I86de4587eab4abdba0827d6a9c61be81ddb68cd1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187453
    Tested-by: Jenkins
    Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com>
    Reviewed-by: Patrick Luby <guibomac...@gmail.com>

diff --git a/vcl/skia/gdiimpl.cxx b/vcl/skia/gdiimpl.cxx
index f02077af9a23..c9cd674ad9c5 100644
--- a/vcl/skia/gdiimpl.cxx
+++ b/vcl/skia/gdiimpl.cxx
@@ -251,7 +251,7 @@ public:
         SetPriority(TaskPriority::SKIA_FLUSH);
 #else
         // We don't want to be swapping before we've painted.
-        SetPriority(TaskPriority::HIGHEST);
+        SetPriority(TaskPriority::POST_PAINT);
 #endif
     }
 #ifndef NDEBUG
@@ -328,7 +328,7 @@ void SkiaSalGraphicsImpl::createSurface()
     // tasks on macOS
     mFlush->SetPriority(TaskPriority::SKIA_FLUSH);
 #else
-    mFlush->SetPriority(TaskPriority::HIGHEST);
+    mFlush->SetPriority(TaskPriority::POST_PAINT);
 #endif
 }
 

Reply via email to