MacOSX Performance

Bert Freudenberg bert at impara.de
Sat Jan 22 11:29:07 UTC 2005


Am 22.01.2005 um 03:42 schrieb Karsten Wolf:
>
> "SqVM-381b2 676.314 TiBook 887MHz"
> TimeProfileBrowser onBlock: [
> 	| b |
> 	b _ Pen new.
> 	Display fillWhite.
> 	b place:(Display boundingBox bottomLeft).
> 	b hilbert: 9 side: 2
> ]
>
> That's more than 11 minutes. Under OS9 this runs in 25 seconds.

Try this:

Display deferUpdatesIn: Display boundingBox while: [
	| b |
	b _ Pen new.
	Display fillWhite.
	b place:(Display boundingBox bottomLeft).
	b hilbert: 9 side: 2]

Takes 9 seconds on OSX, same machine as yours.

- Bert -




More information about the Squeak-dev mailing list