Add my copyright to files I've modified.
[synfig.git] / synfig-core / trunk / src / modules / mod_geometry / rectangle.cpp
index 799a0f6..537f1ec 100644 (file)
@@ -6,6 +6,7 @@
 **
 **     \legal
 **     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2007 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
@@ -489,12 +490,6 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons
        right = std::min(w,right);
 */
 
-       Surface::alpha_pen pen;
-
-       // In the case where there is nothing to render...
-       if (right < left || bottom < top)
-               return true;
-
        // optimisation - if the whole tile is covered by this rectangle,
        // and the rectangle is a solid colour, we don't need to render
        // what's behind us
@@ -512,6 +507,12 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons
                return false;
        }
 
+       // In the case where there is nothing to render...
+       if (right < left || bottom < top)
+               return true;
+
+       Surface::alpha_pen pen;
+
        if(right-left>0&&bottom-top>0)
        {
                if(is_solid_color())