Quartz Debug Download Mac

The XQuartz project is an open-source effort to develop a version of the X.org X Window System that runs on Mac OS X. Together with supporting libraries and applications, it forms the X11.app that Apple has shipped with OS X since version 10.5. Here’s how you can download Quartz Debug to your Mac and use it to display the number of screen updates per second, see the FPS and CPU gauges changing as you perform different actions on your Mac, enable HiDPI display modes on non-Retina Macs and adjust other settings related to the computer’s GPU. It's used to test and optimize graphics performance when writing a new Cocoa program. One thing bugging me with Quartz Debug version 4.0 in Snow Leopard is that the window list which listed all the open windows on the system along with their id, size, and memory consumption statistics is.

  1. Quartz Debug Download Mac
  2. Quartz Debug Mac

As you update an app for a high-resolution environment, you’ll need to test it to ensure you get the expected results. Although you’ll want to test the app on high-resolution hardware prior to releasing it, you can emulate a high-resolution display on a standard-resolution display as an intermediate step.

The XQuartz project is an open-source effort to develop a version of the X.Org X Window System that runs on macOS. Together with supporting libraries and applications, it forms the X11.app that Apple shipped with OS X versions 10.5 through 10.7.

Enable High-Resolution Options on a Standard-Resolution Display

Before you can set the high-resolution options in Quartz Debug, you first need to download it (if you don't already have a copy).

  1. Choose Xcode > Open Developer Tool > More Developer Tools...

    Choosing this item will take you to developer.apple.com.

  2. You should then see the Downloads for Apple Developers webpage.

  3. Download the Graphics Tools for Xcode package, which contains Quartz Debug.

  1. Choose UI Resolution from the Window menu.

  2. Log out and then log in to have the change take effect.

    This updates the Resolutions list in System Preferences.

  3. Open System Preferences > Displays, and choose a resolution that is marked as HiDPI.

Quartz debug download mac pro

Make Sure @2x Images Load on High-Resolution Screens

Before releasing your app you’ll want to make sure that @2x images load as expected. Users can configure a system with multiple displays such that one display is high resolution and another is standard resolution. Not only must your app be prepared to run on systems with different screen resolutions, but you need to ensure that your app’s windows work as expected when dragged from one display to another. When a window moves from a standard- to a high-resolution display, the window’s content should update to show the appropriately scaled image.

One way to check whether an image is loading correctly in high resolution is to tint it. You can do this by using the image-tinting option in Quartz Debug. After you turn on image tinting any @2x image that is not correctly sized for high resolution will appear tinted (as shown in the image on the right in Figure 5-1).

Quartz Debug Download Mac

Tinting is especially useful for finding graphics resources that might have been overlooked during your upscaling work, as shown in Figure 5-2. Note that the curved ends of the scroll control are tinted, which shows these details still need to be upscaled.

The easiest way to turn on the image-tinting option is from the Tools menu in Quartz Debug v4.2.

You can also access the feature from the command line using Terminal.

To turn on the tinting option for all apps for a given user (that is, global domain)
  • Replace -g with that app’s bundle identifier (for example, com.mycompany.myapp):

Mac

Troubleshooting

This section addresses some common problems you might encounter as you modify your app for high resolution.

Controls and Other Window Elements Are Truncated or Show Up in Odd Places

Misplaced or truncated drawing almost certainly results from code that assumes a 1:1 relationship between points and pixels. In a high-resolution environment, there is no guarantee that this is the case. You might need to use the functions described in Converting to and from the Backing Store to perform appropriate conversions between points and pixels.

Images Don’t Look as Sharp as They Should

Quartz

If you supplied standard- and high-resolution versions of images in your app but don’t think the correct version is being loaded, you can check whether it is by using the tinting option in Quartz Debug (see Make Sure @2x Images Load on High-Resolution Screens). If you see a tinted image instead, use tiffutil to check the sizing (see Run the TIFF Utility Command in Terminal). You should also make sure the high-resolution version is named correctly. For example, make sure you use a lowercase x for @2x.

OpenGL Drawing Looks Fuzzy

If OpenGL drawing looks slightly out of focus, make sure that:

  • Your code opts in for getting the best resolution for your OpenGL view (see Enable OpenGL for High-Resolution Drawing).

  • You have not mixed point-based and pixel-based routines (see the example shown in Set Up the Viewport to Support High Resolution).

Objects Are Misaligned

The solution is to make sure that your drawing aligns on pixel boundaries rather than relying on points. You might also consider using Auto Layout for constraint-based, pixel-precise layout that works well for dynamic window changes. For more details, see Auto Layout Guide.

To adjust the position of an object to fall on exact pixel boundaries
  1. Convert the object’s origin and size values from user space to device space.

  2. Normalize the values to fall on exact pixel boundaries in device space.

    Tip: Avoid using rounding functions on view coordinates, because rounding skips every other pixel and can result in an undesired effect. You can achieve more precise alignment by using the backingAlignedRect:options: method (see Aligning a Rectangle on Pixel Boundaries).

  3. Convert the normalized values back to user space to obtain the coordinates required to achieve the desired pixel boundaries.


Quartz Debug Download Mac


Quartz Debug Mac

Copyright © 2012 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2012-09-19