Merge branch 'mesa_7_5_branch'
[mesa.git] / src / gallium / include / pipe / p_inlines.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_INLINES_H
29 #define P_INLINES_H
30
31 #include "p_context.h"
32 #include "p_defines.h"
33 #include "p_screen.h"
34
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40
41 /**
42 * Convenience wrappers for screen buffer functions.
43 */
44
45 static INLINE struct pipe_buffer *
46 pipe_buffer_create( struct pipe_screen *screen,
47 unsigned alignment, unsigned usage, unsigned size )
48 {
49 return screen->buffer_create(screen, alignment, usage, size);
50 }
51
52 static INLINE struct pipe_buffer *
53 pipe_user_buffer_create( struct pipe_screen *screen, void *ptr, unsigned size )
54 {
55 return screen->user_buffer_create(screen, ptr, size);
56 }
57
58 static INLINE void *
59 pipe_buffer_map(struct pipe_screen *screen,
60 struct pipe_buffer *buf,
61 unsigned usage)
62 {
63 if(screen->buffer_map_range) {
64 unsigned offset = 0;
65 unsigned length = buf->size;
66 return screen->buffer_map_range(screen, buf, offset, length, usage);
67 }
68 else
69 return screen->buffer_map(screen, buf, usage);
70 }
71
72 static INLINE void
73 pipe_buffer_unmap(struct pipe_screen *screen,
74 struct pipe_buffer *buf)
75 {
76 screen->buffer_unmap(screen, buf);
77 }
78
79 static INLINE void *
80 pipe_buffer_map_range(struct pipe_screen *screen,
81 struct pipe_buffer *buf,
82 unsigned offset,
83 unsigned length,
84 unsigned usage)
85 {
86 assert(offset < buf->size);
87 assert(offset + length <= buf->size);
88 assert(length);
89 if(screen->buffer_map_range)
90 return screen->buffer_map_range(screen, buf, offset, length, usage);
91 else
92 return screen->buffer_map(screen, buf, usage);
93 }
94
95 static INLINE void
96 pipe_buffer_flush_mapped_range(struct pipe_screen *screen,
97 struct pipe_buffer *buf,
98 unsigned offset,
99 unsigned length)
100 {
101 assert(offset < buf->size);
102 assert(offset + length <= buf->size);
103 assert(length);
104 if(screen->buffer_flush_mapped_range)
105 screen->buffer_flush_mapped_range(screen, buf, offset, length);
106 }
107
108 static INLINE void
109 pipe_buffer_write(struct pipe_screen *screen,
110 struct pipe_buffer *buf,
111 unsigned offset, unsigned size,
112 const void *data)
113 {
114 uint8_t *map;
115
116 assert(offset < buf->size);
117 assert(offset + size <= buf->size);
118 assert(size);
119
120 map = pipe_buffer_map_range(screen, buf, offset, size,
121 PIPE_BUFFER_USAGE_CPU_WRITE |
122 PIPE_BUFFER_USAGE_FLUSH_EXPLICIT);
123 assert(map);
124 if(map) {
125 memcpy(map + offset, data, size);
126 pipe_buffer_flush_mapped_range(screen, buf, offset, size);
127 pipe_buffer_unmap(screen, buf);
128 }
129 }
130
131 static INLINE void
132 pipe_buffer_read(struct pipe_screen *screen,
133 struct pipe_buffer *buf,
134 unsigned offset, unsigned size,
135 void *data)
136 {
137 uint8_t *map;
138
139 assert(offset < buf->size);
140 assert(offset + size <= buf->size);
141 assert(size);
142
143 map = pipe_buffer_map_range(screen, buf, offset, size, PIPE_BUFFER_USAGE_CPU_READ);
144 assert(map);
145 if(map) {
146 memcpy(data, map + offset, size);
147 pipe_buffer_unmap(screen, buf);
148 }
149 }
150
151
152 #ifdef __cplusplus
153 }
154 #endif
155
156 #endif /* P_INLINES_H */