Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-11-02 Thread David M. Cotter
okay what i really want to know is: how does QuartzDebug programmatically turn on this flash region thing? ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-11-02 Thread Sean McBride
On 11/2/09 2:08 PM, David M. Cotter said: okay what i really want to know is: how does QuartzDebug programmatically turn on this flash region thing? Presumably by using non-public APIs. At this point, you might find that the people on quartz-dev would have a better answer:

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-31 Thread David M. Cotter
hmm, that seems to be what i'm looking for, except i want to flash only once, and i want to be able to turn it on and off during the time the app is already launched. any ideas about that? if not, perhaps i need to use the -getRectsBeingDrawn:count: method and do it myself On Oct 30,

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-31 Thread Kyle Sluder
On Sat, Oct 31, 2009 at 10:55 AM, David M. Cotter m...@davecotter.com wrote: hmm, that seems to be what i'm looking for, except i want to flash only once, and i want to be able to turn it on and off during the time the app is already launched.  any ideas about that? if not, perhaps i need to

64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-30 Thread David M. Cotter
anyone have some sample code for a function that does the equivalent of HIViewFlashDirtyArea() ? i'd like to have this i the debug version of my program to help flush out inefficient invalidating. or: how do i fetch the invalid region of an NSWindow* ?

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-30 Thread Graham Cox
On 31/10/2009, at 12:04 PM, David M. Cotter wrote: or: how do i fetch the invalid region of an NSWindow* ? -getRectsBeingDrawn:count: --Graham ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-30 Thread Sean McBride
David M. Cotter (m...@davecotter.com) on 2009-10-30 9:04 PM said: anyone have some sample code for a function that does the equivalent of HIViewFlashDirtyArea() ? i'd like to have this i the debug version of my program to help flush out inefficient invalidating. or: how do i fetch the invalid

Re: 64 bit cocoa version of HIViewFlashDirtyArea() ?

2009-10-30 Thread Ben Haller
On 30-Oct-09, at 9:17 PM, Sean McBride wrote: David M. Cotter (m...@davecotter.com) on 2009-10-30 9:04 PM said: anyone have some sample code for a function that does the equivalent of HIViewFlashDirtyArea() ? i'd like to have this i the debug version of my program to help flush out