2 * GTK UI -- egl opengl code.
4 * Note that gtk 3.16+ (released 2015-03-23) has a GtkGLArea widget,
5 * which is GtkDrawingArea like widget with opengl rendering support.
7 * This code handles opengl support on older gtk versions, using egl
8 * to get a opengl context for the X11 window.
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
18 #include "ui/console.h"
20 #include "ui/egl-helpers.h"
21 #include "ui/shader.h"
23 #include "sysemu/sysemu.h"
25 static void gtk_egl_set_scanout_mode(VirtualConsole
*vc
, bool scanout
)
27 if (vc
->gfx
.scanout_mode
== scanout
) {
31 vc
->gfx
.scanout_mode
= scanout
;
32 if (!vc
->gfx
.scanout_mode
) {
33 egl_fb_destroy(&vc
->gfx
.guest_fb
);
34 if (vc
->gfx
.surface
) {
35 surface_gl_destroy_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
36 surface_gl_create_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
41 /** DisplayState Callbacks (opengl version) **/
43 void gd_egl_init(VirtualConsole
*vc
)
45 GdkWindow
*gdk_window
= gtk_widget_get_window(vc
->gfx
.drawing_area
);
50 Window x11_window
= gdk_x11_window_get_xid(gdk_window
);
55 vc
->gfx
.ectx
= qemu_egl_init_ctx();
56 vc
->gfx
.esurface
= qemu_egl_init_surface_x11
57 (vc
->gfx
.ectx
, (EGLNativeWindowType
)x11_window
);
59 assert(vc
->gfx
.esurface
);
62 void gd_egl_draw(VirtualConsole
*vc
)
71 window
= gtk_widget_get_window(vc
->gfx
.drawing_area
);
72 ww
= gdk_window_get_width(window
);
73 wh
= gdk_window_get_height(window
);
75 if (vc
->gfx
.scanout_mode
) {
76 gd_egl_scanout_flush(&vc
->gfx
.dcl
, 0, 0, vc
->gfx
.w
, vc
->gfx
.h
);
78 vc
->gfx
.scale_x
= (double)ww
/ vc
->gfx
.w
;
79 vc
->gfx
.scale_y
= (double)wh
/ vc
->gfx
.h
;
84 eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
85 vc
->gfx
.esurface
, vc
->gfx
.ectx
);
87 surface_gl_setup_viewport(vc
->gfx
.gls
, vc
->gfx
.ds
, ww
, wh
);
88 surface_gl_render_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
90 eglSwapBuffers(qemu_egl_display
, vc
->gfx
.esurface
);
92 vc
->gfx
.scale_x
= (double)ww
/ surface_width(vc
->gfx
.ds
);
93 vc
->gfx
.scale_y
= (double)wh
/ surface_height(vc
->gfx
.ds
);
97 void gd_egl_update(DisplayChangeListener
*dcl
,
98 int x
, int y
, int w
, int h
)
100 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
102 if (!vc
->gfx
.gls
|| !vc
->gfx
.ds
) {
106 eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
107 vc
->gfx
.esurface
, vc
->gfx
.ectx
);
108 surface_gl_update_texture(vc
->gfx
.gls
, vc
->gfx
.ds
, x
, y
, w
, h
);
112 void gd_egl_refresh(DisplayChangeListener
*dcl
)
114 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
116 if (!vc
->gfx
.esurface
) {
118 if (!vc
->gfx
.esurface
) {
121 vc
->gfx
.gls
= qemu_gl_init_shader();
123 surface_gl_create_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
127 graphic_hw_update(dcl
->con
);
129 if (vc
->gfx
.glupdates
) {
130 vc
->gfx
.glupdates
= 0;
131 gtk_egl_set_scanout_mode(vc
, false);
136 void gd_egl_switch(DisplayChangeListener
*dcl
,
137 DisplaySurface
*surface
)
139 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
142 trace_gd_switch(vc
->label
, surface_width(surface
), surface_height(surface
));
145 surface_width(vc
->gfx
.ds
) == surface_width(surface
) &&
146 surface_height(vc
->gfx
.ds
) == surface_height(surface
)) {
150 surface_gl_destroy_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
151 vc
->gfx
.ds
= surface
;
153 surface_gl_create_texture(vc
->gfx
.gls
, vc
->gfx
.ds
);
157 gd_update_windowsize(vc
);
161 QEMUGLContext
gd_egl_create_context(DisplayChangeListener
*dcl
,
162 QEMUGLParams
*params
)
164 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
166 eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
167 vc
->gfx
.esurface
, vc
->gfx
.ectx
);
168 return qemu_egl_create_context(dcl
, params
);
171 void gd_egl_scanout_disable(DisplayChangeListener
*dcl
)
173 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
177 gtk_egl_set_scanout_mode(vc
, false);
180 void gd_egl_scanout_texture(DisplayChangeListener
*dcl
,
181 uint32_t backing_id
, bool backing_y_0_top
,
182 uint32_t backing_width
, uint32_t backing_height
,
183 uint32_t x
, uint32_t y
,
184 uint32_t w
, uint32_t h
)
186 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
192 vc
->gfx
.y0_top
= backing_y_0_top
;
194 eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
195 vc
->gfx
.esurface
, vc
->gfx
.ectx
);
197 gtk_egl_set_scanout_mode(vc
, true);
198 egl_fb_setup_for_tex(&vc
->gfx
.guest_fb
, backing_width
, backing_height
,
202 void gd_egl_scanout_dmabuf(DisplayChangeListener
*dcl
,
205 #ifdef CONFIG_OPENGL_DMABUF
206 egl_dmabuf_import_texture(dmabuf
);
207 if (!dmabuf
->texture
) {
211 gd_egl_scanout_texture(dcl
, dmabuf
->texture
,
212 false, dmabuf
->width
, dmabuf
->height
,
213 0, 0, dmabuf
->width
, dmabuf
->height
);
217 void gd_egl_cursor_dmabuf(DisplayChangeListener
*dcl
,
218 QemuDmaBuf
*dmabuf
, bool have_hot
,
219 uint32_t hot_x
, uint32_t hot_y
)
221 #ifdef CONFIG_OPENGL_DMABUF
222 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
225 egl_dmabuf_import_texture(dmabuf
);
226 if (!dmabuf
->texture
) {
229 egl_fb_setup_for_tex(&vc
->gfx
.cursor_fb
, dmabuf
->width
, dmabuf
->height
,
230 dmabuf
->texture
, false);
232 egl_fb_destroy(&vc
->gfx
.cursor_fb
);
237 void gd_egl_cursor_position(DisplayChangeListener
*dcl
,
238 uint32_t pos_x
, uint32_t pos_y
)
240 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
242 vc
->gfx
.cursor_x
= pos_x
* vc
->gfx
.scale_x
;
243 vc
->gfx
.cursor_y
= pos_y
* vc
->gfx
.scale_y
;
246 void gd_egl_release_dmabuf(DisplayChangeListener
*dcl
,
249 #ifdef CONFIG_OPENGL_DMABUF
250 egl_dmabuf_release_texture(dmabuf
);
254 void gd_egl_scanout_flush(DisplayChangeListener
*dcl
,
255 uint32_t x
, uint32_t y
, uint32_t w
, uint32_t h
)
257 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
261 if (!vc
->gfx
.scanout_mode
) {
264 if (!vc
->gfx
.guest_fb
.framebuffer
) {
268 eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
269 vc
->gfx
.esurface
, vc
->gfx
.ectx
);
271 window
= gtk_widget_get_window(vc
->gfx
.drawing_area
);
272 ww
= gdk_window_get_width(window
);
273 wh
= gdk_window_get_height(window
);
274 egl_fb_setup_default(&vc
->gfx
.win_fb
, ww
, wh
);
275 if (vc
->gfx
.cursor_fb
.texture
) {
276 egl_texture_blit(vc
->gfx
.gls
, &vc
->gfx
.win_fb
, &vc
->gfx
.guest_fb
,
278 egl_texture_blend(vc
->gfx
.gls
, &vc
->gfx
.win_fb
, &vc
->gfx
.cursor_fb
,
280 vc
->gfx
.cursor_x
, vc
->gfx
.cursor_y
,
281 vc
->gfx
.scale_x
, vc
->gfx
.scale_y
);
283 egl_fb_blit(&vc
->gfx
.win_fb
, &vc
->gfx
.guest_fb
, !vc
->gfx
.y0_top
);
286 eglSwapBuffers(qemu_egl_display
, vc
->gfx
.esurface
);
289 void gtk_egl_init(DisplayGLMode mode
)
291 GdkDisplay
*gdk_display
= gdk_display_get_default();
292 Display
*x11_display
= gdk_x11_display_get_xdisplay(gdk_display
);
294 if (qemu_egl_init_dpy_x11(x11_display
, mode
) < 0) {
301 int gd_egl_make_current(DisplayChangeListener
*dcl
,
304 VirtualConsole
*vc
= container_of(dcl
, VirtualConsole
, gfx
.dcl
);
306 return eglMakeCurrent(qemu_egl_display
, vc
->gfx
.esurface
,
307 vc
->gfx
.esurface
, ctx
);