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

Commit c3b80dd5 authored by Xiang Wang's avatar Xiang Wang Committed by Android (Google) Code Review
Browse files

Merge "Fix the IntDef of gpu load hints" into main

parents cab3d69a cefd6e92
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 {}