Added copyright lines for files I've edited this year.
[synfig.git] / synfig-core / trunk / src / modules / lyr_std / shade.cpp
index 5fc7b2c..651432d 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \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
@@ -90,7 +91,9 @@ Layer_Shade::set_param(const String &param, const ValueBase &value)
 {
        IMPORT_PLUS(size,clamp(size));
        IMPORT(type);
-       IMPORT(color);
+       IMPORT_PLUS(color, { if (color.get_a() == 0) { if (converted_blend_) {
+                                       set_blend_method(Color::BLEND_ALPHA_OVER);
+                                       color.set_a(1); } else transparent_color_ = true; } });
        IMPORT(offset);
        IMPORT(invert);
 
@@ -161,14 +164,12 @@ Layer_Shade::accelerated_render(Context context,Surface *surface,int quality, co
                (offset_v>0?offset_v:0)+h
        );
 
-       /*
-       if(quality >=10)
+       if(quality >= 10)
        {
                halfsizex=1;
                halfsizey=1;
-       }else
-       */
-       if(quality == 9)
+       }
+       else if (quality == 9)
        {
                halfsizex/=4;
                halfsizey/=4;