vote up 3 vote down star

I've been plugging away at this for a few hours now, and haven't found a good answer. In Leopard, I can programmatically change the screen resolution using Quartz Display Services with CGConfigureDisplayMode. Unfortunately, this has been deprecated in 10.6.

This seems like a simple task: how can I change the screen resolution with non-deprecated methods in Snow Leopard?

Thanks!

flag

4  
There probably isn't a non-deprecated way. Large chunks of display and ColorSync related code have been marked as deprecated with no documentation and no publicly accessible replacements in sight just to make the ship date. – NSD Oct 30 at 23:37
That would explain why I was having such a hard time. Thanks! – Reed Olsen Oct 31 at 0:30
Also, note that deprecated does not mean it'll break any time soon, particularly if there's no available alternative. With a few notable exceptions (e.g. the Cocoa-Java bridge) Apple has removed essentially no public APIs from OS X as of yet. – Nicholas Riley Oct 31 at 3:10
NSD, that comment is uncalled for; there are replacements for this and many other deprecated APIs. – Ben Stiglitz Nov 2 at 21:42
You obviously haven't tried to use ColorSync in the last 6 years. – NSD Nov 10 at 16:48
show 1 more comment

1 Answer

vote up 1 vote down check

The functionality has been updated; take a look at CGConfigureDisplayWithDisplayMode in <CoreGraphics/CGDisplayConfiguration.h>.

link|flag
This works great in Snow Leopard, but not for my particular application :( I'm looking to set the resolution permenantly, but this method "persists for the life of the program, and automatically reverts to the permanent setting when the program terminates." Thanks! – Reed Olsen Nov 6 at 1:57
1  
Whoops! Updated the answer to reflect your needs. – Ben Stiglitz Nov 6 at 16:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.