1 /**************************************************************************
2 *
3 * Copyright 2008 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28
29 #ifndef U_RECT_H
30 #define U_RECT_H
31
32 #include "util/compiler.h"
33 #include "util/u_math.h"
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 struct u_rect {
40 int x0, x1;
41 int y0, y1;
42 };
43
44 /* Do two rectangles intersect?
45 * Note: empty rectangles are valid as inputs (and never intersect).
46 */
47 static inline bool
u_rect_test_intersection(const struct u_rect * a,const struct u_rect * b)48 u_rect_test_intersection(const struct u_rect *a,
49 const struct u_rect *b)
50 {
51 return (!(a->x1 < b->x0 ||
52 b->x1 < a->x0 ||
53 a->y1 < b->y0 ||
54 b->y1 < a->y0 ||
55 a->x1 < a->x0 ||
56 a->y1 < a->y0 ||
57 b->x1 < b->x0 ||
58 b->y1 < b->y0));
59 }
60
61 /* Find the intersection of two rectangles known to intersect.
62 */
63 static inline void
u_rect_find_intersection(const struct u_rect * a,struct u_rect * b)64 u_rect_find_intersection(const struct u_rect *a,
65 struct u_rect *b)
66 {
67 /* Caller should verify intersection exists before calling.
68 */
69 if (b->x0 < a->x0) b->x0 = a->x0;
70 if (b->x1 > a->x1) b->x1 = a->x1;
71 if (b->y0 < a->y0) b->y0 = a->y0;
72 if (b->y1 > a->y1) b->y1 = a->y1;
73 }
74
75 static inline void
u_rect_possible_intersection(const struct u_rect * a,struct u_rect * b)76 u_rect_possible_intersection(const struct u_rect *a,
77 struct u_rect *b)
78 {
79 if (u_rect_test_intersection(a,b)) {
80 u_rect_find_intersection(a,b);
81 }
82 else {
83 /*
84 * Note the u_rect_xx tests deal with inclusive coordinates
85 * hence all-zero would not be an empty box.
86 */
87 b->x0 = b->y0 = 0;
88 b->x1 = b->y1 = -1;
89 }
90 }
91
92 /* Set @d to a rectangle that covers both @a and @b.
93 */
94 static inline void
u_rect_union(struct u_rect * d,const struct u_rect * a,const struct u_rect * b)95 u_rect_union(struct u_rect *d, const struct u_rect *a, const struct u_rect *b)
96 {
97 d->x0 = MIN2(a->x0, b->x0);
98 d->y0 = MIN2(a->y0, b->y0);
99 d->x1 = MAX2(a->x1, b->x1);
100 d->y1 = MAX2(a->y1, b->y1);
101 }
102
103 #ifdef __cplusplus
104 }
105 #endif
106
107 #endif /* U_RECT_H */
108