4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 #include "qemu/osdep.h"
21 #include "qemu/error-report.h"
22 #include "ui/console.h"
23 #include "ui/egl-helpers.h"
25 EGLDisplay *qemu_egl_display;
26 EGLConfig qemu_egl_config;
27 DisplayGLMode qemu_egl_mode;
29 /* ------------------------------------------------------------------ */
31 static void egl_fb_delete_texture(egl_fb *fb)
33 if (!fb->delete_texture) {
37 glDeleteTextures(1, &fb->texture);
38 fb->delete_texture = false;
41 void egl_fb_destroy(egl_fb *fb)
43 if (!fb->framebuffer) {
47 egl_fb_delete_texture(fb);
48 glDeleteFramebuffers(1, &fb->framebuffer);
56 void egl_fb_setup_default(egl_fb *fb, int width, int height)
60 fb->framebuffer = 0; /* default framebuffer */
63 void egl_fb_setup_for_tex(egl_fb *fb, int width, int height,
64 GLuint texture, bool delete)
66 egl_fb_delete_texture(fb);
70 fb->texture = texture;
71 fb->delete_texture = delete;
72 if (!fb->framebuffer) {
73 glGenFramebuffers(1, &fb->framebuffer);
76 glBindFramebuffer(GL_FRAMEBUFFER_EXT, fb->framebuffer);
77 glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT,
78 GL_TEXTURE_2D, fb->texture, 0);
81 void egl_fb_setup_new_tex(egl_fb *fb, int width, int height)
85 glGenTextures(1, &texture);
86 glBindTexture(GL_TEXTURE_2D, texture);
87 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height,
88 0, GL_BGRA, GL_UNSIGNED_BYTE, 0);
90 egl_fb_setup_for_tex(fb, width, height, texture, true);
93 void egl_fb_blit(egl_fb *dst, egl_fb *src, bool flip)
97 glBindFramebuffer(GL_READ_FRAMEBUFFER, src->framebuffer);
98 glBindFramebuffer(GL_DRAW_FRAMEBUFFER, dst->framebuffer);
99 glViewport(0, 0, dst->width, dst->height);
100 y1 = flip ? src->height : 0;
101 y2 = flip ? 0 : src->height;
102 glBlitFramebuffer(0, y1, src->width, y2,
103 0, 0, dst->width, dst->height,
104 GL_COLOR_BUFFER_BIT, GL_LINEAR);
107 void egl_fb_read(void *dst, egl_fb *src)
109 glBindFramebuffer(GL_READ_FRAMEBUFFER, src->framebuffer);
110 glReadBuffer(GL_COLOR_ATTACHMENT0_EXT);
111 glReadPixels(0, 0, src->width, src->height,
112 GL_BGRA, GL_UNSIGNED_BYTE, dst);
115 void egl_texture_blit(QemuGLShader *gls, egl_fb *dst, egl_fb *src, bool flip)
117 glBindFramebuffer(GL_FRAMEBUFFER_EXT, dst->framebuffer);
118 glViewport(0, 0, dst->width, dst->height);
119 glEnable(GL_TEXTURE_2D);
120 glBindTexture(GL_TEXTURE_2D, src->texture);
121 qemu_gl_run_texture_blit(gls, flip);
124 void egl_texture_blend(QemuGLShader *gls, egl_fb *dst, egl_fb *src, bool flip,
127 glBindFramebuffer(GL_FRAMEBUFFER_EXT, dst->framebuffer);
129 glViewport(x, y, src->width, src->height);
131 glViewport(x, dst->height - src->height - y,
132 src->width, src->height);
134 glEnable(GL_TEXTURE_2D);
135 glBindTexture(GL_TEXTURE_2D, src->texture);
137 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
138 qemu_gl_run_texture_blit(gls, flip);
142 /* ---------------------------------------------------------------------- */
144 #ifdef CONFIG_OPENGL_DMABUF
147 struct gbm_device *qemu_egl_rn_gbm_dev;
148 EGLContext qemu_egl_rn_ctx;
150 static int qemu_egl_rendernode_open(const char *rendernode)
158 return open(rendernode, O_RDWR | O_CLOEXEC | O_NOCTTY | O_NONBLOCK);
161 dir = opendir("/dev/dri");
167 while ((e = readdir(dir))) {
168 if (e->d_type != DT_CHR) {
172 if (strncmp(e->d_name, "renderD", 7)) {
176 p = g_strdup_printf("/dev/dri/%s", e->d_name);
178 r = open(p, O_RDWR | O_CLOEXEC | O_NOCTTY | O_NONBLOCK);
195 int egl_rendernode_init(const char *rendernode, DisplayGLMode mode)
200 qemu_egl_rn_fd = qemu_egl_rendernode_open(rendernode);
201 if (qemu_egl_rn_fd == -1) {
202 error_report("egl: no drm render node available");
206 qemu_egl_rn_gbm_dev = gbm_create_device(qemu_egl_rn_fd);
207 if (!qemu_egl_rn_gbm_dev) {
208 error_report("egl: gbm_create_device failed");
212 rc = qemu_egl_init_dpy_mesa((EGLNativeDisplayType)qemu_egl_rn_gbm_dev,
215 /* qemu_egl_init_dpy_mesa reports error */
219 if (!epoxy_has_egl_extension(qemu_egl_display,
220 "EGL_KHR_surfaceless_context")) {
221 error_report("egl: EGL_KHR_surfaceless_context not supported");
224 if (!epoxy_has_egl_extension(qemu_egl_display,
225 "EGL_MESA_image_dma_buf_export")) {
226 error_report("egl: EGL_MESA_image_dma_buf_export not supported");
230 qemu_egl_rn_ctx = qemu_egl_init_ctx();
231 if (!qemu_egl_rn_ctx) {
232 error_report("egl: egl_init_ctx failed");
239 if (qemu_egl_rn_gbm_dev) {
240 gbm_device_destroy(qemu_egl_rn_gbm_dev);
242 if (qemu_egl_rn_fd != -1) {
243 close(qemu_egl_rn_fd);
249 int egl_get_fd_for_texture(uint32_t tex_id, EGLint *stride, EGLint *fourcc)
252 EGLint num_planes, fd;
254 image = eglCreateImageKHR(qemu_egl_display, eglGetCurrentContext(),
255 EGL_GL_TEXTURE_2D_KHR,
256 (EGLClientBuffer)(unsigned long)tex_id,
262 eglExportDMABUFImageQueryMESA(qemu_egl_display, image, fourcc,
264 if (num_planes != 1) {
265 eglDestroyImageKHR(qemu_egl_display, image);
268 eglExportDMABUFImageMESA(qemu_egl_display, image, &fd, stride, NULL);
269 eglDestroyImageKHR(qemu_egl_display, image);
274 void egl_dmabuf_import_texture(QemuDmaBuf *dmabuf)
276 EGLImageKHR image = EGL_NO_IMAGE_KHR;
278 EGL_DMA_BUF_PLANE0_FD_EXT, dmabuf->fd,
279 EGL_DMA_BUF_PLANE0_PITCH_EXT, dmabuf->stride,
280 EGL_DMA_BUF_PLANE0_OFFSET_EXT, 0,
281 EGL_WIDTH, dmabuf->width,
282 EGL_HEIGHT, dmabuf->height,
283 EGL_LINUX_DRM_FOURCC_EXT, dmabuf->fourcc,
284 EGL_NONE, /* end of list */
287 if (dmabuf->texture != 0) {
291 image = eglCreateImageKHR(qemu_egl_display,
293 EGL_LINUX_DMA_BUF_EXT,
295 if (image == EGL_NO_IMAGE_KHR) {
296 error_report("eglCreateImageKHR failed");
300 glGenTextures(1, &dmabuf->texture);
301 glBindTexture(GL_TEXTURE_2D, dmabuf->texture);
302 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
303 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
305 glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, (GLeglImageOES)image);
306 eglDestroyImageKHR(qemu_egl_display, image);
309 void egl_dmabuf_release_texture(QemuDmaBuf *dmabuf)
311 if (dmabuf->texture == 0) {
315 glDeleteTextures(1, &dmabuf->texture);
319 #endif /* CONFIG_OPENGL_DMABUF */
321 /* ---------------------------------------------------------------------- */
323 EGLSurface qemu_egl_init_surface_x11(EGLContext ectx, Window win)
328 esurface = eglCreateWindowSurface(qemu_egl_display,
330 (EGLNativeWindowType)win, NULL);
331 if (esurface == EGL_NO_SURFACE) {
332 error_report("egl: eglCreateWindowSurface failed");
336 b = eglMakeCurrent(qemu_egl_display, esurface, esurface, ectx);
337 if (b == EGL_FALSE) {
338 error_report("egl: eglMakeCurrent failed");
345 /* ---------------------------------------------------------------------- */
348 * Taken from glamor_egl.h from the Xorg xserver, which is MIT licensed
350 * Create an EGLDisplay from a native display type. This is a little quirky
353 * 1: GetPlatformDisplayEXT and GetPlatformDisplay are the API you want to
354 * use, but have different function signatures in the third argument; this
355 * happens not to matter for us, at the moment, but it means epoxy won't alias
358 * 2: epoxy 1.3 and earlier don't understand EGL client extensions, which
359 * means you can't call "eglGetPlatformDisplayEXT" directly, as the resolver
362 * 3: You can't tell whether you have EGL 1.5 at this point, because
363 * eglQueryString(EGL_VERSION) is a property of the display, which we don't
364 * have yet. So you have to query for extensions no matter what. Fortunately
365 * epoxy_has_egl_extension _does_ let you query for client extensions, so
366 * we don't have to write our own extension string parsing.
368 * 4. There is no EGL_KHR_platform_base to complement the EXT one, thus one
369 * needs to know EGL 1.5 is supported in order to use the eglGetPlatformDisplay
371 * We can workaround this (circular dependency) by probing for the EGL 1.5
372 * platform extensions (EGL_KHR_platform_gbm and friends) yet it doesn't seem
373 * like mesa will be able to advertise these (even though it can do EGL 1.5).
375 static EGLDisplay qemu_egl_get_display(EGLNativeDisplayType native,
378 EGLDisplay dpy = EGL_NO_DISPLAY;
380 /* In practise any EGL 1.5 implementation would support the EXT extension */
381 if (epoxy_has_egl_extension(NULL, "EGL_EXT_platform_base")) {
382 PFNEGLGETPLATFORMDISPLAYEXTPROC getPlatformDisplayEXT =
383 (void *) eglGetProcAddress("eglGetPlatformDisplayEXT");
384 if (getPlatformDisplayEXT && platform != 0) {
385 dpy = getPlatformDisplayEXT(platform, native, NULL);
389 if (dpy == EGL_NO_DISPLAY) {
391 dpy = eglGetDisplay(native);
396 static int qemu_egl_init_dpy(EGLNativeDisplayType dpy,
400 static const EGLint conf_att_core[] = {
401 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
402 EGL_RENDERABLE_TYPE, EGL_OPENGL_BIT,
409 static const EGLint conf_att_gles[] = {
410 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
411 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
421 bool gles = (mode == DISPLAYGL_MODE_ES);
423 qemu_egl_display = qemu_egl_get_display(dpy, platform);
424 if (qemu_egl_display == EGL_NO_DISPLAY) {
425 error_report("egl: eglGetDisplay failed");
429 b = eglInitialize(qemu_egl_display, &major, &minor);
430 if (b == EGL_FALSE) {
431 error_report("egl: eglInitialize failed");
435 b = eglBindAPI(gles ? EGL_OPENGL_ES_API : EGL_OPENGL_API);
436 if (b == EGL_FALSE) {
437 error_report("egl: eglBindAPI failed (%s mode)",
438 gles ? "gles" : "core");
442 b = eglChooseConfig(qemu_egl_display,
443 gles ? conf_att_gles : conf_att_core,
444 &qemu_egl_config, 1, &n);
445 if (b == EGL_FALSE || n != 1) {
446 error_report("egl: eglChooseConfig failed (%s mode)",
447 gles ? "gles" : "core");
451 qemu_egl_mode = gles ? DISPLAYGL_MODE_ES : DISPLAYGL_MODE_CORE;
455 int qemu_egl_init_dpy_x11(EGLNativeDisplayType dpy, DisplayGLMode mode)
457 #ifdef EGL_KHR_platform_x11
458 return qemu_egl_init_dpy(dpy, EGL_PLATFORM_X11_KHR, mode);
460 return qemu_egl_init_dpy(dpy, 0, mode);
464 int qemu_egl_init_dpy_mesa(EGLNativeDisplayType dpy, DisplayGLMode mode)
466 #ifdef EGL_MESA_platform_gbm
467 return qemu_egl_init_dpy(dpy, EGL_PLATFORM_GBM_MESA, mode);
469 return qemu_egl_init_dpy(dpy, 0, mode);
473 EGLContext qemu_egl_init_ctx(void)
475 static const EGLint ctx_att_core[] = {
476 EGL_CONTEXT_OPENGL_PROFILE_MASK, EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT,
479 static const EGLint ctx_att_gles[] = {
480 EGL_CONTEXT_CLIENT_VERSION, 2,
483 bool gles = (qemu_egl_mode == DISPLAYGL_MODE_ES);
487 ectx = eglCreateContext(qemu_egl_display, qemu_egl_config, EGL_NO_CONTEXT,
488 gles ? ctx_att_gles : ctx_att_core);
489 if (ectx == EGL_NO_CONTEXT) {
490 error_report("egl: eglCreateContext failed");
494 b = eglMakeCurrent(qemu_egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, ectx);
495 if (b == EGL_FALSE) {
496 error_report("egl: eglMakeCurrent failed");