1d8ce7d8cbc3f7402812e9eeed33776a16be883a
[profile/ivi/mesa.git] / src / gallium / auxiliary / util / u_tile.h
1 /**************************************************************************
2  * 
3  * Copyright 2007 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:
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 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.
25  * 
26  **************************************************************************/
27
28 #ifndef P_TILE_H
29 #define P_TILE_H
30
31 #include "pipe/p_compiler.h"
32
33 struct pipe_transfer;
34
35
36 /**
37  * Clip tile against transfer dims.
38  * \return TRUE if tile is totally clipped, FALSE otherwise
39  */
40 static INLINE boolean
41 pipe_clip_tile(uint x, uint y, uint *w, uint *h, const struct pipe_transfer *pt)
42 {
43    if (x >= pt->width)
44       return TRUE;
45    if (y >= pt->height)
46       return TRUE;
47    if (x + *w > pt->width)
48       *w = pt->width - x;
49    if (y + *h > pt->height)
50       *h = pt->height - y;
51    return FALSE;
52 }
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 void
59 pipe_get_tile_raw(struct pipe_context *pipe,
60                   struct pipe_transfer *pt,
61                   uint x, uint y, uint w, uint h,
62                   void *p, int dst_stride);
63
64 void
65 pipe_put_tile_raw(struct pipe_context *pipe,
66                   struct pipe_transfer *pt,
67                   uint x, uint y, uint w, uint h,
68                   const void *p, int src_stride);
69
70
71 void
72 pipe_get_tile_rgba(struct pipe_context *pipe,
73                    struct pipe_transfer *pt,
74                    uint x, uint y, uint w, uint h,
75                    float *p);
76
77 void
78 pipe_get_tile_swizzle(struct pipe_context *pipe,
79                       struct pipe_transfer *pt,
80                       uint x,
81                       uint y,
82                       uint w,
83                       uint h,
84                       uint swizzle_r,
85                       uint swizzle_g,
86                       uint swizzle_b,
87                       uint swizzle_a,
88                       enum pipe_format format,
89                       float *p);
90
91 void
92 pipe_put_tile_rgba(struct pipe_context *pipe,
93                    struct pipe_transfer *pt,
94                    uint x, uint y, uint w, uint h,
95                    const float *p);
96
97
98 void
99 pipe_get_tile_z(struct pipe_context *pipe,
100                 struct pipe_transfer *pt,
101                 uint x, uint y, uint w, uint h,
102                 uint *z);
103
104 void
105 pipe_put_tile_z(struct pipe_context *pipe,
106                 struct pipe_transfer *pt,
107                 uint x, uint y, uint w, uint h,
108                 const uint *z);
109
110 void
111 pipe_tile_raw_to_rgba(enum pipe_format format,
112                       void *src,
113                       uint w, uint h,
114                       float *dst, unsigned dst_stride);
115
116
117 #ifdef __cplusplus
118 }
119 #endif
120
121 #endif