Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cefd6e92 authored by Xiang Wang's avatar Xiang Wang
Browse files

Fix the IntDef of gpu load hints

Bug: 284324521
Test: n/a
Change-Id: If0849eb3548bbba6e2a57e4277e238f749e1f1c5
parent cd230552
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -183,13 +183,14 @@ public final class PerformanceHintManager {

        /** @hide */
        @Retention(RetentionPolicy.SOURCE)
        @IntDef(prefix = {"CPU_LOAD_"}, value = {
        @IntDef(prefix = {"CPU_LOAD_", "GPU_LOAD_"}, value = {
            CPU_LOAD_UP,
            CPU_LOAD_DOWN,
            CPU_LOAD_RESET,
            CPU_LOAD_RESUME,
            GPU_LOAD_UP,
            GPU_LOAD_DOWN
            GPU_LOAD_DOWN,
            GPU_LOAD_RESET
        })
        public @interface Hint {}