summaryrefslogtreecommitdiffstats
path: root/drawinglayer/source
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-06-21 16:01:51 +0200
committerCaolán McNamara <caolanm@redhat.com>2019-06-21 20:15:56 +0200
commit945455c0af44bebe8ca0b111bf6664450192f919 (patch)
tree1e4f6d0359b42a2a8644e26eb90247f343a521c1 /drawinglayer/source
parentsearch dialog is welded (diff)
downloadcore-945455c0af44bebe8ca0b111bf6664450192f919.tar.gz
core-945455c0af44bebe8ca0b111bf6664450192f919.zip
drawinglayer: disable multi-threaded rendering in sceneprimitive2d
It seems this is not stable yet: - https://dev-builds.libreoffice.org/crashtest/27e3ed0d25735603d2c82744e3a8f5f3e0a8d043/backtraces/task395-core.16181.backtrace.txt - https://ci.libreoffice.org/job/gerrit_linux_gcc_release/35032/console Go back to disabling that by default for now. Change-Id: I6cd870d2661bfb99b8ed5008c2542fede05ae8c8 Reviewed-on: https://gerrit.libreoffice.org/74523 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'drawinglayer/source')
-rw-r--r--drawinglayer/source/primitive2d/sceneprimitive2d.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
index b747e8e6a759..6d9dd7a9c8c2 100644
--- a/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
+++ b/drawinglayer/source/primitive2d/sceneprimitive2d.cxx
@@ -372,7 +372,7 @@ namespace drawinglayer
nOversampleValue ? nRasterHeight * nOversampleValue : nRasterHeight);
// check for parallel execution possibilities
- static bool bMultithreadAllowed = true; // loplugin:constvars:ignore
+ static bool bMultithreadAllowed = false; // loplugin:constvars:ignore
sal_Int32 nThreadCount(0);
comphelper::ThreadPool& rThreadPool(comphelper::ThreadPool::getSharedOptimalPool());