Merge commit 'origin/master' into gallium-0.2
[mesa.git] / src / gallium / auxiliary / pipebuffer / pb_buffer.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 /**
29 * \file
30 * Generic code for buffers.
31 *
32 * Behind a pipe buffle handle there can be DMA buffers, client (or user)
33 * buffers, regular malloced buffers, etc. This file provides an abstract base
34 * buffer handle that allows the driver to cope with all those kinds of buffers
35 * in a more flexible way.
36 *
37 * There is no obligation of a winsys driver to use this library. And a pipe
38 * driver should be completly agnostic about it.
39 *
40 * \author Jos� Fonseca <jrfonseca@tungstengraphics.com>
41 */
42
43 #ifndef PB_BUFFER_H_
44 #define PB_BUFFER_H_
45
46
47 #include "pipe/p_compiler.h"
48 #include "pipe/p_debug.h"
49 #include "pipe/p_state.h"
50 #include "pipe/p_inlines.h"
51
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57
58 struct pb_vtbl;
59
60 /**
61 * Buffer description.
62 *
63 * Used when allocating the buffer.
64 */
65 struct pb_desc
66 {
67 unsigned alignment;
68 unsigned usage;
69 };
70
71
72 /**
73 * Base class for all pb_* buffers.
74 */
75 struct pb_buffer
76 {
77 struct pipe_buffer base;
78
79 /**
80 * Pointer to the virtual function table.
81 *
82 * Avoid accessing this table directly. Use the inline functions below
83 * instead to avoid mistakes.
84 */
85 const struct pb_vtbl *vtbl;
86 };
87
88
89 /**
90 * Virtual function table for the buffer storage operations.
91 *
92 * Note that creation is not done through this table.
93 */
94 struct pb_vtbl
95 {
96 void (*destroy)( struct pb_buffer *buf );
97
98 /**
99 * Map the entire data store of a buffer object into the client's address.
100 * flags is bitmask of PIPE_BUFFER_FLAG_READ/WRITE.
101 */
102 void *(*map)( struct pb_buffer *buf,
103 unsigned flags );
104
105 void (*unmap)( struct pb_buffer *buf );
106
107 /**
108 * Get the base buffer and the offset.
109 *
110 * A buffer can be subdivided in smaller buffers. This method should return
111 * the underlaying buffer, and the relative offset.
112 *
113 * Buffers without an underlaying base buffer should return themselves, with
114 * a zero offset.
115 *
116 * Note that this will increase the reference count of the base buffer.
117 */
118 void (*get_base_buffer)( struct pb_buffer *buf,
119 struct pb_buffer **base_buf,
120 unsigned *offset );
121 };
122
123
124 static INLINE struct pipe_buffer *
125 pb_pipe_buffer( struct pb_buffer *pbuf )
126 {
127 assert(pbuf);
128 return &pbuf->base;
129 }
130
131
132 static INLINE struct pb_buffer *
133 pb_buffer( struct pipe_buffer *buf )
134 {
135 assert(buf);
136 /* Could add a magic cookie check on debug builds.
137 */
138 return (struct pb_buffer *)buf;
139 }
140
141
142 /* Accessor functions for pb->vtbl:
143 */
144 static INLINE void *
145 pb_map(struct pb_buffer *buf,
146 unsigned flags)
147 {
148 assert(buf);
149 if(!buf)
150 return NULL;
151 return buf->vtbl->map(buf, flags);
152 }
153
154
155 static INLINE void
156 pb_unmap(struct pb_buffer *buf)
157 {
158 assert(buf);
159 if(!buf)
160 return;
161 buf->vtbl->unmap(buf);
162 }
163
164
165 static INLINE void
166 pb_get_base_buffer( struct pb_buffer *buf,
167 struct pb_buffer **base_buf,
168 unsigned *offset )
169 {
170 assert(buf);
171 if(!buf) {
172 base_buf = NULL;
173 offset = 0;
174 return;
175 }
176 buf->vtbl->get_base_buffer(buf, base_buf, offset);
177 }
178
179
180 static INLINE void
181 pb_destroy(struct pb_buffer *buf)
182 {
183 assert(buf);
184 if(!buf)
185 return;
186 buf->vtbl->destroy(buf);
187 }
188
189
190 /* XXX: thread safety issues!
191 */
192 static INLINE void
193 pb_reference(struct pb_buffer **dst,
194 struct pb_buffer *src)
195 {
196 if (src)
197 src->base.refcount++;
198
199 if (*dst && --(*dst)->base.refcount == 0)
200 pb_destroy( *dst );
201
202 *dst = src;
203 }
204
205
206 /**
207 * Utility function to check whether the provided alignment is consistent with
208 * the requested or not.
209 */
210 static INLINE boolean
211 pb_check_alignment(size_t requested, size_t provided)
212 {
213 return requested <= provided && (provided % requested) == 0 ? TRUE : FALSE;
214 }
215
216
217 /**
218 * Utility function to check whether the provided alignment is consistent with
219 * the requested or not.
220 */
221 static INLINE boolean
222 pb_check_usage(unsigned requested, unsigned provided)
223 {
224 return (requested & provided) == requested ? TRUE : FALSE;
225 }
226
227
228 /**
229 * Malloc-based buffer to store data that can't be used by the graphics
230 * hardware.
231 */
232 struct pb_buffer *
233 pb_malloc_buffer_create(size_t size,
234 const struct pb_desc *desc);
235
236
237 void
238 pb_init_winsys(struct pipe_winsys *winsys);
239
240
241 #ifdef __cplusplus
242 }
243 #endif
244
245 #endif /*PB_BUFFER_H_*/