https://bugs.freedesktop.org/show_bug.cgi?id=54063

--- Comment #17 from Bartosz Kosiorek <gan...@poczta.onet.pl> 2012-09-08 
14:22:07 UTC ---
Thanks for information. It is very useful.

Localize following code:
    /*
     * Enable video on secondary
     */
    if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
         pVia->Chipset == VIA_VM800) && iga->index) {
        /* V1_ON_SND_DISPLAY */
        vidCtl |= V1_ON_SND_DISPLAY;
        /* SECOND_DISPLAY_COLOR_KEY_ENABLE */
        compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
    }

Replace it with following and check if it works:

    /*
     * Enable video on secondary
     */
    if ((pVia->VideoEngine == VIDEO_ENGINE_CME ||
         pVia->Chipset == VIA_VM800)) {
        /* V1_ON_SND_DISPLAY */
        vidCtl |= V1_ON_SND_DISPLAY;
        /* SECOND_DISPLAY_COLOR_KEY_ENABLE */
        compose |= SECOND_DISPLAY_COLOR_KEY_ENABLE | 0x1;
    }

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
Openchrome-devel mailing list
Openchrome-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/openchrome-devel

Reply via email to