]> git.saurik.com Git - wxWidgets.git/commitdiff
sorry previous commit message was wrong, should read
authorStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Mar 2003 15:35:52 +0000 (15:35 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Mon, 3 Mar 2003 15:35:52 +0000 (15:35 +0000)
added shrink procedure with proper color averaging, it is triggered from scale in case the old with/height are multiples of the new width/height

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19451 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/image.cpp

index 5e6a3df8c2f6cf3497547a19c62e240cf3226976..17d1b9643bbab660c14231ed7c45a92e9d90dfa2 100644 (file)
@@ -258,7 +258,6 @@ wxImage wxImage::ShrinkBy( int xFactor , int yFactor ) const
     
     for (long y = 0; y < height; y++)
     {
     
     for (long y = 0; y < height; y++)
     {
         for (long x = 0; x < width; x++)
         {
             unsigned long avgRed = 0 ;
         for (long x = 0; x < width; x++)
         {
             unsigned long avgRed = 0 ;