fixed DFP fullscreen overlay distortions

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6976 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rudolf Cornelissen 2004-03-14 20:30:05 +00:00
parent 27c912cfc5
commit 65e6374871
4 changed files with 8 additions and 7 deletions

View File

@ -111,8 +111,8 @@ status_t nv_crtc_set_timing(display_mode target)
LOG(2,("CRTC: DFP active: tuning modeline\n"));
/* horizontal timing */
target.timing.h_total = target.timing.h_display + 56;
target.timing.h_sync_start = target.timing.h_total - 40;
target.timing.h_total = target.timing.h_display + 128;
target.timing.h_sync_start = target.timing.h_total - 112;
target.timing.h_sync_end = target.timing.h_total - 16;
/* vertical timing */

View File

@ -97,8 +97,8 @@ status_t nv_crtc2_set_timing(display_mode target)
LOG(2,("CRTC2: DFP active: tuning modeline\n"));
/* horizontal timing */
target.timing.h_total = target.timing.h_display + 56;
target.timing.h_sync_start = target.timing.h_total - 40;
target.timing.h_total = target.timing.h_display + 128;
target.timing.h_sync_start = target.timing.h_total - 112;
target.timing.h_sync_end = target.timing.h_total - 16;
/* vertical timing */

View File

@ -80,7 +80,7 @@ status_t nv_general_powerup()
{
status_t status;
LOG(1,("POWERUP: nVidia (open)BeOS Accelerant 0.10-4 running.\n"));
LOG(1,("POWERUP: nVidia (open)BeOS Accelerant 0.10-5 running.\n"));
/* preset no laptop */
si->ps.laptop = false;

View File

@ -4,12 +4,13 @@
</head>
<body>
<p><h2>Changes done for each driverversion:</h2></p>
<p><h1>head (0.10-4), (Rudolf)</h1></p>
<p><h1>head (0.10-5), (Rudolf)</h1></p>
<ul>
<li>Implemented laptop internal flatpanel presence and native resolution detection;
<li>Implemented external DVI flatpanel(s) presence and native resolution detection;
<li>Added flatpanel(s) refreshrate protection: it(they) is(are) always kept at 60Hz refresh;
<li>Added flatpanel specific CRTC modeline and DFP modeline tuning: DVI connected panels work now on both heads (if applicable).<br>
<li>Added flatpanel specific CRTC modeline and DFP modeline tuning: DVI connected panels work now on both heads (if applicable);
<li>Fixed fullscreen overlay on DVI panels.<br>
NOTE:<br>
dualhead switch mode is not yet operational for flatpanels...
</ul>