egl: Add EGL_WL_bind_wayland_display
[mesa.git] / src / egl / drivers / dri2 / egl_dri2.h
1 /*
2 * Copyright © 2011 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Kristian Høgsberg <krh@bitplanet.net>
26 */
27
28 #ifndef EGL_DRI2_INCLUDED
29 #define EGL_DRI2_INCLUDED
30
31 #include <xcb/xcb.h>
32 #include <xcb/dri2.h>
33 #include <xcb/xfixes.h>
34 #include <X11/Xlib-xcb.h>
35
36 #ifdef HAVE_WAYLAND_PLATFORM
37 #include <wayland-client.h>
38 #include "wayland-drm.h"
39 #include "wayland-egl-priv.h"
40 #endif
41
42 #include <GL/gl.h>
43 #include <GL/internal/dri_interface.h>
44
45 #include "eglconfig.h"
46 #include "eglcontext.h"
47 #include "egldisplay.h"
48 #include "egldriver.h"
49 #include "eglcurrent.h"
50 #include "egllog.h"
51 #include "eglsurface.h"
52 #include "eglimage.h"
53
54 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
55
56 struct dri2_egl_driver
57 {
58 _EGLDriver base;
59
60 void *handle;
61 _EGLProc (*get_proc_address)(const char *procname);
62 void (*glFlush)(void);
63 };
64
65 struct dri2_egl_display
66 {
67 xcb_connection_t *conn;
68 int dri2_major;
69 int dri2_minor;
70 __DRIscreen *dri_screen;
71 const __DRIconfig **driver_configs;
72 void *driver;
73 __DRIcoreExtension *core;
74 __DRIdri2Extension *dri2;
75 __DRIswrastExtension *swrast;
76 __DRI2flushExtension *flush;
77 __DRItexBufferExtension *tex_buffer;
78 __DRIimageExtension *image;
79 int fd;
80
81 char *device_name;
82 char *driver_name;
83
84 __DRIdri2LoaderExtension dri2_loader_extension;
85 __DRIswrastLoaderExtension swrast_loader_extension;
86 const __DRIextension *extensions[3];
87 #ifdef HAVE_WAYLAND_PLATFORM
88 struct wl_egl_display *wl_dpy;
89 struct wl_drm *wl_server_drm;
90 #endif
91
92 int (*authenticate) (struct dri2_egl_display *dri_dpy, uint32_t id);
93 };
94
95 struct dri2_egl_context
96 {
97 _EGLContext base;
98 __DRIcontext *dri_context;
99 };
100
101 #ifdef HAVE_WAYLAND_PLATFORM
102 enum wayland_buffer_type {
103 WL_BUFFER_FRONT,
104 WL_BUFFER_BACK,
105 WL_BUFFER_COUNT
106 };
107
108 #define __DRI_BUFFER_COUNT 10
109 #endif
110
111 enum dri2_surface_type {
112 DRI2_WINDOW_SURFACE,
113 DRI2_PIXMAP_SURFACE,
114 DRI2_PBUFFER_SURFACE
115 };
116
117 struct dri2_egl_surface
118 {
119 _EGLSurface base;
120 __DRIdrawable *dri_drawable;
121 xcb_drawable_t drawable;
122 __DRIbuffer buffers[5];
123 int buffer_count;
124 xcb_xfixes_region_t region;
125 int have_fake_front;
126 int swap_interval;
127
128 int depth;
129 int bytes_per_pixel;
130 xcb_gcontext_t gc;
131 xcb_gcontext_t swapgc;
132
133 enum dri2_surface_type type;
134 #ifdef HAVE_WAYLAND_PLATFORM
135 struct wl_egl_window *wl_win;
136 struct wl_egl_pixmap *wl_pix;
137 struct wl_buffer *wl_drm_buffer[WL_BUFFER_COUNT];
138 int dx;
139 int dy;
140 __DRIbuffer *dri_buffers[__DRI_BUFFER_COUNT];
141 __DRIbuffer *pending_buffer;
142 EGLBoolean block_swap_buffers;
143 #endif
144 };
145
146 struct dri2_egl_buffer {
147 __DRIbuffer *dri_buffer;
148 struct dri2_egl_display *dri2_dpy;
149 };
150
151
152 struct dri2_egl_config
153 {
154 _EGLConfig base;
155 const __DRIconfig *dri_single_config;
156 const __DRIconfig *dri_double_config;
157 };
158
159 struct dri2_egl_image
160 {
161 _EGLImage base;
162 __DRIimage *dri_image;
163 };
164
165 /* standard typecasts */
166 _EGL_DRIVER_STANDARD_TYPECASTS(dri2_egl)
167 _EGL_DRIVER_TYPECAST(dri2_egl_image, _EGLImage, obj)
168
169 extern const __DRIimageLookupExtension image_lookup_extension;
170 extern const __DRIuseInvalidateExtension use_invalidate;
171
172 EGLBoolean
173 dri2_load_driver(_EGLDisplay *disp);
174
175 EGLBoolean
176 dri2_create_screen(_EGLDisplay *disp);
177
178 struct dri2_egl_config *
179 dri2_add_config(_EGLDisplay *disp, const __DRIconfig *dri_config, int id,
180 int depth, EGLint surface_type, const EGLint *attr_list);
181
182 _EGLImage *
183 dri2_create_image_khr(_EGLDriver *drv, _EGLDisplay *disp,
184 _EGLContext *ctx, EGLenum target,
185 EGLClientBuffer buffer, const EGLint *attr_list);
186
187 EGLBoolean
188 dri2_initialize_x11(_EGLDriver *drv, _EGLDisplay *disp);
189
190 EGLBoolean
191 dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp);
192
193 EGLBoolean
194 dri2_initialize_wayland(_EGLDriver *drv, _EGLDisplay *disp);
195
196 char *
197 dri2_get_driver_for_fd(int fd);
198
199 #endif /* EGL_DRI2_INCLUDED */