The Software Side of Retina: Making it All Work

OS X, similar to iOS, uses points to represent display coordinates. Traditional OS/display combinations had a 1:1 mapping between points and pixels. Points in OS X are now floating point values, as a single point can be represented by multiple pixels on a high density display.


Images are the same size, but made of 4x the number of pixels on Screen 1 compared to Screen 0

How pixels map to points is determined by the backing scale factor. The backing scale factor can either be set to 1.0 or 2.0. In the case of the former you get 1:1 point to pixel mapping, while in the latter each point is backed by four pixels. The backing scale factor isn’t a global value, it can be set on a per element basis, allowing controls to to be legible while you get the benefits of a higher resolution for additional screen real estate. This aspect of OS X is key to enabling good behavior in applications as you’ll soon see.

Apple does a lot of the display handling for you so you don’t have to think about any of this. All vector based graphics and text using Apple’s APIs are automatically scaled up. Unmodified dialog boxes, toolbars, menus, etc.. should all look “normal” sized and just be ridiculously sharp on the Retina Display. Bitmapped images are scaled up using linear interpolation, but if higher resolution assets are provided OS X can simply swap and use those on a Retina Display.

Applications that render vector graphics, text and other elements to their own backing store will need hand tuning to look good on the Retina Display. These elements will receive the same linearly interpolated upscale I mentioned above.

It’s a bit complicated and confusing so let me try my best to explain what’s going on here in a practical sense. The 15.4-inch Retina Display has a native resolution of 2880 x 1800, that’s 2880 pixels across and 1800 pixels down for a total area of 5,184,000 pixels.

On the Retina MacBook Pro, Apple has done away with conventional resolution settings. Instead you get a horizontal list of scaling options (this applies to external displays as well):

In the default “best for Retina Display” setting, the desktop, menu bar, icons and Finder windows are drawn at 2880 x 1800, but they are drawn larger than they would normally be at 2880. Apple draws everything at 4x the size to make the desktop behave exactly as it would on a 15.4-inch 1440 x 900 display - this is the backing scale factor (2.0) at work. This approach provides the best image quality as there’s integer mapping from pixels on the panel to pixels on the desktop. No interpolation or filtering is necessary.


The default "Best for Retina Display" setting, 2880 x 1800 but everything is scaled by 2.0 (4x resolution)

Third party applications without specific Retina Display support also operate in this same “looks like 1440 x 900” mode. If you fire up Chrome, Photoshop or Word you’ll see that everything looks identical to how it would look on a standard resolution 15-inch MacBook Pro. Again, the screen is drawn at 2880 x 1800 but everything is scaled up to be the same size it would be at 1440 x 900.

If third party applications use Apple’s standard methods of drawing text and windows, all of these windows will look super sharp. If they don’t however, whatever routines they use to display windows and text will need to be Retina aware otherwise they run the risk of not scaling text properly. The famous example at this point is Google’s Chrome which has its own offscreen text rendering buffer, even though it uses Apple’s text rendering APIs:


Google Chrome (left) vs. Safari (right) on the rMBP

Chrome Canary fixes the text rendering issue but it has a similar problem displaying images, they simply look better in Safari:


Google Chrome Canary (left) vs. Safari (right) on the rMBP

Even though Adobe had a Retina-aware version of Photoshop running at Apple’s WWDC keynote, the publicly available version of CS6 doesn’t feature the same support. Here even open dialog boxes look bad:

Many of you asked about Office 2011. These apps just work like they would at at 1440 x 900, just with blurrier text unfortunately:

MS Excel 2011
MS Word 2011

It’s not just third party applications that need updating however, even Apple’s own iWork suite has yet to be updated to take advantage of the Retina Display. As a result text in Pages is incredibly blurry. It has been roughly three years since Apple last updated the iWork suite, so the applications are definitely due for an overhaul. I am a bit surprised Apple didn’t update them at the launch of the rMBP to be honest. It’s quite possible that a major iWork update is imminent and Apple didn’t see the need to update 3 year old software in lieu of that.

Cocoa applications can be forced to open in magnified low resolution or high resolution modes by looking at the app's info window (cmd + i on a selected app in Finder):

