backend: set EGL_RENDERABLE_TYPE and EGL_SURFACE_TYPE

Ensure these are set to the correct value.
This commit is contained in:
Simon Ser 2020-04-06 11:16:27 +02:00 committed by Scott Anderson
parent 6787ff521b
commit 9acca4fc73
4 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,8 @@ bool init_drm_renderer(struct wlr_drm_backend *drm,
}
static EGLint config_attribs[] = {
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_RED_SIZE, 1,
EGL_GREEN_SIZE, 1,
EGL_BLUE_SIZE, 1,

View File

@ -101,6 +101,7 @@ struct wlr_backend *wlr_headless_backend_create(struct wl_display *display,
static const EGLint config_attribs[] = {
EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_ALPHA_SIZE, 0,
EGL_BLUE_SIZE, 1,
EGL_GREEN_SIZE, 1,

View File

@ -306,6 +306,7 @@ struct wlr_backend *wlr_wl_backend_create(struct wl_display *display,
static EGLint config_attribs[] = {
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_RED_SIZE, 1,
EGL_GREEN_SIZE, 1,
EGL_BLUE_SIZE, 1,

View File

@ -280,6 +280,7 @@ struct wlr_backend *wlr_x11_backend_create(struct wl_display *display,
static EGLint config_attribs[] = {
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
EGL_RED_SIZE, 1,
EGL_GREEN_SIZE, 1,
EGL_BLUE_SIZE, 1,