Hilaire Fernandes wrote:
Le 06/06/2014 19:34, Ben Coman a écrit :

  
So I'm just just curious what might happen if somewhere under the
WorldState>>doOneCycleFor: call stack you might store the time "now",
only do a high cost render every 100ms.
    
Can you rephrase I don't understand?

Thanks

Hilaire


  
I was referring to
	 30.2% {8564ms} DrGDrawable(Morph)>>fullDrawOnAthensCanvas:

Perhaps the total accumulation of time includes how often the code is run.
Just as an experiment, wrap the current method something like...
    now := DateAndTime now.
    lasttime ifNil: [ lasttime = 0].
    (now > lasttime + "100ms") ifTrue: [ "do original method" ]

Now the display might flash horribly, but you may be able to observe an effect on responsiveness, and different profile output as a step to fixing. 

cheers -ben

Reply via email to