#REFACTORING
authorClaus Gittinger <cg@exept.de>
Wed, 23 Mar 2016 14:34:53 +0100
changeset 7224 52cef22632db
parent 7222 77eae07d014e
child 7225 0b34f9bae937
#REFACTORING class: Image changed: #from:in: (send #unsignedInt32At:MSB: instead of #doubleWordAt:MSB:)
Image.st
--- a/Image.st	Thu Mar 17 16:19:09 2016 +0100
+++ b/Image.st	Wed Mar 23 14:34:53 2016 +0100
@@ -14467,7 +14467,7 @@
                     dstIndex := dstRow.
 
                     1 to:w do:[:wi |
-                        lword := tmpData doubleWordAt:srcIndex MSB:isMSB.
+                        lword := tmpData unsignedInt32At:srcIndex MSB:isMSB.
                         r := (lword bitShift:shR) bitAnd:maskR.
                         g := (lword bitShift:shG) bitAnd:maskG.
                         b := (lword bitShift:shB) bitAnd:maskB.