summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2020-07-12 13:13:30 +0300
committerTor Lillqvist <tml@collabora.com>2020-07-12 12:39:16 +0200
commit619cf1b304e19ed3a38bf466797f590f32b07310 (patch)
tree65c68c64b483c98e01502a9d8ec2a5cc4bcc967a /common
parent0749bc439840020f5d1ecb4fd078fd7b8560ba2d (diff)
Bin DeltaGenerator-using code that has been commented out since 2017
"Disable for now - pushed in error" says the comment added in e11794da2551639e52d9f94867f6f35bae40a6c4. Change-Id: Ia2b72bfe20f8ff16d74d1966d511c74eab3e4417 Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98587 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com> Reviewed-by: Tor Lillqvist <tml@collabora.com>
Diffstat (limited to 'common')
-rw-r--r--common/RenderTiles.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/common/RenderTiles.hpp b/common/RenderTiles.hpp
index 4c5ede5cd..bcde5afee 100644
--- a/common/RenderTiles.hpp
+++ b/common/RenderTiles.hpp
@@ -74,7 +74,6 @@ private:
size_t _cacheHits;
size_t _cacheTests;
TileWireId _nextId;
- DeltaGenerator _deltaGen;
std::unordered_map< TileBinaryHash, CacheEntry > _cache;
// This uses little storage so can be much larger
@@ -505,15 +504,6 @@ namespace RenderTiles
PngCache::CacheData data(new std::vector< char >() );
data->reserve(pixmapWidth * pixmapHeight * 1);
- /*
- * Disable for now - pushed in error.
- *
- if (_deltaGen.createDelta(pixmap, startX, startY, width, height,
- bufferWidth, bufferHeight,
- output, wid, oldWid))
- else ...
- */
-
LOG_DBG("Encode a new png for tile #" << tileIndex);
if (!Png::encodeSubBufferToPNG(pixmap.data(), offsetX, offsetY, pixelWidth, pixelHeight,
pixmapWidth, pixmapHeight, *data, mode))