Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 20 additions & 3 deletions impeller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Flutter enables Impeller by **default** on iOS.
To **disable** Impeller on iOS, update your `Info.plist` file to add the following
under the top-level `<dict>` tag:

```
```xml
<key>FLTEnableImpeller</key>
<false/>
```
Expand All @@ -207,18 +207,35 @@ under the top-level `<dict>` tag:
Impeller is in preview on Android.

To your `AndroidManifest.xml` file, add under the `<application>` tag:
```

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

Impeller will use Vulkan on Android by default when opted into. Where Vulkan
is unavailable, Impeller will fallback to Skia. However, Impellers OpenGL backend
is well under construction. To try that with your application, add the following
under the `<application>` tag:

> [!Warning]
> Selecting the Impeller backend this way will only work in `debug` and `profile`
> runtime modes.

```xml
<meta-data
android:name="io.flutter.embedding.android.ImpellerBackend"
android:value="opengles" />
```

### macOS Desktop

Impeller is in preview on macOS Desktop.

To your `Info.plist` file, add under the top-level `<dict>` tag:
```

```xml
<key>FLTEnableImpeller</key>
<true/>
```
Expand Down