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

Commit f6287528 authored by Lloyd Pique's avatar Lloyd Pique Committed by Automerger Merge Worker
Browse files

Merge "CE: Default-Initialize shadowRadius and a timestamp" into...

Merge "CE: Default-Initialize shadowRadius and a timestamp" into rvc-dev-plus-aosp am: 8860de97 am: 641f39d3 am: 50a2d081

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

Change-Id: Ie71abd0abb0e46e0be2e8bc528218b522d7fff76
parents 565d089d 50a2d081
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ struct LayerFECompositionState {
    FloatRect geomLayerBounds;

    // length of the shadow in screen space
    float shadowRadius;
    float shadowRadius{0.f};

    /*
     * Geometry state
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ struct OutputLayerCompositionState {
    void dump(std::string& result) const;

    // Timestamp for when the layer is queued for client composition
    nsecs_t clientCompositionTimestamp;
    nsecs_t clientCompositionTimestamp{0};
};

} // namespace compositionengine::impl