The Trunk: Graphics-tfel.325.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Graphics-tfel.325.mcz

commits-2
Tim Felgentreff uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-tfel.325.mcz

==================== Summary ====================

Name: Graphics-tfel.325
Author: tfel
Time: 17 February 2016, 5:50:23.974672 pm
UUID: 87ae2de9-859c-4479-bfda-2100b400adde
Ancestors: Graphics-mt.324

Move BitBlt simulation methods into VMMaker, they can only be used if VMMaker is loaded, anyway, and they do not have any senders (besides a duplicated test that is also in VMMaker)

=============== Diff against Graphics-mt.324 ===============

Item was removed:
- ----- Method: BitBlt>>copyBitsSimulated (in category 'copying') -----
- copyBitsSimulated
- ^Smalltalk at: #BitBltSimulation ifPresent:[:bb| bb copyBitsFrom: self].!

Item was removed:
- ----- Method: BitBlt>>copyBitsSimulated: (in category 'copying') -----
- copyBitsSimulated: alpha
- ^Smalltalk at: #BitBltSimulation ifPresent:[:bb| bb copyBitsFrom: self].!

Item was removed:
- ----- Method: WarpBlt>>warpBitsSimulated (in category 'system simulation') -----
- warpBitsSimulated
- "Simulate WarpBlt"
-
- cellSize < 1 ifTrue: [ ^self error: 'cellSize must be >= 1' ].
-
- self warpBitsSimulated: cellSize
- sourceMap: (sourceForm colormapIfNeededForDepth: 32).
- !

Item was removed:
- ----- Method: WarpBlt>>warpBitsSimulated:sourceMap: (in category 'system simulation') -----
- warpBitsSimulated: n sourceMap: sourceMap
- "Simulate WarpBlt"
- Smalltalk at: #BitBltSimulation ifPresent:[:bb| bb warpBitsFrom: self].!