mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 13:07:54 +00:00
[common] rects: fix rectIntersects
This commit is contained in:
parent
9969896876
commit
edf1e341da
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ inline static bool rectIntersects(const FrameDamageRect * r1, const FrameDamageR
|
|||
return r1->x < r2->x + r2->width &&
|
||||
r1->x + r1->width > r2->x &&
|
||||
r1->y < r2->y + r2->height &&
|
||||
r2->y + r1->height > r2->y;
|
||||
r1->y + r1->height > r2->y;
|
||||
}
|
||||
|
||||
int rectsMergeOverlapping(FrameDamageRect * rects, int count)
|
||||
|
|
Loading…
Reference in a new issue