Merge branch 'upstream-gallium-0.1' into nouveau-gallium-0.1
[mesa.git] / src / gallium / auxiliary / util / p_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_context;
34 struct pipe_surface;
35
36
37 /**
38 * Clip tile against surface dims.
39 * \return TRUE if tile is totally clipped, FALSE otherwise
40 */
41 static INLINE boolean
42 pipe_clip_tile(uint x, uint y, uint *w, uint *h, const struct pipe_surface *ps)
43 {
44 if (x >= ps->width)
45 return TRUE;
46 if (y >= ps->height)
47 return TRUE;
48 if (x + *w > ps->width)
49 *w = ps->width - x;
50 if (y + *h > ps->height)
51 *h = ps->height - y;
52 return FALSE;
53 }
54
55
56 extern void
57 pipe_get_tile_raw(struct pipe_context *pipe,
58 struct pipe_surface *ps,
59 uint x, uint y, uint w, uint h,
60 void *p, int dst_stride);
61
62 extern void
63 pipe_put_tile_raw(struct pipe_context *pipe,
64 struct pipe_surface *ps,
65 uint x, uint y, uint w, uint h,
66 const void *p, int src_stride);
67
68
69 extern void
70 pipe_get_tile_rgba(struct pipe_context *pipe,
71 struct pipe_surface *ps,
72 uint x, uint y, uint w, uint h,
73 float *p);
74
75 extern void
76 pipe_put_tile_rgba(struct pipe_context *pipe,
77 struct pipe_surface *ps,
78 uint x, uint y, uint w, uint h,
79 const float *p);
80
81 #endif