[Libreoffice-commits] core.git: vcl/skia
LuboÅ¡ LuÅák (via logerrit)
logerrit at kemper.freedesktop.org
Tue May 26 14:51:15 UTC 2020
vcl/skia/SkiaHelper.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit a65cba8e5bafb183924c1a8ff34382c99f1381cc
Author: Luboš Luňák <l.lunak at collabora.com>
AuthorDate: Tue May 26 14:37:24 2020 +0200
Commit: Luboš Luňák <l.lunak at collabora.com>
CommitDate: Tue May 26 16:50:41 2020 +0200
make disabling of Skia override forcing it (tdf#133399)
Makes more sense if it's disabled because the VCL backend doesn't
actually support Skia.
Change-Id: I3f14c6ae1172c0a2cba3bf19c4cb5288e214eb2d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94861
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak at collabora.com>
diff --git a/vcl/skia/SkiaHelper.cxx b/vcl/skia/SkiaHelper.cxx
index 3331cb7cb2b4..5fec448830c7 100644
--- a/vcl/skia/SkiaHelper.cxx
+++ b/vcl/skia/SkiaHelper.cxx
@@ -232,8 +232,8 @@ bool isVCLSkiaEnabled()
/*
* There are a number of cases that these environment variables cover:
- * * SAL_FORCESKIA forces Skia independent of any other option
- * * SAL_DISABLESKIA avoids the use of Skia if SAL_FORCESKIA is not set
+ * * SAL_FORCESKIA forces Skia if disabled by UI options or blacklisted
+ * * SAL_DISABLESKIA avoids the use of Skia regardless of any option
*/
bSet = true;
@@ -241,7 +241,7 @@ bool isVCLSkiaEnabled()
bool bRet = false;
bool bSupportsVCLSkia = supportsVCLSkia();
- if (bForceSkia)
+ if (bForceSkia && bSupportsVCLSkia)
{
bRet = true;
// don't actually block if blacklisted, but log it if enabled, and also get the vendor id
More information about the Libreoffice-commits
mailing list