diff options
author | Chad Versace <[email protected]> | 2014-01-28 18:52:00 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2014-03-17 15:39:22 -0700 |
commit | 31cd0fee317c8532ac93f6de13c7955511f738a0 (patch) | |
tree | 8e0b675420f5588e13a246d7356bfab70d25e94a /src/egl | |
parent | 688a0e8e73b916438878b4fc2271453ee79ec7a6 (diff) |
egl/dri2/x11: Set dri2_dpy->own_device
When the user calls eglGetDisplay(EGL_DEFAULT_DISPLAY), the Wayland and
DRM platforms set dri2_dpy->own_device=true. This patch makes the X11
platform do the same for consistency.
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri2/platform_x11.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/egl/drivers/dri2/platform_x11.c b/src/egl/drivers/dri2/platform_x11.c index f5b17de7330..f6378f47ebf 100644 --- a/src/egl/drivers/dri2/platform_x11.c +++ b/src/egl/drivers/dri2/platform_x11.c @@ -25,6 +25,7 @@ * Kristian Høgsberg <[email protected]> */ +#include <stdbool.h> #include <stdlib.h> #include <string.h> #include <stdio.h> @@ -1038,6 +1039,7 @@ dri2_initialize_x11_swrast(_EGLDriver *drv, _EGLDisplay *disp) disp->DriverData = (void *) dri2_dpy; if (disp->PlatformDisplay == NULL) { dri2_dpy->conn = xcb_connect(0, 0); + dri2_dpy->own_device = true; } else { dri2_dpy->conn = XGetXCBConnection((Display *) disp->PlatformDisplay); } @@ -1153,6 +1155,7 @@ dri2_initialize_x11_dri2(_EGLDriver *drv, _EGLDisplay *disp) disp->DriverData = (void *) dri2_dpy; if (disp->PlatformDisplay == NULL) { dri2_dpy->conn = xcb_connect(0, 0); + dri2_dpy->own_device = true; } else { dri2_dpy->conn = XGetXCBConnection((Display *) disp->PlatformDisplay); } |