mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-09 20:24:14 +00:00
[common] rects: fix rectIntersects
This commit is contained in:
@@ -206,7 +206,7 @@ inline static bool rectIntersects(const FrameDamageRect * r1, const FrameDamageR
|
|||||||
return r1->x < r2->x + r2->width &&
|
return r1->x < r2->x + r2->width &&
|
||||||
r1->x + r1->width > r2->x &&
|
r1->x + r1->width > r2->x &&
|
||||||
r1->y < r2->y + r2->height &&
|
r1->y < r2->y + r2->height &&
|
||||||
r2->y + r1->height > r2->y;
|
r1->y + r1->height > r2->y;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rectsMergeOverlapping(FrameDamageRect * rects, int count)
|
int rectsMergeOverlapping(FrameDamageRect * rects, int count)
|
||||||
|
Reference in New Issue
Block a user