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

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

Increase layer upload limit to 200. am: 52bf7808 am: 4943006e

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I9417907ce69fb317b26a15782cc1f4d8aa8c6c7d
parents 4598645c 4943006e
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;
};