1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
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
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 VMWARE 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 **************************************************************************/
29 #include "util/u_inlines.h"
30 #include "util/u_memory.h"
31 #include "util/u_math.h"
33 #include "lp_screen.h"
34 #include "lp_buffer.h"
38 llvmpipe_buffer_map(struct pipe_screen
*screen
,
39 struct pipe_buffer
*buf
,
42 struct llvmpipe_buffer
*llvmpipe_buf
= llvmpipe_buffer(buf
);
43 return llvmpipe_buf
->data
;
48 llvmpipe_buffer_unmap(struct pipe_screen
*screen
,
49 struct pipe_buffer
*buf
)
55 llvmpipe_buffer_destroy(struct pipe_buffer
*buf
)
57 struct llvmpipe_buffer
*sbuf
= llvmpipe_buffer(buf
);
59 if (!sbuf
->userBuffer
)
60 align_free(sbuf
->data
);
66 static struct pipe_buffer
*
67 llvmpipe_buffer_create(struct pipe_screen
*screen
,
72 struct llvmpipe_buffer
*buffer
= CALLOC_STRUCT(llvmpipe_buffer
);
74 pipe_reference_init(&buffer
->base
.reference
, 1);
75 buffer
->base
.screen
= screen
;
76 buffer
->base
.alignment
= MAX2(alignment
, 16);
77 buffer
->base
.usage
= usage
;
78 buffer
->base
.size
= size
;
80 buffer
->data
= align_malloc(size
, alignment
);
87 * Create buffer which wraps user-space data.
89 static struct pipe_buffer
*
90 llvmpipe_user_buffer_create(struct pipe_screen
*screen
,
94 struct llvmpipe_buffer
*buffer
;
96 buffer
= CALLOC_STRUCT(llvmpipe_buffer
);
100 pipe_reference_init(&buffer
->base
.reference
, 1);
101 buffer
->base
.screen
= screen
;
102 buffer
->base
.size
= bytes
;
103 buffer
->userBuffer
= TRUE
;
106 return &buffer
->base
;
111 llvmpipe_init_screen_buffer_funcs(struct pipe_screen
*screen
)
113 screen
->buffer_create
= llvmpipe_buffer_create
;
114 screen
->user_buffer_create
= llvmpipe_user_buffer_create
;
115 screen
->buffer_map
= llvmpipe_buffer_map
;
116 screen
->buffer_unmap
= llvmpipe_buffer_unmap
;
117 screen
->buffer_destroy
= llvmpipe_buffer_destroy
;