summaryrefslogtreecommitdiffstats
path: root/src/egl/drivers/dri2/platform_drm.c
diff options
context:
space:
mode:
authorChad Versace <chad.versace@linux.intel.com>2014-01-28 17:03:03 -0800
committerChad Versace <chad.versace@linux.intel.com>2014-03-17 15:36:04 -0700
commitbf20076bafcf0809529ae470fb12af5eae12b33d (patch)
treec7730732a315d942c79dd482053aedaabc3afca3 /src/egl/drivers/dri2/platform_drm.c
parentbc8b07a65722ad25aa52aa4918b51e236a13b09e (diff)
downloadexternal_mesa3d-bf20076bafcf0809529ae470fb12af5eae12b33d.zip
external_mesa3d-bf20076bafcf0809529ae470fb12af5eae12b33d.tar.gz
external_mesa3d-bf20076bafcf0809529ae470fb12af5eae12b33d.tar.bz2
egl/dri2: Dispatch eglCreatePbufferSurface by display, not driver
Add dri2_egl_display_vtbl::create_pbuffer_surface, set it for each platform, and let egl_dri2 dispatch eglCreatePbufferSurface to that. This prepares for the EGL platform extensions. Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'src/egl/drivers/dri2/platform_drm.c')
-rw-r--r--src/egl/drivers/dri2/platform_drm.c1
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 571f016..4761bbf 100644
--- a/src/egl/drivers/dri2/platform_drm.c
+++ b/src/egl/drivers/dri2/platform_drm.c
@@ -445,6 +445,7 @@ static struct dri2_egl_display_vtbl dri2_drm_display_vtbl = {
.authenticate = dri2_drm_authenticate,
.create_window_surface = dri2_drm_create_window_surface,
.create_pixmap_surface = dri2_fallback_create_pixmap_surface,
+ .create_pbuffer_surface = dri2_fallback_create_pbuffer_surface,
.swap_interval = dri2_fallback_swap_interval,
.swap_buffers = dri2_drm_swap_buffers,
.swap_buffers_with_damage = dri2_fallback_swap_buffers_with_damage,