The Inbox: Graphics-ct.412.mcz

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

The Inbox: Graphics-ct.412.mcz

commits-2
A new version of Graphics was added to project The Inbox:
http://source.squeak.org/inbox/Graphics-ct.412.mcz

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

Name: Graphics-ct.412
Author: ct
Time: 9 September 2019, 4:48:55.947903 pm
UUID: 21d5e2ab-2c2b-ff44-ba1d-d53788673c81
Ancestors: Graphics-mt.410

Fix a bug in ColorForm conversion

Override #collectColors:, as ColorMap has its own data format which is not compatible to Form.

=============== Diff against Graphics-mt.410 ===============

Item was added:
+ ----- Method: ColorForm>>collectColors: (in category 'converting') -----
+ collectColors: aBlock
+
+ ^ (ColorForm extent: self extent depth: self depth bits: self bits)
+ colors: (self colors collect: aBlock);
+ yourself!