Merge "Restore Region::set(uint32_t, uint32_t)"
This commit is contained in:
commit
4ecf6ec932
@ -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);
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user