Version: 2021.1
RenderDoc Integration
Editor Analytics

Using the Xcode frame debugger

Xcode has a frame debugger tool that lets you capture a frame of your application and see the commands that the GPU performs during that frame, examine data in GPU memory, and identify bottlenecks in your shaders. This allows you to analyze GPU performance.

Captured frame in Xcode
Captured frame in Xcode

Unity integrates with the Xcode frame debugger in these ways:

  • On macOS, iOS, and tvOS, you can use Xcode frame debugger to analyze frames from your application while it is running on the target device.
  • On macOS, you can use Xcode frame debugger to analyze frames from the Unity Editor.

Frame debugging only works if the application is running on a platform and graphics API that Xcode supports. As of Unity 2019.2, Xcode only supports macOS with Metal graphics. If Unity uses another API, the Xcode integration is disabled until you select a supported graphics API.

Capturing a frame from your application

To capture a frame from your application using the Xcode frame debugger, you can do one of the following:

  • Launch your application from Xcode and either use the Xcode UI or the FrameCapture API to request frame captures. You can analyze the frame captures in Xcode immediately, or save them to disk. This workflow is supported on all platforms that use Metal.
  • Launch your application directly from the command line without an Xcode project, and use the FrameCapture API to save frame captures to disk. This workflow is not supported on iOS.

Capturing a frame from your application with Xcode

This section describes how to launch your application and perform a frame capture using the Xcode UI or the FrameCapture API.

This workflow is supported on all platforms that use Metal.

  1. Create an Xcode project.
    1. The easiest way to do this is to build an Xcode project from the Unity Editor:
      1. Open the Build Settings window (File > Build Settings).
      2. macOS only: Enable Create Xcode Project.
      3. Click Build.
    2. Alternatively, you can use any other Xcode project to launch macOS applications. To do this:
      1. In Xcode, create a new, empty macOS project, or open an existing macOS project.
      2. Go to Product > Scheme > Edit scheme, and open the Info tab.
      3. Set Executable to your built Unity application.
  2. Edit the Xcode project scheme so that you can perform frame captures.
    1. The easiest way to do this is using the Xcode GUI:
      1. Follow the Enabling Frame Capture guide in the Xcode documentation to set your project scheme’s GPU Frame Capture setting to Metal.
    2. You can also configure an Xcode project scheme using the XcScheme API, which can be useful for automated builds. For more information, see the XcScheme API documentation.
  3. Launch your project from Xcode.
  4. At an appropriate point, perform a frame capture.
    1. The easiest way to do this is using the Xcode UI:
      1. In Xcode, press the Frame Capture button (camera icon) to capture the next frame of data.
    2. You can also perform a frame capture from a script, using the FrameCapture API. For more information, see the FrameCapture API documentation.

For information on analysing frame capture data in Xcode, see the Xcode frame debugger documentation.

Capturing a frame from your application with the command line

This section describes how to launch your application from the command line, perform a frame capture using the FrameCapture API, and save the results to disk.

This workflow is not supported on iOS. To perform frame captures on iOS, you must always launch your application from Xcode.

  1. Add calls to FrameCapture.BeginCaptureToFile and EndCapture to your code, so that you can perform frame captures as required.
  2. Launch your application from the command line, with the following flag: -enable-metal-capture. Xcode performs frame captures when your code requests them, and saves the results to disk.

For information on analysing this data in Xcode, see the Xcode frame debugger documentation.

Capturing a frame from the Unity Editor

On macOS, you can use Xcode frame debugger to analyze frames from the Unity Editor. If you use Xcode to launch the Unity Editor, you can request frame captures from the Unity Editor UI.

Capturing a frame from Unity Editor with Xcode

This section describes how to launch the Unity Editor from Xcode and perform a frame capture using the Unity Editor UI, the Xcode UI, or the FrameCapture API. You can analyze the frame capture immediately, or save the results to disk.

This workflow is supported on macOS.

  1. If the Unity Editor is open, close it.
  2. In Xcode, create a new, empty macOS project, or open an existing macOS project.
  3. Go to Product > Scheme > Edit scheme, and open the Info tab.
  4. Set Executable to the Unity Editor.
  5. Follow the Enabling Frame Capture guide in the Xcode documentation to set your project scheme’s GPU Frame Capture setting to Metal.
  6. Run the Xcode project to launch the Unity Editor.
  7. At an appropriate point, perform a frame capture.
    1. The easiest way to do this is using the Unity Editor UI:
      1. In the Unity Editor, use the Xcode Capture button to the right of the Scene view or Game view to perform a frame capture.
    2. Alternatively, you can use the Xcode UI:
      1. In Xcode, press the Frame Capture button (camera icon) to capture the next frame of data.
    3. You can also perform a frame capture from a script, using the FrameCapture API. For more information, see the FrameCapture API documentation.

For information on analysing frame capture data in Xcode, see the Xcode frame debugger documentation.

Capturing a frame from the Unity Editor with the command line

This workflow describes how to launch the Unity Editor from the command line, perform a frame capture using the FrameCapture API, and save the frame capture to disk.

This workflow is supported on macOS.

  1. Add calls to FrameCapture.BeginCaptureToFile and EndCapture to your code, so that you can perform frame captures as required.
  2. Launch the Unity Editor from the command line, with the following flag: -enable-metal-capture. Xcode performs frame captures when your code requests them, and saves the results to disk.

For information on analysing this data in Xcode, see the Xcode frame debugger documentation.

RenderDoc Integration
Editor Analytics