Make room for a 1280 wide projector in the default screen limits
This commit is contained in:
parent
3c109f37cf
commit
b38b008371
@ -19,7 +19,7 @@
|
|||||||
Summary: X.Org X11 X server
|
Summary: X.Org X11 X server
|
||||||
Name: xorg-x11-server
|
Name: xorg-x11-server
|
||||||
Version: 1.5.0
|
Version: 1.5.0
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
URL: http://www.x.org
|
URL: http://www.x.org
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: User Interface/X
|
Group: User Interface/X
|
||||||
@ -54,6 +54,7 @@ Patch1005: xserver-1.4.99-builtin-fonts.patch
|
|||||||
Patch1010: xserver-1.3.0-no-prerelease-warning.patch
|
Patch1010: xserver-1.3.0-no-prerelease-warning.patch
|
||||||
|
|
||||||
Patch2013: xserver-1.4.99-document-fontpath-correctly.patch
|
Patch2013: xserver-1.4.99-document-fontpath-correctly.patch
|
||||||
|
Patch2014: xserver-1.5.0-projector-fb-size.patch
|
||||||
|
|
||||||
# Trivial things to never merge upstream ever
|
# Trivial things to never merge upstream ever
|
||||||
# Don't merge this without protecting the gccisms.
|
# Don't merge this without protecting the gccisms.
|
||||||
@ -498,6 +499,10 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Sep 11 2008 Soren Sandmann <sandmann@redhat.com> 1.5.0-3
|
||||||
|
- Change the default screen limits to include room for a 1280 wide
|
||||||
|
projector.
|
||||||
|
|
||||||
* Wed Sep 10 2008 Dave Airlie <airlied@redhat.com> 1.5.0-2
|
* Wed Sep 10 2008 Dave Airlie <airlied@redhat.com> 1.5.0-2
|
||||||
- bring master exa back
|
- bring master exa back
|
||||||
|
|
||||||
|
25
xserver-1.5.0-projector-fb-size.patch
Normal file
25
xserver-1.5.0-projector-fb-size.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
From ef49675e8d7dc829032bf6e586d55f9985d06844 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Fedora X Ninjas <x@fedoraproject.org>
|
||||||
|
Date: Thu, 11 Sep 2008 09:25:18 -0400
|
||||||
|
Subject: [PATCH] Make room for a 1280 wide projector in the default screen limits
|
||||||
|
|
||||||
|
---
|
||||||
|
hw/xfree86/modes/xf86Crtc.c | 2 ++
|
||||||
|
1 files changed, 2 insertions(+), 0 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/hw/xfree86/modes/xf86Crtc.c b/hw/xfree86/modes/xf86Crtc.c
|
||||||
|
index 4de7e05..ee7e412 100644
|
||||||
|
--- a/hw/xfree86/modes/xf86Crtc.c
|
||||||
|
+++ b/hw/xfree86/modes/xf86Crtc.c
|
||||||
|
@@ -987,6 +987,8 @@ xf86DefaultScreenLimits (ScrnInfoPtr scrn, int *widthp, int *heightp,
|
||||||
|
if (crtc_height > height)
|
||||||
|
height = crtc_height;
|
||||||
|
}
|
||||||
|
+ /* Make room for a projector */
|
||||||
|
+ width += 1280;
|
||||||
|
if (config->maxWidth && width > config->maxWidth) width = config->maxWidth;
|
||||||
|
if (config->maxHeight && height > config->maxHeight) height = config->maxHeight;
|
||||||
|
if (config->minWidth && width < config->minWidth) width = config->minWidth;
|
||||||
|
--
|
||||||
|
1.6.0.1
|
||||||
|
|
Loading…
Reference in New Issue
Block a user