Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 52449a1

Browse files
authored
[Impeller] Log a message when using Impeller. (#34242)
1 parent 2d3b16e commit 52449a1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

shell/platform/android/android_surface_gl_impeller.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ static std::shared_ptr<impeller::Context> CreateImpellerContext(
7272
FML_LOG(ERROR) << "Could not add reactor worker.";
7373
return nullptr;
7474
}
75-
75+
FML_LOG(ERROR) << "Using the Impeller rendering backend.";
7676
return context;
7777
}
7878

shell/platform/darwin/ios/ios_context_metal_impeller.mm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
FML_LOG(ERROR) << "Could not create Metal Impeller Context.";
2020
return nullptr;
2121
}
22+
FML_LOG(ERROR) << "Using the Impeller rendering backend.";
2223
return context;
2324
}
2425

0 commit comments

Comments
 (0)