http://bugs.freedesktop.org/show_bug.cgi?id=12770





------- Comment #18 from [EMAIL PROTECTED]  2007-10-11 10:31 PST -------
whoops, sorry, in radeon_modes.c::RADEONProbeOutputModes() you can do one of
the following (in addition to the previous change):

1.add:

    return modes;

between lines 226 and 227

or 

2. add:

    RADEONAddScreenModes(output, &modes);
    return modes;

between lines 226 and 227

1. will just return a null set of nodes and the server will add some defaults. 
2. will add the modes specified in the screen section of your config.

the result should look like this:

if (radeon_output->type == OUTPUT_DVI || radeon_output->type == OUTPUT_VGA) {
    RADEONAddScreenModes(output, &modes);
    return modes;
}


-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
_______________________________________________
xorg-driver-ati mailing list
[email protected]
http://lists.x.org/mailman/listinfo/xorg-driver-ati

Reply via email to