drm/vmware: Latest interface changes are backwards incopatible
authorJakob Bornecrantz <jakob@vmware.com>
Thu, 11 Feb 2010 13:41:40 +0000 (14:41 +0100)
committerJakob Bornecrantz <jakob@vmware.com>
Sat, 27 Feb 2010 02:12:47 +0000 (02:12 +0000)
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.

src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c

index 1dcbc41..a7c6e88 100644 (file)
@@ -49,7 +49,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 };