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

Commit 4943006e authored by Alec Mouri's avatar Alec Mouri Committed by Automerger Merge Worker
Browse files

Increase layer upload limit to 200. am: 52bf7808

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I8b8a526aa189b558bd4b1bd35aca300a43094aa6
parents 1b2be88e 52bf7808
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -315,8 +315,9 @@ private:

    static const size_t MAX_NUM_LAYER_RECORDS = 200;
    static const size_t MAX_NUM_LAYER_STATS = 200;
    static const size_t MAX_NUM_PULLED_LAYERS = MAX_NUM_LAYER_STATS;
    std::unique_ptr<StatsEventDelegate> mStatsDelegate = std::make_unique<StatsEventDelegate>();
    size_t mMaxPulledLayers = 8;
    size_t mMaxPulledLayers = MAX_NUM_PULLED_LAYERS;
    size_t mMaxPulledHistogramBuckets = 6;
};