revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / gallium / auxiliary / util / u_rect.h
blob4cb90d3c3162374857c8a8907a6cc71b931d822d
1 /**************************************************************************
2 *
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
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:
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.
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 TUNGSTEN GRAPHICS 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.
26 **************************************************************************/
29 #ifndef U_RECT_H
30 #define U_RECT_H
32 #include "pipe/p_compiler.h"
34 struct u_rect {
35 int x0, x1;
36 int y0, y1;
39 /* Do two rectangles intersect?
41 static INLINE boolean
42 u_rect_test_intersection(const struct u_rect *a,
43 const struct u_rect *b)
45 return (!(a->x1 < b->x0 ||
46 b->x1 < a->x0 ||
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
51 /* Find the intersection of two rectangles known to intersect.
53 static INLINE void
54 u_rect_find_intersection(const struct u_rect *a,
55 struct u_rect *b)
57 /* Caller should verify intersection exists before calling.
59 if (b->x0 < a->x0) b->x0 = a->x0;
60 if (b->x1 > a->x1) b->x1 = a->x1;
61 if (b->y0 < a->y0) b->y0 = a->y0;
62 if (b->y1 > a->y1) b->y1 = a->y1;
66 static INLINE void
67 u_rect_possible_intersection(const struct u_rect *a,
68 struct u_rect *b)
70 if (u_rect_test_intersection(a,b)) {
71 u_rect_find_intersection(a,b);
73 else {
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
78 #include "pipe/p_format.h"
79 #include "util/u_pack_color.h"
83 /**********************************************************************
84 * Pipe copy/fill rect helpers.
87 /* These really should move to a different file:
89 #include "pipe/p_format.h"
91 extern void
92 util_copy_rect(ubyte * dst, enum pipe_format format,
93 unsigned dst_stride, unsigned dst_x, unsigned dst_y,
94 unsigned width, unsigned height, const ubyte * src,
95 int src_stride, unsigned src_x, unsigned src_y);
97 extern void
98 util_fill_rect(ubyte * dst, enum pipe_format format,
99 unsigned dst_stride, unsigned dst_x, unsigned dst_y,
100 unsigned width, unsigned height, union util_color *uc);
103 #endif /* U_RECT_H */