[Mesa-dev] [PATCH 2/3] egl/wayland: don't modify the vtbl if an extension is not available
Emil Velikov
emil.l.velikov at gmail.com
Mon May 15 15:14:16 UTC 2017
From: Emil Velikov <emil.velikov at collabora.com>
With previous commit we'll error out should one be using the extension
when it's not available. Thus we no longer need to modify the vtbl.
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
---
src/egl/drivers/dri2/platform_wayland.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c
index 8d4f3587d9f..c4e9d5948c0 100644
--- a/src/egl/drivers/dri2/platform_wayland.c
+++ b/src/egl/drivers/dri2/platform_wayland.c
@@ -1241,12 +1241,9 @@ dri2_initialize_wayland_drm(_EGLDriver *drv, _EGLDisplay *disp)
* because the buffer of the EGLImage has likely a tiling mode the server
* gpu won't support. These is no way to check for now. Thus do not support the
* extension */
- if (!dri2_dpy->is_different_gpu) {
+ if (!dri2_dpy->is_different_gpu)
disp->Extensions.WL_create_wayland_buffer_from_image = EGL_TRUE;
- } else {
- dri2_wl_display_vtbl.create_wayland_buffer_from_image =
- dri2_fallback_create_wayland_buffer_from_image;
- }
+
disp->Extensions.EXT_buffer_age = EGL_TRUE;
disp->Extensions.EXT_swap_buffers_with_damage = EGL_TRUE;
--
2.12.2
More information about the mesa-dev
mailing list