[Libreoffice-commits] core.git: vcl/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Sat Sep 24 21:55:05 UTC 2016
vcl/source/opengl/OpenGLHelper.cxx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
New commits:
commit 1a4555f3b3572f398c33bffd1ed2a40705431733
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sat Sep 24 23:50:13 2016 +0200
fix the OpenGL selection logic
Now OpenGL is again not used on the build bots.
Change-Id: I7369394c44ab1e16135e2b22f7f8effca0f25d3c
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx
index c302d06..ac7f99e 100644
--- a/vcl/source/opengl/OpenGLHelper.cxx
+++ b/vcl/source/opengl/OpenGLHelper.cxx
@@ -1006,12 +1006,13 @@ bool OpenGLHelper::isVCLOpenGLEnabled()
bForceOpenGL = !!getenv("SAL_FORCEGL") || officecfg::Office::Common::VCL::ForceOpenGL::get();
bool bRet = false;
+ bool bSupportsVCLOpenGL = supportsVCLOpenGL();
// always call supportsVCLOpenGL to de-zombie the glxtest child process on X11
- if (supportsVCLOpenGL() || bForceOpenGL)
+ if (bForceOpenGL)
{
bRet = true;
}
- else
+ else if (bSupportsVCLOpenGL)
{
static bool bEnableGLEnv = !!getenv("SAL_ENABLEGL");
More information about the Libreoffice-commits
mailing list