From 05b4ea495581b62807d67a95d08bbb9f33083bb9 Mon Sep 17 00:00:00 2001 From: Blake Thompson Date: Wed, 20 May 2015 13:14:44 -0500 Subject: [PATCH] Removed multiply_opacity --- src/image_util.cpp | 77 +--------------------------------------------- 1 file changed, 1 insertion(+), 76 deletions(-) diff --git a/src/image_util.cpp b/src/image_util.cpp index 5de34316e..0f3951ab3 100644 --- a/src/image_util.cpp +++ b/src/image_util.cpp @@ -660,7 +660,7 @@ struct visitor_apply_opacity template void operator() (T & data) const { - throw std::runtime_error("Error: set_opacity with " + std::string(typeid(data).name()) + " is not supported"); + throw std::runtime_error("Error: apply_opacity with " + std::string(typeid(data).name()) + " is not supported"); } private: @@ -707,81 +707,6 @@ template MAPNIK_DECL void apply_opacity(image_gray64f &, float); namespace detail { -struct visitor_multiply_opacity -{ - visitor_multiply_opacity(float multiplier) - : multiplier_(multiplier) {} - - void operator() (image_rgba8 & data) const - { - using pixel_type = image_rgba8::pixel_type; - for (std::size_t y = 0; y < data.height(); ++y) - { - pixel_type* row_to = data.get_row(y); - for (std::size_t x = 0; x < data.width(); ++x) - { - pixel_type rgba = row_to[x]; - double new_a = static_cast((rgba >> 24) & 0xff) * multiplier_; - pixel_type a = static_cast(clamp(new_a, 0.0, 255.0)); - pixel_type r = rgba & 0xff; - pixel_type g = (rgba >> 8 ) & 0xff; - pixel_type b = (rgba >> 16) & 0xff; - row_to[x] = (a << 24) | (b << 16) | (g << 8) | (r); - } - } - } - - template - void operator() (T & data) const - { - throw std::runtime_error("Error: multiply_opacity with " + std::string(typeid(data).name()) + " is not supported"); - } - -private: - float const multiplier_; - -}; - -} // end detail ns - -MAPNIK_DECL void multiply_opacity(image_any & data, float multiplier) -{ - // Prior to calling the data must not be premultiplied - bool remultiply = mapnik::demultiply_alpha(data); - util::apply_visitor(detail::visitor_multiply_opacity(multiplier), data); - if (remultiply) - { - mapnik::premultiply_alpha(data); - } -} - -template -MAPNIK_DECL void multiply_opacity(T & data, float multiplier) -{ - // Prior to calling the data must not be premultiplied - bool remultiply = mapnik::demultiply_alpha(data); - detail::visitor_multiply_opacity visit(multiplier); - visit(data); - if (remultiply) - { - mapnik::premultiply_alpha(data); - } -} - -template MAPNIK_DECL void multiply_opacity(image_rgba8 &, float); -template MAPNIK_DECL void multiply_opacity(image_gray8 &, float); -template MAPNIK_DECL void multiply_opacity(image_gray8s &, float); -template MAPNIK_DECL void multiply_opacity(image_gray16 &, float); -template MAPNIK_DECL void multiply_opacity(image_gray16s &, float); -template MAPNIK_DECL void multiply_opacity(image_gray32 &, float); -template MAPNIK_DECL void multiply_opacity(image_gray32s &, float); -template MAPNIK_DECL void multiply_opacity(image_gray32f &, float); -template MAPNIK_DECL void multiply_opacity(image_gray64 &, float); -template MAPNIK_DECL void multiply_opacity(image_gray64s &, float); -template MAPNIK_DECL void multiply_opacity(image_gray64f &, float); - -namespace detail { - struct visitor_set_grayscale_to_alpha { void operator() (image_rgba8 & data) const