diff options
| author | 2024-12-09 02:16:12 +0000 | |
|---|---|---|
| committer | 2024-12-09 02:16:12 +0000 | |
| commit | 65146ab457f733959c47f778e88ef6fc208dbc58 (patch) | |
| tree | 388b6d1f37bfe26604c03c88e389f6c4980f0b46 | |
| parent | bfb0a0892a14d35dcd022476a4dd4f95c7ff7647 (diff) | |
| parent | 7bbdbdff9c7957b8daf37b63712bb8174150be27 (diff) | |
Merge "Fix spike method calling" into main
| -rw-r--r-- | native/android/performance_hint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/android/performance_hint.cpp b/native/android/performance_hint.cpp index 1945d90568b3..0db99ffd208a 100644 --- a/native/android/performance_hint.cpp +++ b/native/android/performance_hint.cpp @@ -1170,7 +1170,7 @@ int APerformanceHint_notifyWorkloadSpike(APerformanceHintSession* session, bool if (!useNewLoadHintBehavior()) { return ENOTSUP; } - return session->notifyWorkloadReset(cpu, gpu, debugName); + return session->notifyWorkloadSpike(cpu, gpu, debugName); } int APerformanceHint_setNativeSurfaces(APerformanceHintSession* session, |