revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / gallium / auxiliary / pipebuffer / pb_buffer_malloc.c
blob5754f4761887ebeeda0a92143f7afdfbcfbe7563
1 /**************************************************************************
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
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
16 * of the Software.
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 **************************************************************************/
28 /**
29 * \file
30 * Implementation of malloc-based buffers to store data that can't be processed
31 * by the hardware.
33 * \author Jose Fonseca <jrfonseca@tungstengraphics.com>
37 #include "util/u_debug.h"
38 #include "util/u_memory.h"
39 #include "pb_buffer.h"
40 #include "pb_bufmgr.h"
43 struct malloc_buffer
45 struct pb_buffer base;
46 void *data;
50 extern const struct pb_vtbl malloc_buffer_vtbl;
52 static INLINE struct malloc_buffer *
53 malloc_buffer(struct pb_buffer *buf)
55 assert(buf);
56 if (!buf)
57 return NULL;
58 assert(buf->vtbl == &malloc_buffer_vtbl);
59 return (struct malloc_buffer *)buf;
63 static void
64 malloc_buffer_destroy(struct pb_buffer *buf)
66 align_free(malloc_buffer(buf)->data);
67 FREE(buf);
71 static void *
72 malloc_buffer_map(struct pb_buffer *buf,
73 unsigned flags,
74 void *flush_ctx)
76 return malloc_buffer(buf)->data;
80 static void
81 malloc_buffer_unmap(struct pb_buffer *buf)
83 /* No-op */
87 static enum pipe_error
88 malloc_buffer_validate(struct pb_buffer *buf,
89 struct pb_validate *vl,
90 unsigned flags)
92 assert(0);
93 return PIPE_ERROR;
97 static void
98 malloc_buffer_fence(struct pb_buffer *buf,
99 struct pipe_fence_handle *fence)
101 assert(0);
105 static void
106 malloc_buffer_get_base_buffer(struct pb_buffer *buf,
107 struct pb_buffer **base_buf,
108 pb_size *offset)
110 *base_buf = buf;
111 *offset = 0;
115 const struct pb_vtbl
116 malloc_buffer_vtbl = {
117 malloc_buffer_destroy,
118 malloc_buffer_map,
119 malloc_buffer_unmap,
120 malloc_buffer_validate,
121 malloc_buffer_fence,
122 malloc_buffer_get_base_buffer
126 struct pb_buffer *
127 pb_malloc_buffer_create(pb_size size,
128 const struct pb_desc *desc)
130 struct malloc_buffer *buf;
132 /* TODO: do a single allocation */
134 buf = CALLOC_STRUCT(malloc_buffer);
135 if(!buf)
136 return NULL;
138 pipe_reference_init(&buf->base.base.reference, 1);
139 buf->base.base.usage = desc->usage;
140 buf->base.base.size = size;
141 buf->base.base.alignment = desc->alignment;
142 buf->base.vtbl = &malloc_buffer_vtbl;
144 buf->data = align_malloc(size, desc->alignment < sizeof(void*) ? sizeof(void*) : desc->alignment);
145 if(!buf->data) {
146 FREE(buf);
147 return NULL;
150 return &buf->base;
154 static struct pb_buffer *
155 pb_malloc_bufmgr_create_buffer(struct pb_manager *mgr,
156 pb_size size,
157 const struct pb_desc *desc)
159 return pb_malloc_buffer_create(size, desc);
163 static void
164 pb_malloc_bufmgr_flush(struct pb_manager *mgr)
166 /* No-op */
170 static void
171 pb_malloc_bufmgr_destroy(struct pb_manager *mgr)
173 /* No-op */
177 static boolean
178 pb_malloc_bufmgr_is_buffer_busy( struct pb_manager *mgr,
179 struct pb_buffer *buf )
181 return FALSE;
185 static struct pb_manager
186 pb_malloc_bufmgr = {
187 pb_malloc_bufmgr_destroy,
188 pb_malloc_bufmgr_create_buffer,
189 pb_malloc_bufmgr_flush,
190 pb_malloc_bufmgr_is_buffer_busy
194 struct pb_manager *
195 pb_malloc_bufmgr_create(void)
197 return &pb_malloc_bufmgr;