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

Commit 83e3dd45 authored by Derek Sollenberger's avatar Derek Sollenberger
Browse files

Ensure that LayerSettings equality check includes blurRegionTransform.

Test: atest librenderengine_test
Bug: 185228719
Change-Id: I6356e30127745fc3f001b150f6940b4ceb0a57e8
parent f938c300
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -223,6 +223,7 @@ static inline bool operator==(const LayerSettings& lhs, const LayerSettings& rhs
            lhs.colorTransform == rhs.colorTransform &&
            lhs.disableBlending == rhs.disableBlending && lhs.shadow == rhs.shadow &&
            lhs.backgroundBlurRadius == rhs.backgroundBlurRadius &&
            lhs.blurRegionTransform == rhs.blurRegionTransform &&
            lhs.stretchEffect == rhs.stretchEffect;
}