OSDN Git Service

Merge commit 'origin/master' into gallium-map-range
[android-x86/external-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    if(screen->buffer_map_range)
87       return screen->buffer_map_range(screen, buf, offset, length, usage);
88    else {
89       uint8_t *map;
90       map = screen->buffer_map(screen, buf, usage);
91       return map ? map + offset : NULL;
92    }
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    if(screen->buffer_flush_mapped_range)
102       screen->buffer_flush_mapped_range(screen, buf, offset, length);
103 }
104
105 static INLINE void
106 pipe_buffer_write(struct pipe_screen *screen,
107                   struct pipe_buffer *buf,
108                   unsigned offset, unsigned size,
109                   const void *data)
110 {
111    uint8_t *map;
112    
113    assert(offset < buf->size);
114    assert(offset + size <= buf->size);
115    
116    map = pipe_buffer_map_range(screen, buf, offset, size, PIPE_BUFFER_USAGE_CPU_WRITE);
117    assert(map);
118    if(map) {
119       memcpy(map, data, size);
120       pipe_buffer_flush_mapped_range(screen, buf, offset, size);
121       pipe_buffer_unmap(screen, buf);
122    }
123 }
124
125 static INLINE void
126 pipe_buffer_read(struct pipe_screen *screen,
127                  struct pipe_buffer *buf,
128                  unsigned offset, unsigned size,
129                  void *data)
130 {
131    uint8_t *map;
132    
133    assert(offset < buf->size);
134    assert(offset + size <= buf->size);
135    
136    map = pipe_buffer_map_range(screen, buf, offset, size, PIPE_BUFFER_USAGE_CPU_READ);
137    assert(map);
138    if(map) {
139       memcpy(data, map, size);
140       pipe_buffer_unmap(screen, buf);
141    }
142 }
143
144
145 #ifdef __cplusplus
146 }
147 #endif
148
149 #endif /* P_INLINES_H */