Merge remote branch 'origin/nvc0'
[mesa.git] / src / gallium / state_trackers / egl / common / native.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 7.8
4 *
5 * Copyright (C) 2009-2010 Chia-I Wu <olv@0xlab.org>
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 */
25
26 #ifndef _NATIVE_H_
27 #define _NATIVE_H_
28
29 #include "EGL/egl.h" /* for EGL native types */
30
31 #include "pipe/p_compiler.h"
32 #include "pipe/p_screen.h"
33 #include "pipe/p_context.h"
34 #include "pipe/p_state.h"
35 #include "state_tracker/sw_winsys.h"
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 #include "native_buffer.h"
42 #include "native_modeset.h"
43
44 /**
45 * Only color buffers are listed. The others are allocated privately through,
46 * for example, st_renderbuffer_alloc_storage().
47 */
48 enum native_attachment {
49 NATIVE_ATTACHMENT_FRONT_LEFT,
50 NATIVE_ATTACHMENT_BACK_LEFT,
51 NATIVE_ATTACHMENT_FRONT_RIGHT,
52 NATIVE_ATTACHMENT_BACK_RIGHT,
53
54 NUM_NATIVE_ATTACHMENTS
55 };
56
57 enum native_param_type {
58 /*
59 * Return TRUE if window/pixmap surfaces use the buffers of the native
60 * types.
61 */
62 NATIVE_PARAM_USE_NATIVE_BUFFER,
63
64 /**
65 * Return TRUE if native_surface::present can preserve the buffer.
66 */
67 NATIVE_PARAM_PRESERVE_BUFFER,
68
69 /**
70 * Return the maximum supported swap interval.
71 */
72 NATIVE_PARAM_MAX_SWAP_INTERVAL
73 };
74
75 struct native_surface {
76 /**
77 * Available for caller's use.
78 */
79 void *user_data;
80
81 void (*destroy)(struct native_surface *nsurf);
82
83 /**
84 * Present the given buffer to the native engine.
85 */
86 boolean (*present)(struct native_surface *nsurf,
87 enum native_attachment natt,
88 boolean preserve,
89 uint swap_interval);
90
91 /**
92 * Validate the buffers of the surface. textures, if not NULL, points to an
93 * array of size NUM_NATIVE_ATTACHMENTS and the returned textures are owned
94 * by the caller. A sequence number is also returned. The caller can use
95 * it to check if anything has changed since the last call. Any of the
96 * pointers may be NULL and it indicates the caller has no interest in those
97 * values.
98 *
99 * If this function is called multiple times with different attachment
100 * masks, those not listed in the latest call might be destroyed. This
101 * behavior might change in the future.
102 */
103 boolean (*validate)(struct native_surface *nsurf, uint attachment_mask,
104 unsigned int *seq_num, struct pipe_resource **textures,
105 int *width, int *height);
106
107 /**
108 * Wait until all native commands affecting the surface has been executed.
109 */
110 void (*wait)(struct native_surface *nsurf);
111 };
112
113 /**
114 * Describe a native display config.
115 */
116 struct native_config {
117 /* available buffers and their format */
118 uint buffer_mask;
119 enum pipe_format color_format;
120
121 /* supported surface types */
122 boolean window_bit;
123 boolean pixmap_bit;
124 boolean scanout_bit;
125
126 int native_visual_id;
127 int native_visual_type;
128 int level;
129 boolean transparent_rgb;
130 int transparent_rgb_values[3];
131 };
132
133 /**
134 * A pipe winsys abstracts the OS. A pipe screen abstracts the graphcis
135 * hardware. A native display consists of a pipe winsys, a pipe screen, and
136 * the native display server.
137 */
138 struct native_display {
139 /**
140 * The pipe screen of the native display.
141 */
142 struct pipe_screen *screen;
143
144 /**
145 * Context used for copy operations.
146 */
147 struct pipe_context *pipe;
148
149 /**
150 * Available for caller's use.
151 */
152 void *user_data;
153
154 void (*destroy)(struct native_display *ndpy);
155
156 /**
157 * Query the parameters of the native display.
158 *
159 * The return value is defined by the parameter.
160 */
161 int (*get_param)(struct native_display *ndpy,
162 enum native_param_type param);
163
164 /**
165 * Get the supported configs. The configs are owned by the display, but
166 * the returned array should be FREE()ed.
167 */
168 const struct native_config **(*get_configs)(struct native_display *ndpy,
169 int *num_configs);
170
171 /**
172 * Test if a pixmap is supported by the given config. Required unless no
173 * config has pixmap_bit set.
174 *
175 * This function is usually called to find a config that supports a given
176 * pixmap. Thus, it is usually called with the same pixmap in a row.
177 */
178 boolean (*is_pixmap_supported)(struct native_display *ndpy,
179 EGLNativePixmapType pix,
180 const struct native_config *nconf);
181
182
183 /**
184 * Create a window surface. Required unless no config has window_bit set.
185 */
186 struct native_surface *(*create_window_surface)(struct native_display *ndpy,
187 EGLNativeWindowType win,
188 const struct native_config *nconf);
189
190 /**
191 * Create a pixmap surface. The native config may be NULL. In that case, a
192 * "best config" will be picked. Required unless no config has pixmap_bit
193 * set.
194 */
195 struct native_surface *(*create_pixmap_surface)(struct native_display *ndpy,
196 EGLNativePixmapType pix,
197 const struct native_config *nconf);
198
199 const struct native_display_buffer *buffer;
200 const struct native_display_modeset *modeset;
201 };
202
203 /**
204 * The handler for events that a native display may generate. The events are
205 * generated asynchronously and the handler may be called by any thread at any
206 * time.
207 */
208 struct native_event_handler {
209 /**
210 * This function is called when a surface needs to be validated.
211 */
212 void (*invalid_surface)(struct native_display *ndpy,
213 struct native_surface *nsurf,
214 unsigned int seq_num);
215
216 struct pipe_screen *(*new_drm_screen)(struct native_display *ndpy,
217 const char *name, int fd);
218 struct pipe_screen *(*new_sw_screen)(struct native_display *ndpy,
219 struct sw_winsys *ws);
220 };
221
222 /**
223 * Test whether an attachment is set in the mask.
224 */
225 static INLINE boolean
226 native_attachment_mask_test(uint mask, enum native_attachment att)
227 {
228 return !!(mask & (1 << att));
229 }
230
231 /**
232 * Get the display copy context
233 */
234 static INLINE struct pipe_context *
235 ndpy_get_copy_context(struct native_display *ndpy)
236 {
237 if (!ndpy->pipe)
238 ndpy->pipe = ndpy->screen->context_create(ndpy->screen, NULL);
239 return ndpy->pipe;
240 }
241
242 /**
243 * Free display screen and context resources
244 */
245 static INLINE void
246 ndpy_uninit(struct native_display *ndpy)
247 {
248 if (ndpy->pipe)
249 ndpy->pipe->destroy(ndpy->pipe);
250 if (ndpy->screen)
251 ndpy->screen->destroy(ndpy->screen);
252 }
253
254 struct native_platform {
255 const char *name;
256
257 void (*set_event_handler)(struct native_event_handler *handler);
258 struct native_display *(*create_display)(void *dpy,
259 boolean use_sw,
260 void *user_data);
261 };
262
263 const struct native_platform *
264 native_get_gdi_platform(void);
265
266 const struct native_platform *
267 native_get_x11_platform(void);
268
269 const struct native_platform *
270 native_get_wayland_platform(void);
271
272 const struct native_platform *
273 native_get_drm_platform(void);
274
275 const struct native_platform *
276 native_get_fbdev_platform(void);
277
278 #ifdef __cplusplus
279 }
280 #endif
281
282 #endif /* _NATIVE_H_ */