]> git.proxmox.com Git - mirror_qemu.git/blob - include/ui/egl-context.h
hw/pci-bridge: Use the QOM BUS() macro to access BusState.qbus
[mirror_qemu.git] / include / ui / egl-context.h
1 #ifndef EGL_CONTEXT_H
2 #define EGL_CONTEXT_H
3
4 #include "ui/console.h"
5 #include "ui/egl-helpers.h"
6
7 QEMUGLContext qemu_egl_create_context(DisplayChangeListener *dcl,
8 QEMUGLParams *params);
9 void qemu_egl_destroy_context(DisplayChangeListener *dcl, QEMUGLContext ctx);
10 int qemu_egl_make_context_current(DisplayChangeListener *dcl,
11 QEMUGLContext ctx);
12 QEMUGLContext qemu_egl_get_current_context(DisplayChangeListener *dcl);
13
14 #endif /* EGL_CONTEXT_H */