mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-01 22:58:38 -04:00
render/egl: add wlr_egl_get_{context,display}
This allows compositors to integrate with the wlroots GLES2 renderer, if they need to perform custom GL rendering.
This commit is contained in:
parent
4b77eadf06
commit
452a8ec940
2 changed files with 24 additions and 0 deletions
|
|
@ -70,6 +70,22 @@ struct wlr_egl {
|
|||
struct wlr_egl *wlr_egl_create_with_context(EGLDisplay display,
|
||||
EGLContext context);
|
||||
|
||||
/**
|
||||
* Get the EGL display used by the struct wlr_egl.
|
||||
*
|
||||
* This is typically used by compositors which need to perform custom OpenGL
|
||||
* operations.
|
||||
*/
|
||||
EGLDisplay wlr_egl_get_display(struct wlr_egl *egl);
|
||||
|
||||
/**
|
||||
* Get the EGL context used by the struct wlr_egl.
|
||||
*
|
||||
* This is typically used by compositors which need to perform custom OpenGL
|
||||
* operations.
|
||||
*/
|
||||
EGLContext wlr_egl_get_context(struct wlr_egl *egl);
|
||||
|
||||
/**
|
||||
* Make the EGL context current.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue