diff --git a/clients/simple-egl.c b/clients/simple-egl.c index 9893a82f..c0e28555 100644 --- a/clients/simple-egl.c +++ b/clients/simple-egl.c @@ -100,7 +100,6 @@ init_egl(struct display *display) EGL_GREEN_SIZE, 1, EGL_BLUE_SIZE, 1, EGL_ALPHA_SIZE, 1, - EGL_DEPTH_SIZE, 1, EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL_NONE }; diff --git a/src/compositor-wayland.c b/src/compositor-wayland.c index b4c55a82..1baf55e9 100644 --- a/src/compositor-wayland.c +++ b/src/compositor-wayland.c @@ -267,7 +267,6 @@ wayland_compositor_init_egl(struct wayland_compositor *c) EGL_GREEN_SIZE, 1, EGL_BLUE_SIZE, 1, EGL_ALPHA_SIZE, 1, - EGL_DEPTH_SIZE, 1, EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL_NONE }; diff --git a/src/compositor-x11.c b/src/compositor-x11.c index c3eaab70..0b7da9b5 100644 --- a/src/compositor-x11.c +++ b/src/compositor-x11.c @@ -123,7 +123,6 @@ x11_compositor_init_egl(struct x11_compositor *c) EGL_RED_SIZE, 1, EGL_GREEN_SIZE, 1, EGL_BLUE_SIZE, 1, - EGL_DEPTH_SIZE, 1, EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, EGL_NONE };