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

Commit 2bf85862 authored by Andy Yu's avatar Andy Yu Committed by Automerger Merge Worker
Browse files

Merge "Add 40fps as a FPS option" into tm-dev am: 343ed80b

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17062451

Change-Id: I001b9374b6802490385eb3374f7c731482bbebaf
parents c5277260 343ed80b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -359,6 +359,7 @@ public final class GameManagerService extends IGameManagerService.Stub {
    public enum FrameRate {
        FPS_DEFAULT(0),
        FPS_30(30),
        FPS_40(40),
        FPS_45(45),
        FPS_60(60),
        FPS_90(90),
@@ -378,6 +379,8 @@ public final class GameManagerService extends IGameManagerService.Stub {
        switch (raw) {
            case "30":
                return FrameRate.FPS_30.fps;
            case "40":
                return FrameRate.FPS_40.fps;
            case "45":
                return FrameRate.FPS_45.fps;
            case "60":