diff --git a/impeller/README.md b/impeller/README.md index cc3255cf536a9..38045013a6fbf 100644 --- a/impeller/README.md +++ b/impeller/README.md @@ -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 `` tag: -``` +```xml FLTEnableImpeller ``` @@ -207,18 +207,35 @@ under the top-level `` tag: Impeller is in preview on Android. To your `AndroidManifest.xml` file, add under the `` tag: -``` + +```xml ``` +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 `` tag: + +> [!Warning] +> Selecting the Impeller backend this way will only work in `debug` and `profile` +> runtime modes. + +```xml + +``` + ### macOS Desktop Impeller is in preview on macOS Desktop. To your `Info.plist` file, add under the top-level `` tag: -``` + +```xml FLTEnableImpeller ```