aboutsummaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/egl.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/render/egl.c b/render/egl.c
index 088c4ad7..de6d6b1b 100644
--- a/render/egl.c
+++ b/render/egl.c
@@ -170,14 +170,8 @@ bool wlr_egl_init(struct wlr_egl *egl, EGLenum platform, void *remote_display,
goto error;
}
- if (platform == EGL_PLATFORM_SURFACELESS_MESA) {
- assert(remote_display == NULL);
- egl->display = egl->procs.eglGetPlatformDisplayEXT(platform,
- EGL_DEFAULT_DISPLAY, NULL);
- } else {
- egl->display = egl->procs.eglGetPlatformDisplayEXT(platform,
- remote_display, NULL);
- }
+ egl->display = egl->procs.eglGetPlatformDisplayEXT(platform,
+ remote_display, NULL);
if (egl->display == EGL_NO_DISPLAY) {
wlr_log(WLR_ERROR, "Failed to create EGL display");
goto error;