summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2011-02-04 12:27:18 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2011-02-07 13:55:29 +0100
commit9b6dc9b7a46df41d7eb7b1f94e50d96300b557bc (patch)
tree54e822e3a27e56cebcef1f3991b4151c3631e7e6
parent464cb3a09ea61b6e7fe7f5d2a69e3cdab210da8f (diff)
st/egl: drm_image: Check for MESA_drm_image
MESA_drm_image isnt limited to drm platform, others can enable the extension too.
-rw-r--r--src/gallium/state_trackers/egl/common/egl_g3d_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/egl/common/egl_g3d_image.c b/src/gallium/state_trackers/egl/common/egl_g3d_image.c
index 78c035a2af0..81ce7ab45c7 100644
--- a/src/gallium/state_trackers/egl/common/egl_g3d_image.c
+++ b/src/gallium/state_trackers/egl/common/egl_g3d_image.c
@@ -135,7 +135,7 @@ egl_g3d_reference_drm_buffer(_EGLDisplay *dpy, EGLint name,
_EGLImageAttribs attrs;
EGLint format;
- if (dpy->Platform != _EGL_PLATFORM_DRM)
+ if (!dpy->Extensions.MESA_drm_image)
return NULL;
if (_eglParseImageAttribList(&attrs, dpy, attribs) != EGL_SUCCESS)
@@ -295,7 +295,7 @@ egl_g3d_export_drm_image(_EGLDriver *drv, _EGLDisplay *dpy, _EGLImage *img,
struct egl_g3d_image *gimg = egl_g3d_image(img);
struct winsys_handle wsh;
- if (dpy->Platform != _EGL_PLATFORM_DRM)
+ if (!dpy->Extensions.MESA_drm_image)
return EGL_FALSE;
/* get shared handle */