X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fstable%2Fsrc%2Fmodules%2Fmod_filter%2Fblur.cpp;h=e5104b01e98222e7458dfe225cc3b6ebefd8c63d;hb=47fce282611fbba1044921d22ca887f9b53ad91a;hp=3f22b9c2cb936a71049dccb0edfcb14bff82c548;hpb=684cf1db661a9a5cbc142238cf05d6d2f7aa3f89;p=synfig.git diff --git a/synfig-core/tags/stable/src/modules/mod_filter/blur.cpp b/synfig-core/tags/stable/src/modules/mod_filter/blur.cpp index 3f22b9c..e5104b0 100644 --- a/synfig-core/tags/stable/src/modules/mod_filter/blur.cpp +++ b/synfig-core/tags/stable/src/modules/mod_filter/blur.cpp @@ -1,11 +1,12 @@ /* === S Y N F I G ========================================================= */ /*! \file mod_filter/blur.cpp -** \brief Template Header +** \brief Implementation of the "Blur" layer ** ** $Id$ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2008 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -63,8 +64,8 @@ using namespace std; SYNFIG_LAYER_INIT(Blur_Layer); SYNFIG_LAYER_SET_NAME(Blur_Layer,"blur"); -SYNFIG_LAYER_SET_LOCAL_NAME(Blur_Layer,_("Blur")); -SYNFIG_LAYER_SET_CATEGORY(Blur_Layer,_("Blurs")); +SYNFIG_LAYER_SET_LOCAL_NAME(Blur_Layer,N_("Blur")); +SYNFIG_LAYER_SET_CATEGORY(Blur_Layer,N_("Blurs")); SYNFIG_LAYER_SET_VERSION(Blur_Layer,"0.2"); SYNFIG_LAYER_SET_CVS_ID(Blur_Layer,"$Id$"); @@ -121,6 +122,10 @@ Blur_Layer::get_color(Context context, const Point &pos)const bool Blur_Layer::accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const { + // don't do anything at quality 10 + if (quality == 10) + return context.accelerated_render(surface,quality,renddesc,cb); + // int x,y; SuperCallback stageone(cb,0,5000,10000); SuperCallback stagetwo(cb,5000,10000,10000);