diff options
author | Andreas Pokorny <[email protected]> | 2014-09-03 22:43:41 +0200 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-09-27 18:12:51 +0100 |
commit | ceebec140b4d3dda94a178ae9c9e4cd857e991cd (patch) | |
tree | 23058e144697010b8837dfab23eae3bff942b2cb | |
parent | 095a6a0af1527aeea594506fe2666bed7b20b9e4 (diff) |
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)
-rw-r--r-- | src/egl/drivers/dri2/platform_drm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/drivers/dri2/platform_drm.c b/src/egl/drivers/dri2/platform_drm.c index e272beb943e..a39f8ae681d 100644 --- a/src/egl/drivers/dri2/platform_drm.c +++ b/src/egl/drivers/dri2/platform_drm.c @@ -681,6 +681,7 @@ dri2_initialize_drm(_EGLDriver *drv, _EGLDisplay *disp) i + 1, EGL_WINDOW_BIT, attr_list, NULL); } + disp->Extensions.KHR_image_pixmap = EGL_TRUE; if (dri2_dpy->dri2) disp->Extensions.EXT_buffer_age = EGL_TRUE; |