From 3373d2c696028a9f2f637430c48b9de1a3776800 Mon Sep 17 00:00:00 2001 From: Zhigang Gong Date: Fri, 20 Jan 2012 12:10:06 +0800 Subject: [PATCH] glamor_egl: Add support for the platform doesn't have gbm. Maybe we should use eglGetDisplayDRM to get display, but current PVR's driver is using eglGetDisplay. Signed-off-by: Peng Li Signed-off-by: Zhigang Gong --- glamor/glamor_egl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/glamor/glamor_egl.c b/glamor/glamor_egl.c index 1b18c4c43..c273e8a13 100644 --- a/glamor/glamor_egl.c +++ b/glamor/glamor_egl.c @@ -46,7 +46,9 @@ #define EGL_EGLEXT_PROTOTYPES #define EGL_DISPLAY_NO_X_MESA +#ifdef GLAMOR_HAS_GBM #include +#endif #if GLAMOR_GLES2 #include @@ -84,7 +86,9 @@ struct glamor_egl_screen_private { int fd; int front_buffer_handle; int cpp; +#ifdef GLAMOR_HAS_GBM struct gbm_device *gbm; +#endif PFNEGLCREATEIMAGEKHRPROC egl_create_image_khr; PFNEGLDESTROYIMAGEKHRPROC egl_destroy_image_khr; @@ -297,12 +301,16 @@ glamor_egl_init(ScrnInfoPtr scrn, int fd) scrn->privates[xf86GlamorEGLPrivateIndex].ptr = glamor_egl; glamor_egl->fd = fd; +#ifdef GLAMOR_HAS_GBM glamor_egl->gbm = gbm_create_device(glamor_egl->fd); if (glamor_egl->gbm == NULL) { ErrorF("couldn't get display device\n"); return FALSE; } glamor_egl->display = eglGetDisplay(glamor_egl->gbm); +#else + glamor_egl->display = eglGetDisplay((EGLNativeDisplayType)fd); +#endif #ifndef GLAMOR_GLES2 eglBindAPI(EGL_OPENGL_API);