Bump version to 10.15.0

This release adds truely usable resizing support by
removing the restriction that the you cannot resize
larger than the initial mode.
This commit is contained in:
Philip Langdale
2007-02-08 18:22:16 -08:00
parent 2ec8c25cc9
commit eca6e9f945
3 changed files with 9 additions and 3 deletions

6
README
View File

@@ -20,6 +20,9 @@ svga_limits.h
Included by svga_reg.h, defines maximum frame buffer and memory region
sizes.
svga_modes.h
A list of default display modes that are built into the driver.
guest_os.h
Values for the GUEST_ID register.
@@ -29,6 +32,9 @@ vm_basic_types.h
vm_device_version.h
PCI vendor ID's and related information.
vmwarectrl.h
vmwarectrlproto.h
The definitions of the VMWARECTRL protocol extension.
Programming the VMware SVGA Device
----------------------------------

View File

@@ -22,7 +22,7 @@
AC_PREREQ(2.57)
AC_INIT([xf86-video-vmware],
10.14.1,
10.15.0,
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
xf86-video-vmware)

View File

@@ -82,8 +82,8 @@ char rcsId_vmware[] =
#define VMWARE_NAME "VMWARE"
#define VMWARE_DRIVER_NAME "vmware"
#define VMWARE_MAJOR_VERSION 10
#define VMWARE_MINOR_VERSION 14
#define VMWARE_PATCHLEVEL 1
#define VMWARE_MINOR_VERSION 15
#define VMWARE_PATCHLEVEL 0
#define VMWARE_DRIVER_VERSION \
(VMWARE_MAJOR_VERSION * 65536 + VMWARE_MINOR_VERSION * 256 + VMWARE_PATCHLEVEL)