Eventually most apps will by default open in high resolution, such as those that have been optimized for Retina Display operation (e.g. iMovie above). Those applications that are not yet Retina aware may default to opening in low resolution mode (e.g. Adium, Pages), in which case they'll look and behave like they would at 1440 x 900 but with all UI elements upscaled to fit the 2880 x 1800 panel. Non-Cocoa applications will have the resolution scaling option greyed out (e.g. MS Office apps).

Where things get really exciting is when you have an application that not only handles scaling properly, but also takes advantage of the added resolution. Take Aperture 3.3 for example. With OS X set to its “best for Retina display” mode, this is what Aperture looks like with a 2880 x 1800 image open and displayed at full size:

Here Apple is scaling the UI elements like the menus and widgets on the screen (backing scale factor = 2.0), but displaying the open image unscaled (backing scale factor = 1.0). As a result we can fit almost an entire 2880 x 1800 image on the screen without zooming out. Remember the backing scale factor isn’t global, individual elements on the screen can be scaled independently depending on their purpose.

The same thing happens when you look at applications like iMovie or Final Cut HD. The UI elements are scaled up but the video window is displayed unscaled, thus allowing us to display a full 1080p video alongside text and tools that are still legible.

It’s all handled amazingly well. It just works.

Oh but there’s more.

If you select the 1680 x 1050 or 1920 x 1200 scaling modes, Apple actually renders the desktop at 2x the selected resolution (3360 x 2100 or 3840 x 2400, respectively), scales up the text and UI elements accordingly so they aren’t super tiny (backing scale factor = 2.0), and downscales the final image to fit on the 2880 x 1800 panel. The end result is you get a 3360 x 2100 desktop, with text and UI elements the size they would be on a 1680 x 1050 desktop, all without sacrificing much sharpness/crispness thanks to the massive supersampling. The resulting image isn’t as perfect as it would be at the default setting because you have to perform a floating point filter down to 2880 x 1800, but it’s still incredibly good.

The same rules as above apply to Retina-aware applications. Take the Aperture example again, this time at “1680 x 1050”:

Note that we can fit the entire 2880 x 1800 image at 100% almost without having to scroll. This is possible because our screen is actually rendered at 3360 x 2100, with the text and UI elements scaled up so they aren’t super tiny, yet the image is left unscaled.

Here’s the same Aperture setup but at “1920 x 1200”:

The 2880 x 1800 image looks downright small since our desktop is rendered at 3840 x 2400. Despite the fact that we’re able to fit everything into a single screen, the text and other UI elements are totally usable at this setting. You get the benefits of additional application real estate without any of the downsides.

What happens if you decide to take Aperture full screen? The image is displayed almost completely at 2880 x 1800. You do lose a little vertical real estate but not much at all.

The 3D gaming experience is even simpler. Here you just choose the appropriate resolution and you get the same scaling you normally would in the game. I’ve already demonstrated support for 2880 x 1800 in titles like Diablo 3, although there is still a need for developer support as we see with the console window in Portal 2:

The flexibility offered by Apple’s handling of the Retina Display in OS X is unparalleled. What applications like Aperture, iPhoto, iMovie and Final Cut HD offer, is unbridled resolution independence. What Apple has done here is so much more difficult than what it pulled off in iOS with the Retina Display. It will take time for third party application developers to get on board, but with the power of the Mac app store and Apple’s growing install base of Mac users I suspect we will see incredibly quick adoption of support for the MacBook Pro’s Retina Display.

The Retina Display in Numbers Achieving Retina
Comments Locked

471 Comments

