summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2016-04-13 15:02:57 +0000
committertavmjong-free <tavmjong@free.fr>2016-04-13 15:02:57 +0000
commitf5a95a0c8e4080b59d43cdcdcc1ea6b717f3d3f3 (patch)
tree461ca0178149bbc2dbe0330eb1920ed0e24a8be2 /src
parentFix a few more pick calls not preceded by update (diff)
downloadinkscape-f5a95a0c8e4080b59d43cdcdcc1ea6b717f3d3f3.tar.gz
inkscape-f5a95a0c8e4080b59d43cdcdcc1ea6b717f3d3f3.zip
Remove no longer needed warning about feTile rendering.
(bzr r14835)
Diffstat (limited to 'src')
-rw-r--r--src/display/nr-filter-tile.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/display/nr-filter-tile.cpp b/src/display/nr-filter-tile.cpp
index 7172f88ee..c151c8537 100644
--- a/src/display/nr-filter-tile.cpp
+++ b/src/display/nr-filter-tile.cpp
@@ -32,18 +32,6 @@ FilterTile::~FilterTile()
void FilterTile::render_cairo(FilterSlot &slot)
{
- // FIX ME!
- static bool tile_warning = false;
- if (!tile_warning) {
- g_warning("Renderer for feTile has non-optimal implementation, expect slowness and bugs.");
- tile_warning = true;
- }
-
- // Fixing isn't so easy as the Inkscape renderer breaks the canvas into "rendering" tiles for
- // faster rendering. (The "rendering" tiles are not the same as the tiles in this primitive.)
- // Only if the the feTile tile source falls inside the current "rendering" tile will the tile
- // image be available.
-
// This input source contains only the "rendering" tile.
cairo_surface_t *in = slot.getcairo(_input);