Impeller rendering engine

What is Impeller?

Impeller provides a new rendering runtime for Flutter. The Flutter team’s believes this solves Flutter’s early-onset jank issue. Impeller precompiles a smaller, simpler set of shaders at Engine build time so they don’t compile at runtime.

For a video introduction to Impeller, check out the following talk from Google I/O 2023.

Introducing Impeller - Flutter’s new rendering engine

Impeller has the following objectives:

  • Predictable performance: Impeller compiles all shaders and reflection offline at build time. It builds all pipeline state objects upfront. The engine controls caching and caches explicitly.
  • Instrumentable: Impeller tags and labels all graphics resources like textures, and buffers. It can capture and persist animations to disk without affecting per-frame rendering performance.
  • Portable: Flutter doesn’t tie Impeller to a specific client rendering API. You can author shaders once and convert them to backend-specific formats as necessary.
  • Leverages modern graphics APIs: Impeller uses, but doesn’t depend on, features available in modern APIs like Metal and Vulkan.
  • Leverages concurrency: Impeller can distribute single-frame workloads across multiple threads if necessary.

Availability

Where can you use Impeller?

iOS

Flutter enables Impeller by default on iOS.

  • To disable Impeller on iOS when debugging, pass --no-enable-impeller to the flutter run command.

    flutter run --no-enable-impeller
    
  • To disable Impeller on iOS when deploying your app, add the following tags under the top-level <dict> tag in your app’s Info.plist file.

      <key>FLTEnableImpeller</key>
      <false />
    

The team continues to improve iOS support. If you encounter performance or fidelity issues with Impeller on iOS, file an issue in the GitHub tracker. Prefix the issue title with [Impeller] and include a small reproducible test case.

macOS

Impeller is available for macOS in preview as of the Flutter 3.13 stable release. It continues to be in preview as of the 3.19 release.

To enable Impeller on macOS when debugging, pass --enable-impeller to the flutter run command.

flutter run --enable-impeller

To enable Impeller on macOS when deploying your app, add the following tags under the top-level <dict> tag in your app’s Info.plist file.

  <key>FLTEnableImpeller</key>
  <true />

Android

As of Flutter 3.16, Impeller is available behind a flag on Android devices that support Vulkan. It continues to be in preview as of the 3.19 release.

You can try Impeller on Vulkan-capable Android devices by passing --enable-impeller to flutter run:

flutter run --enable-impeller

Or, you can add the following setting to your project’s AndroidManifest.xml file under the <application> tag:

<meta-data
    android:name="io.flutter.embedding.android.EnableImpeller"
    android:value="true" />

Bugs and issues

For the full list of Impeller’s known bugs and missing features, the most up-to-date information is on the Impeller project board on GitHub.

The team continues to improve Impeller support. If you encounter performance or fidelity issues with Impeller on any platform, file an issue in the GitHub tracker. Prefix the issue title with [Impeller] and include a small reproducible test case.

Please include the following information when submitting an issue for Impeller:

  • The device you are running on, including the chip information.
  • Screenshots or recordings of any visible issues.
  • An export of the performance trace. Zip the file and attach it to the GitHub issue.

Architecture

To learn more details about Impeller’s design and architecture, check out the README.md file in the source tree.

Additional Information