[Spice-commits] 2 commits - display/driver.c display/driver.rc miniport/qxl.inf miniport/qxl.rc
Alon Levy
alon at kemper.freedesktop.org
Thu Mar 24 03:53:08 PDT 2011
display/driver.c | 4 +---
display/driver.rc | 4 ++--
miniport/qxl.inf | 2 +-
miniport/qxl.rc | 6 +++---
4 files changed, 7 insertions(+), 9 deletions(-)
New commits:
commit d7bda9b6eaebb71bd3a4f62d4d86ee9f0b4f0bdd
Author: Alon Levy <alevy at redhat.com>
Date: Thu Mar 24 11:08:47 2011 +0200
sync miniport and driver versions
The version of the miniport was 1.3.0.0 while the driver had 1.4.1.1
Different versions between them lead to confusion, better to sync them.
diff --git a/miniport/qxl.inf b/miniport/qxl.inf
index 3739ac7..bb7f582 100644
--- a/miniport/qxl.inf
+++ b/miniport/qxl.inf
@@ -3,7 +3,7 @@
[Version]
Signature = "$CHICAGO$"
-DriverVer = 09/29/2010,1.4.1.0
+DriverVer = 03/20/2011,1.4.1.1
Provider = %RHAT%
CatalogFile = qxl.cat
Class = Display
diff --git a/miniport/qxl.rc b/miniport/qxl.rc
index a583316..86f04b9 100644
--- a/miniport/qxl.rc
+++ b/miniport/qxl.rc
@@ -16,12 +16,12 @@
#define VER_FILEDESCRIPTION_STR "Red Hat QXL Display Driver"
#define VER_INTERNALNAME_STR "qxl.sys"
#define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
-#define VER_FILEVERSION_STR "1.3.0.0"
+#define VER_FILEVERSION_STR "1.4.1.1"
#define VER_PRODUCTNAME_STR "Spice"
-#define VER_PRODUCTVERSION_STR "1.3.0.0"
+#define VER_PRODUCTVERSION_STR "1.4.1.1"
#undef VER_PRODUCTVERSION
-#define VER_PRODUCTVERSION 1,3,0,0
+#define VER_PRODUCTVERSION 1,4,1,1
#define VER_COMPANYNAME_STR "Red Hat Inc."
#define VER_LEGALCOPYRIGHT_STR "© Red Hat Inc. All rights reserved."
commit aad5530fcd85af566311649d301e949c3c2ab0a9
Author: Alon Levy <alevy at redhat.com>
Date: Sun Mar 20 15:07:43 2011 +0200
driver: allowed modes: remove limit of 480 <= {X,Y} <= 2000
Later todo is to check that there is available video memory for
this, but that requires either access to PDev or probably dynamically
checking anyway to make sure we actually fit. Another option is
to leave that check in the host (when we do a IO_SETMODE)
Bumping version to 1.4.1.1
Tested with winxp 32 bit only.
diff --git a/display/driver.c b/display/driver.c
index a92eb03..b129f52 100644
--- a/display/driver.c
+++ b/display/driver.c
@@ -298,9 +298,7 @@ DWORD GetAvailableModes(HANDLE driver, PVIDEO_MODE_INFORMATION *mode_info,
n = modes.NumModes;
while ( n-- ) {
if ( (info->NumberOfPlanes != 1 ) ||!(info->AttributeFlags & VIDEO_MODE_GRAPHICS)
- ||((info->BitsPerPlane != 16) && (info->BitsPerPlane != 32))
- || (info->VisScreenWidth > 2000) || (info->VisScreenWidth < 480)
- || (info->VisScreenHeight > 2000) || (info->VisScreenHeight < 480) ) {
+ ||((info->BitsPerPlane != 16) && (info->BitsPerPlane != 32))) {
DEBUG_PRINT((NULL, 1, "%s: unsuported mode rejecting miniport mode\n", __FUNCTION__));
DEBUG_PRINT((NULL, 1, " width = %li height = %li\n",
diff --git a/display/driver.rc b/display/driver.rc
index 772c6db..4368925 100644
--- a/display/driver.rc
+++ b/display/driver.rc
@@ -16,12 +16,12 @@
#define VER_FILEDESCRIPTION_STR "Red Hat QXL Display Driver"
#define VER_INTERNALNAME_STR "qxldd.dll"
#define VER_ORIGINALFILENAME_STR VER_INTERNALNAME_STR
-#define VER_FILEVERSION_STR "1.4.1.0"
+#define VER_FILEVERSION_STR "1.4.1.1"
#define VER_PRODUCTNAME_STR "Spice"
#define VER_PRODUCTVERSION_STR VER_FILEVERSION_STR
#undef VER_PRODUCTVERSION
-#define VER_PRODUCTVERSION 1,4,1,0
+#define VER_PRODUCTVERSION 1,4,1,1
#define VER_COMPANYNAME_STR "Red Hat Inc."
#define VER_LEGALCOPYRIGHT_STR "© Red Hat Inc. All rights reserved."
More information about the Spice-commits
mailing list