Merge commit 'origin/gallium-0.1' into gallium-tex-surfaces
[mesa.git] / src / gallium / include / pipe / p_winsys.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 * This is the interface that Gallium3D requires any window system
31 * hosting it to implement. This is the only include file in Gallium3D
32 * which is public.
33 */
34
35 #ifndef P_WINSYS_H
36 #define P_WINSYS_H
37
38
39 #include "p_format.h"
40
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46
47 /** Opaque type */
48 struct pipe_fence_handle;
49
50 struct pipe_surface;
51
52
53 /**
54 * Gallium3D drivers are (meant to be!) independent of both GL and the
55 * window system. The window system provides a buffer manager and a
56 * set of additional hooks for things like command buffer submission,
57 * etc.
58 *
59 * There clearly has to be some agreement between the window system
60 * driver and the hardware driver about the format of command buffers,
61 * etc.
62 */
63 struct pipe_winsys
64 {
65 /** Returns name of this winsys interface */
66 const char *(*get_name)( struct pipe_winsys *ws );
67
68 /**
69 * Do any special operations to ensure frontbuffer contents are
70 * displayed, eg copy fake frontbuffer.
71 */
72 void (*flush_frontbuffer)( struct pipe_winsys *ws,
73 struct pipe_surface *surf,
74 void *context_private );
75
76
77 /** allocate a new surface (no context dependency) */
78 struct pipe_surface *(*surface_alloc)(struct pipe_winsys *ws);
79
80 /**
81 * Allocate storage for a pipe_surface.
82 * \param flags XXX unused, remove someday
83 * \return 0 if succeeds.
84 */
85 int (*surface_alloc_storage)(struct pipe_winsys *ws,
86 struct pipe_surface *surf,
87 unsigned width, unsigned height,
88 enum pipe_format format,
89 unsigned flags,
90 unsigned tex_usage);
91
92 void (*surface_release)(struct pipe_winsys *ws, struct pipe_surface **s);
93
94
95 /**
96 * Buffer management. Buffer attributes are mostly fixed over its lifetime.
97 *
98 * Remember that gallium gets to choose the interface it needs, and the
99 * window systems must then implement that interface (rather than the
100 * other way around...).
101 *
102 * usage is a bitmask of PIPE_BUFFER_USAGE_PIXEL/VERTEX/INDEX/CONSTANT. This
103 * usage argument is only an optimization hint, not a guarantee, therefore
104 * proper behavior must be observed in all circumstances.
105 *
106 * alignment indicates the client's alignment requirements, eg for
107 * SSE instructions.
108 */
109 struct pipe_buffer *(*buffer_create)( struct pipe_winsys *ws,
110 unsigned alignment,
111 unsigned usage,
112 unsigned size );
113
114 /**
115 * Create a buffer that wraps user-space data.
116 *
117 * Effectively this schedules a delayed call to buffer_create
118 * followed by an upload of the data at *some point in the future*,
119 * or perhaps never. Basically the allocate/upload is delayed
120 * until the buffer is actually passed to hardware.
121 *
122 * The intention is to provide a quick way to turn regular data
123 * into a buffer, and secondly to avoid a copy operation if that
124 * data subsequently turns out to be only accessed by the CPU.
125 *
126 * Common example is OpenGL vertex buffers that are subsequently
127 * processed either by software TNL in the driver or by passing to
128 * hardware.
129 *
130 * XXX: What happens if the delayed call to buffer_create() fails?
131 *
132 * Note that ptr may be accessed at any time upto the time when the
133 * buffer is destroyed, so the data must not be freed before then.
134 */
135 struct pipe_buffer *(*user_buffer_create)(struct pipe_winsys *ws,
136 void *ptr,
137 unsigned bytes);
138
139 /**
140 * Map the entire data store of a buffer object into the client's address.
141 * flags is bitmask of PIPE_BUFFER_USAGE_CPU_READ/WRITE flags.
142 */
143 void *(*buffer_map)( struct pipe_winsys *ws,
144 struct pipe_buffer *buf,
145 unsigned usage );
146
147 void (*buffer_unmap)( struct pipe_winsys *ws,
148 struct pipe_buffer *buf );
149
150 void (*buffer_destroy)( struct pipe_winsys *ws,
151 struct pipe_buffer *buf );
152
153
154 /** Set ptr = fence, with reference counting */
155 void (*fence_reference)( struct pipe_winsys *ws,
156 struct pipe_fence_handle **ptr,
157 struct pipe_fence_handle *fence );
158
159 /**
160 * Checks whether the fence has been signalled.
161 * \param flags driver-specific meaning
162 * \return zero on success.
163 */
164 int (*fence_signalled)( struct pipe_winsys *ws,
165 struct pipe_fence_handle *fence,
166 unsigned flag );
167
168 /**
169 * Wait for the fence to finish.
170 * \param flags driver-specific meaning
171 * \return zero on success.
172 */
173 int (*fence_finish)( struct pipe_winsys *ws,
174 struct pipe_fence_handle *fence,
175 unsigned flag );
176
177 };
178
179
180 #ifdef __cplusplus
181 }
182 #endif
183
184 #endif /* P_WINSYS_H */