summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-09 15:10:49 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-09 15:22:40 +0300
commit29885b40df490196a9a74fea1d3b69300619e90b (patch)
tree3d063048757e1d03183b2fbd43e4a3a3c789ae0d /unotools
parent39253f9aafd1668bef7fa19a6717b7d8bb749fb3 (diff)
Revert special-casing tiled rendering here
It seems to do more harm than good. Using the default avoids some yet not found bug in vcl (or somewhere) and fixes the rendering of some complex SmartArt test documents. (As long as the use of delayed rendering for "graphics" in svx is also disabled.) Change-Id: I0ed4b25278101bdd995ce90e8fb65f65ca644ebe
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/fltrcfg.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/unotools/source/config/fltrcfg.cxx b/unotools/source/config/fltrcfg.cxx
index dc8dbbdd21e3..6c2c473da3ec 100644
--- a/unotools/source/config/fltrcfg.cxx
+++ b/unotools/source/config/fltrcfg.cxx
@@ -584,24 +584,8 @@ void SvtFilterOptions::SetImpress2PowerPoint( bool bFlag )
SetModified();
}
-static bool lcl_DoTiledRendering()
-{
-#if !HAVE_FEATURE_DESKTOP
- // We do tiled rendering only for iOS at the moment, actually, but
- // let's see what happens if we assume it for Android, too.
- return true;
-#else
- // We need some way to know globally if this process will use
- // tiled rendering or not. Or should this be a per-window setting?
- // Or what?
- return false;
-#endif
-}
-
bool SvtFilterOptions::IsSmartArt2Shape() const
{
- if (lcl_DoTiledRendering())
- return true;
return pImp->IsFlag( FILTERCFG_SMARTART_SHAPE_LOAD );
}