1 /**************************************************************************
3 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
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
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 * Rectangle-related helper functions.
33 #include "util/u_format.h"
34 #include "util/u_rect.h"
35 #include "util/u_pack_color.h"
39 * Copy 2D rect from one place to another.
40 * Position and sizes are in pixels.
41 * src_stride may be negative to do vertical flip of pixels from source.
44 util_copy_rect(ubyte
* dst
,
45 enum pipe_format format
,
57 int src_stride_pos
= src_stride
< 0 ? -src_stride
: src_stride
;
58 int blocksize
= util_format_get_blocksize(format
);
59 int blockwidth
= util_format_get_blockwidth(format
);
60 int blockheight
= util_format_get_blockheight(format
);
62 assert(blocksize
> 0);
63 assert(blockwidth
> 0);
64 assert(blockheight
> 0);
68 width
= (width
+ blockwidth
- 1)/blockwidth
;
69 height
= (height
+ blockheight
- 1)/blockheight
;
73 dst
+= dst_x
* blocksize
;
74 src
+= src_x
* blocksize
;
75 dst
+= dst_y
* dst_stride
;
76 src
+= src_y
* src_stride_pos
;
79 if (width
== dst_stride
&& width
== src_stride
)
80 memcpy(dst
, src
, height
* width
);
82 for (i
= 0; i
< height
; i
++) {
83 memcpy(dst
, src
, width
);
91 util_fill_rect(ubyte
* dst
,
92 enum pipe_format format
,
102 int blocksize
= util_format_get_blocksize(format
);
103 int blockwidth
= util_format_get_blockwidth(format
);
104 int blockheight
= util_format_get_blockheight(format
);
106 assert(blocksize
> 0);
107 assert(blockwidth
> 0);
108 assert(blockheight
> 0);
111 dst_y
/= blockheight
;
112 width
= (width
+ blockwidth
- 1)/blockwidth
;
113 height
= (height
+ blockheight
- 1)/blockheight
;
115 dst
+= dst_x
* blocksize
;
116 dst
+= dst_y
* dst_stride
;
117 width_size
= width
* blocksize
;
121 if(dst_stride
== width_size
)
122 memset(dst
, uc
->ub
, height
* width_size
);
124 for (i
= 0; i
< height
; i
++) {
125 memset(dst
, uc
->ub
, width_size
);
131 for (i
= 0; i
< height
; i
++) {
132 uint16_t *row
= (uint16_t *)dst
;
133 for (j
= 0; j
< width
; j
++)
139 for (i
= 0; i
< height
; i
++) {
140 uint32_t *row
= (uint32_t *)dst
;
141 for (j
= 0; j
< width
; j
++)
151 for (i
= 0; i
< height
; i
++) {
153 for (j
= 0; j
< width
; j
++) {
154 memcpy(row
, uc
, blocksize
);