summaryrefslogtreecommitdiffstats
path: root/src/display
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2019-01-19 10:25:52 +0000
committerTavmjong Bah <tavmjong@free.fr>2019-01-19 10:25:52 +0000
commitdcb7403bc18ced055766ef1acbe4d0c8d34a9451 (patch)
tree71ca2b59ac46ae3447884214fb98b955e236f814 /src/display
parentMerge branch 'master' of gitlab.com:EwoutH1/inkscape (diff)
downloadinkscape-dcb7403bc18ced055766ef1acbe4d0c8d34a9451.tar.gz
inkscape-dcb7403bc18ced055766ef1acbe4d0c8d34a9451.zip
Remove debugging statements from displacemnet filter rendering code.
Diffstat (limited to 'src/display')
-rw-r--r--src/display/nr-filter-displacement-map.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/display/nr-filter-displacement-map.cpp b/src/display/nr-filter-displacement-map.cpp
index a72e60db5..9d83e5417 100644
--- a/src/display/nr-filter-displacement-map.cpp
+++ b/src/display/nr-filter-displacement-map.cpp
@@ -72,17 +72,12 @@ private:
void FilterDisplacementMap::render_cairo(FilterSlot &slot)
{
- std::cout << "FilterDisplacementMap:" << std::endl;
cairo_surface_t *texture = slot.getcairo(_input);
cairo_surface_t *map = slot.getcairo(_input2);
cairo_surface_t *out = ink_cairo_surface_create_identical(texture);
// color_interpolation_filters for out same as texture. See spec.
copy_cairo_surface_ci( texture, out );
- std::cout << " texture: " << cairo_image_surface_get_width(texture) << std::endl;
- std::cout << " map: " << cairo_image_surface_get_width(map) << std::endl;
- std::cout << " out: " << cairo_image_surface_get_width(out) << std::endl;
-
// We may need to transform map surface to correct color interpolation space. The map surface
// might be used as input to another primitive but it is likely that all the primitives in a given
// filter use the same color interpolation space so we don't copy the map before converting.