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

Commit 32be5c80 authored by Nick Desaulniers's avatar Nick Desaulniers Committed by android-build-merger
Browse files

Merge "[frameworks][base][hwui] fix -Wimplicit-int-float-conversion" am:...

Merge "[frameworks][base][hwui] fix -Wimplicit-int-float-conversion" am: f7cf0dfa am: 0b6b756f am: d171f486
am: 580763aa

Change-Id: I3b062d044ef7a88498edeaf5c1fcd0f3387d2943
parents d9294a0a 580763aa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@
// Smaller than INT_MIN/INT_MAX because we offset these values
// and thus don't want to be adding offsets to INT_MAX, that's bad
#define DIRTY_MIN (-0x7ffffff - 1)
#define DIRTY_MAX (0x7ffffff)
#define DIRTY_MAX (0x8000000)

namespace android {
namespace uirenderer {