View All Comments

  • Manni01 - Tuesday, July 17, 2012 - link

    Great review as usual, but I would really like to know how Anand was able to check if Speedstep and Turboboost worked. In the last Macbook review (2011), he used MSR Tools, but I could not get these to work on Lion on my June 2012 MBP 13. He remains very vague about how, although he does confirm this works as expected on the MBP 15r .
    This isn't my experience. I tried using Intel's MacCPUID in Lion, and a few other tools, and it looks like the CPU is locked at nominal speed (2.9GHz in my case), so neither speedstep nor Turboboost seem to work in Lion. They work as intended in Win7/Bootcamp, going down to 1GHz to save battery or up to 3.6GHz when only one core needs more power.
    So here are my questions:
    1) Anand please could you tell us which tools you have used?
    2) Has anyone tested this on the new macs (June 2012), using which tools, and what is the result?
    Speedstep definitely worked in Snow Leopard on my MBP 13 2011, so it must be a limitation in Lion.
  • kenancagri - Thursday, July 19, 2012 - link

    It is very good article. I loved it. Thanks for Lal Shimpi.
  • williamsj - Friday, July 27, 2012 - link

    Even the iPhone 4 is physically easier to maintain/upgrade than this thing.

    Check http://www.ifixit.com

    The worst maintainable piece of hardware they have ever looked at!!

    John
  • Throckmorton - Tuesday, August 7, 2012 - link

    You didn't address whether pixel doubling is supported for games. IE rendering each pixel as 4 screen pixels. That's very different from upscaling, because with pixel doubling there's no blurring.
  • Dubious1968 - Thursday, August 9, 2012 - link

    I've given up waiting for Apple to refresh the iMac, and am thinking of buying the Macbook Pro Retina instead. My only concern is that Apple should have equipped this laptop with a more powerful graphics card, given it is driving such a high res screen.

    I will be using it for Photoshop and HD video editing along with some gaming.

    Any help appreciated.

    Dubious
  • sleddoggin - Saturday, August 11, 2012 - link

    So, I've done my best to read (skim) through all 46 pages of comments for this post, and have been reading other threads on more-or-less the same topic, so forgive me if I've missed something.

    I own a base model rMBP w/ 16mb ram (for safety), and am really quite unimpressed by openGL performance in games that were fluid (30-60fps ANYway) on my old Mac Pro 2006 w/ an ATI Radeon 5770 HD graphics card (I guess it helps, too, that the Mac Pro GPU is sitting in an x16 PCIe lane, not an x8, as with the rMBP). The Mountain Lion upgrade has been some improvement.

    When I first read Anandtech's article, I sort of thought, why not shut the lid on my MacBook Pro Retina, and plug in my old Apple Cinema display when I want to play games (I plan on using my desktop display when I'm at home for most stuff anyway). Then, the discreet NVIDIA GeForce GT 650M wouldn't be overworked by having to render all those extra pixels, right? Wrong. Gauging from the tests I've done, anyway, I'm getting the same choked performance on my relatively low-res external display (with the rMBP lid shut) as I do when I play those games on the rMBP screen (either at native OR scaled resolutions).

    So my question becomes, isn't this a software issue? Shouldn't the Apple/NVIDIA engineers be able to re-route ALL of that sexy mobile GPU processing power to a single, lower-res external display, and save us gamers the hassle of trading in our rMBPs for regular 2012 MBPs?

    This computer upgrade is really a no-brainer for me, otherwise. With the Thunderbolt ports, and the built in HDMI, I've been easily able to retire my old Mac Pro, and still keep my various displays (HDTV, etc.), and extensive array of USB/Firewire accessories fully operational. It just blows my mind that I get better gaming performance from my creaky old 2006 Mac Pro.

    Thanks for reading my contribution to this thread. Does my thought hold ANY water? I sure as heck don't want to give up this beautiful-looking piece of hardware if I don't have to...

    Cheers,
    -SledDoggin' (another reluctant Apple fanboy)
  • vml_ - Saturday, August 25, 2012 - link

    Here's what I don't get and haven't seen answered anywhere. If there are performance issues at 1800p, can they be alleviated by downscaling (eg to 1080p)?
  • S J - Friday, August 31, 2012 - link

    That sounds like great. good effort. Also have seen nice article on http://techinlead.com/apple-introducing-macbook-pr...
  • LookupOEM - Saturday, September 22, 2012 - link

    maybe i'm wrong, but i always thought that OEM means "Original Equipment Manufacturer", a company that makes equipement that is sold by others under their own name.

    Toshiba making hard drives for Apple makes it an OEM, just as Intel, Samsung and others

    but, Apple IS NOT AN OEM, and there is no such thing as a PC OEM !!
    a PC OEM would be a company that supplies parts to build a PC, not the PC maker itself.

    did i miss something here ?
  • Penzi - Thursday, October 4, 2012 - link

    Now that Mountain Lion has been out for a bit and several programs have been "retinized" are you planning on updating your review or crafting a mini-review that addresses changes, improvements and new caveats? I, for one, would love to hear about scrolling performance and resolution impact to common software (the OS and iWorks, FinalCut, etc), such as setting the display to "more space" (1920) and clocking the Safari FB news feed, and so on...

Log in

Don't have an account? Sign up now