diff options
author | Jakob Bornecrantz <[email protected]> | 2010-02-11 14:41:40 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-02-27 02:12:47 +0000 |
commit | d11f9a7bd83b7f0ea9ee959a764b77a4c3c55969 (patch) | |
tree | e14061f95ea278bf4ff1fb8ae74d3367e755567f /src/gallium | |
parent | 0a1b760cd274aff96d68757dabf9caa077119f37 (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.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c | 2 |
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 1dcbc419dbb..a7c6e88b9eb 100644 --- a/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c +++ b/src/gallium/winsys/drm/vmware/core/vmw_screen_dri.c @@ -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 }; |