[Openchrome-devel] xf86-video-openchrome: 2 commits - configure.ac src/via_ums.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Mon Apr 18 06:35:17 UTC 2016
configure.ac | 2 +-
src/via_ums.c | 14 +-------------
2 files changed, 2 insertions(+), 14 deletions(-)
New commits:
commit 0f769f0c7922c0478e831f45eb18f6dd39a379c7
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 17 23:34:40 2016 -0700
Version bumped to 0.4.125
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index 6742929..0e1a588 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ(2.57)
AC_INIT([xf86-video-openchrome],
- [0.4.124],
+ [0.4.125],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit a48902a1e3bc727bd189d159ba77684772b844ab
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Sun Apr 17 23:32:43 2016 -0700
Expanding extended screen support
All UniChrome Pro and Chrome9 IGPs will now support a very large
extended screen size
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_ums.c b/src/via_ums.c
index 057c235..4f12b55 100644
--- a/src/via_ums.c
+++ b/src/via_ums.c
@@ -1000,23 +1000,11 @@ umsCrtcInit(ScrnInfoPtr pScrn)
switch (pVia->Chipset) {
case VIA_CLE266:
case VIA_KM400:
- case VIA_K8M800:
- case VIA_PM800:
- case VIA_P4M800PRO:
max_pitch = 3344;
max_height = 2508;
break;
-
- case VIA_CX700:
- case VIA_P4M890:
- case VIA_K8M890:
- case VIA_P4M900:
- max_pitch = 8192/(pScrn->bitsPerPixel >> 3)-1;
- max_height = max_pitch;
- break;
-
default:
- max_pitch = 16384/(pScrn->bitsPerPixel >> 3)-1;
+ max_pitch = 16384 / (pScrn->bitsPerPixel >> 3) - 1;
max_height = max_pitch;
break;
}
More information about the Openchrome-devel
mailing list