Re: Fake Buttons <clear NSView> additional question
Re: Fake Buttons <clear NSView> additional question
- Subject: Re: Fake Buttons <clear NSView> additional question
- From: Buddy Kurz <email@hidden>
- Date: Tue, 3 Jun 2003 08:50:51 -0700
Which of these methods is 'preferred'? (meaning faster or closer to the
hardware or less resources)
If there is a significant speed difference is it 2x, 10x, ??
I am currently using NSBezierPath in a terminal emulation app so it
happens a lot.
[[NSColor clearColor] set];
[NSBezierPath fillRect: [self bounds]];
vs
NSRect myRect = NSMakeRect(0,0,100,100);
NSRectFillUsingOperation(myRect, NSCompositeCopy);
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.