summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2010-02-11 14:41:40 +0100
committerJakob Bornecrantz <jakob@vmware.com>2010-02-18 16:13:18 +0100
commit86870a691ca807c3fd31ab30cad31cae55b2ffa8 (patch)
treea81ec8a1c760988b038ee9046dc640e0fb3e5324
parent7c34c237a2f6732b2c013543523617e375c1f534 (diff)
drm/vmware: Latest interface changes are backwards incopatible
Since the execbuffer change actually changed size off the ioctl struct and not just a reuse of padded bits, we can't support old kernels as easily as the scanout change was.
-rw-r--r--src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c b/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c
index b0ea975bb06..a9a34ea7302 100644
--- a/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c
+++ b/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c
@@ -48,7 +48,7 @@ static struct dri1_api_version ddx_required = { 0, 1, 0 };
static struct dri1_api_version ddx_compat = { 0, 0, 0 };
static struct dri1_api_version dri_required = { 4, 0, 0 };
static struct dri1_api_version dri_compat = { 4, 0, 0 };
-static struct dri1_api_version drm_required = { 0, 1, 0 };
+static struct dri1_api_version drm_required = { 1, 0, 0 };
static struct dri1_api_version drm_compat = { 1, 0, 0 };
static struct dri1_api_version drm_scanout = { 0, 9, 0 };