[Libreoffice-commits] core.git: vcl/headless

Luboš Luňák (via logerrit) logerrit at kemper.freedesktop.org
Tue Mar 23 09:59:23 UTC 2021


 vcl/headless/svpinst.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit cd09fc9451897e6efedbf9f5e1d5b9bd96e65cb5
Author:     Luboš Luňák <l.lunak at collabora.com>
AuthorDate: Mon Mar 22 19:06:15 2021 +0100
Commit:     Luboš Luňák <l.lunak at collabora.com>
CommitDate: Tue Mar 23 10:58:45 2021 +0100

    do not enable mbSupportsBitmap32 for headless (tdf#141171)
    
    As said e.g. in 994b8e52fc02c7468a24 and 84f84f59ce7c83a99e4e340071d,
    LO code is not yet fully ready for 32bit bitmaps and e.g. PDF export
    code mishandles it.
    
    Change-Id: Ib24a0edfc82785309915132a19bd6d25ee773066
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112936
    Tested-by: Jenkins
    Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>
    Reviewed-by: Luboš Luňák <l.lunak at collabora.com>

diff --git a/vcl/headless/svpinst.cxx b/vcl/headless/svpinst.cxx
index b5540301f21c..954f6539d2e6 100644
--- a/vcl/headless/svpinst.cxx
+++ b/vcl/headless/svpinst.cxx
@@ -594,9 +594,11 @@ void SvpSalInstance::AddToRecentDocumentList(const OUString&, const OUString&, c
 std::shared_ptr<vcl::BackendCapabilities> SvpSalInstance::GetBackendCapabilities()
 {
     auto pBackendCapabilities = SalInstance::GetBackendCapabilities();
+#if 0 // LO code is not yet bitmap32-ready.
 #ifndef IOS
     // Note: This code is used for iOS, too. Let's not use 32-bit bitmaps with included alpha on iOS for now.
     pBackendCapabilities->mbSupportsBitmap32 = true;
+#endif
 #endif
     return pBackendCapabilities;
 }


More information about the Libreoffice-commits mailing list