diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-08-18 11:11:55 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-08-18 11:11:55 +0000 |
commit | f9004149a4469fabab4bcf16e16428b28a4b1652 (patch) | |
tree | 1b95ccd20c323b34a16f10d7bd7b879ebcac4360 | |
parent | 8ef364d689118d6033b00545a78a4bfcc04fb82c (diff) | |
download | drakx-kbd-mouse-x11-f9004149a4469fabab4bcf16e16428b28a4b1652.tar drakx-kbd-mouse-x11-f9004149a4469fabab4bcf16e16428b28a4b1652.tar.gz drakx-kbd-mouse-x11-f9004149a4469fabab4bcf16e16428b28a4b1652.tar.bz2 drakx-kbd-mouse-x11-f9004149a4469fabab4bcf16e16428b28a4b1652.tar.xz drakx-kbd-mouse-x11-f9004149a4469fabab4bcf16e16428b28a4b1652.zip |
- XFdrake:
o use 24dpp by default, even on DRI (needed for kde4)
as requested by qa (damien)
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | lib/Xconfig/resolution_and_depth.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ - XFdrake: + o use 24dpp by default, even on DRI (needed for kde4) o ensure we don't drop non-main "Device" (when modifying "Options", #41410) o use nvidia-current default settings for nvidia173 as well o no need to force XaaNoOffscreenPixmaps, it is the default now in diff --git a/lib/Xconfig/resolution_and_depth.pm b/lib/Xconfig/resolution_and_depth.pm index 0c87503..7159873 100644 --- a/lib/Xconfig/resolution_and_depth.pm +++ b/lib/Xconfig/resolution_and_depth.pm @@ -87,7 +87,7 @@ sub allowed { } elsif ($card->{BoardName} eq 'NVIDIA RIVA 128') { @depths = qw(8 15 24); } elsif ($card->{use_DRI_GLX}) { - $prefered_depth = 16; + $prefered_depth = 24; @depths = (16, 24); } else { @depths = our @depths_available; |