Module: Mesa Branch: 10.2 Commit: b4584d9eed4acd24cb4a323c2c64d98de1e847a6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b4584d9eed4acd24cb4a323c2c64d98de1e847a6
Author: Andreas Pokorny <[email protected]> Date: Wed Sep 3 22:43:41 2014 +0200 egl/drm: expose KHR_image_pixmap extension This changes enables EGL_KHR_image_pixmap in the egl drm platform, which is implemented there but has not been advertised yet. Cc: 10.2 10.3 <[email protected]> Signed-off-by: Andreas Pokorny <[email protected]> Reviewed-by: Daniel Stone <[email protected]> (cherry picked from commit 53b614bfd3c12368347b2953121e815add68d90b) Conflicts: src/egl/drivers/dri2/platform_drm.c --- src/egl/drivers/dri2/platform_drm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/egl/drivers/dri2/platform_drm.c b/src/egl/drivers/dri2/platform_drm.c index 9a7633a..4a60f1f 100644 --- a/src/egl/drivers/dri2/platform_drm.c +++ b/src/egl/drivers/dri2/platform_drm.c @@ -572,6 +572,7 @@ dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp) } disp->Extensions.EXT_buffer_age = EGL_TRUE; + disp->Extensions.KHR_image_pixmap = EGL_TRUE; #ifdef HAVE_WAYLAND_PLATFORM disp->Extensions.WL_bind_wayland_display = EGL_TRUE; _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
