Merge remote branch 'nouveau/gallium-0.1' into nouveau-gallium-0.1
[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 return buf->vtbl->map(buf, flags);
150 }
151
152
153 static INLINE void
154 pb_unmap(struct pb_buffer *buf)
155 {
156 assert(buf);
157 buf->vtbl->unmap(buf);
158 }
159
160
161 static INLINE void
162 pb_get_base_buffer( struct pb_buffer *buf,
163 struct pb_buffer **base_buf,
164 unsigned *offset )
165 {
166 buf->vtbl->get_base_buffer(buf, base_buf, offset);
167 }
168
169
170 static INLINE void
171 pb_destroy(struct pb_buffer *buf)
172 {
173 assert(buf);
174 assert(buf->vtbl);
175 buf->vtbl->destroy(buf);
176 }
177
178
179 /* XXX: thread safety issues!
180 */
181 static INLINE void
182 pb_reference(struct pb_buffer **dst,
183 struct pb_buffer *src)
184 {
185 if (src)
186 src->base.refcount++;
187
188 if (*dst && --(*dst)->base.refcount == 0)
189 pb_destroy( *dst );
190
191 *dst = src;
192 }
193
194
195 /**
196 * Malloc-based buffer to store data that can't be used by the graphics
197 * hardware.
198 */
199 struct pb_buffer *
200 pb_malloc_buffer_create(size_t size,
201 const struct pb_desc *desc);
202
203
204 void
205 pb_init_winsys(struct pipe_winsys *winsys);
206
207
208 #ifdef __cplusplus
209 }
210 #endif
211
212 #endif /*PB_BUFFER_H_*/