2015-04-29 10:08:04 +02:00
|
|
|
#ifndef EGL_CONTEXT_H
|
|
|
|
#define EGL_CONTEXT_H
|
|
|
|
|
|
|
|
#include "ui/console.h"
|
|
|
|
#include "ui/egl-helpers.h"
|
|
|
|
|
2021-10-09 21:48:46 +02:00
|
|
|
QEMUGLContext qemu_egl_create_context(DisplayGLCtx *dgc,
|
2015-04-29 10:08:04 +02:00
|
|
|
QEMUGLParams *params);
|
2021-10-09 21:48:46 +02:00
|
|
|
void qemu_egl_destroy_context(DisplayGLCtx *dgc, QEMUGLContext ctx);
|
|
|
|
int qemu_egl_make_context_current(DisplayGLCtx *dgc,
|
2015-04-29 10:08:04 +02:00
|
|
|
QEMUGLContext ctx);
|
|
|
|
|
|
|
|
#endif /* EGL_CONTEXT_H */
|