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

Commit e18155e1 authored by Dan Stoza's avatar Dan Stoza Committed by Android Git Automerger
Browse files

am 4ecf6ec9: Merge "Restore Region::set(uint32_t, uint32_t)"

* commit '4ecf6ec9':
  Restore Region::set(uint32_t, uint32_t)
parents a5cbb1f1 4ecf6ec9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -59,6 +59,7 @@ public:
            void        clear();
            void        set(const Rect& r);
            void        set(int32_t w, int32_t h);
            void        set(uint32_t w, uint32_t h);

            Region&     orSelf(const Rect& rhs);
            Region&     xorSelf(const Rect& rhs);
+6 −0
Original line number Diff line number Diff line
@@ -260,6 +260,12 @@ void Region::set(int32_t w, int32_t h)
    mStorage.add(Rect(w, h));
}

void Region::set(uint32_t w, uint32_t h)
{
    mStorage.clear();
    mStorage.add(Rect(w, h));
}

bool Region::isTriviallyEqual(const Region& region) const {
    return begin() == region.begin();
}