X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fsrc%2Fmodules%2Fmod_geometry%2Frectangle.cpp;h=e9c40b7ecb0095536bffa4caa94841650f86683a;hb=4ba5e56251fa3f01fbb2dbd986a9e7e1f3181cf7;hp=48d9e9df4e50006438937ac0c2bfd711a541d4f3;hpb=e4fe3db7f742bfbe00108d949d73492088afb7f6;p=synfig.git diff --git a/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp b/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp index 48d9e9d..e9c40b7 100644 --- a/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp +++ b/synfig-core/trunk/src/modules/mod_geometry/rectangle.cpp @@ -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 @@ -421,7 +422,7 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons surface->blit_to(subimage_pen,left,top,right-left,bottom-top); } - // fill surface with the rectangle's colour + // fill surface with the rectangle's color Surface::alpha_pen surface_pen(surface->begin(),get_amount(),get_blend_method()); surface->fill(color,surface_pen,w,h); @@ -489,8 +490,8 @@ Rectangle::accelerated_render(Context context,Surface *surface,int quality, cons right = std::min(w,right); */ - // optimisation - if the whole tile is covered by this rectangle, - // and the rectangle is a solid colour, we don't need to render + // optimization - if the whole tile is covered by this rectangle, + // and the rectangle is a solid color, we don't need to render // what's behind us if (is_solid_color() && top == 0 && left == 0 && bottom == h && right == w) {