From: Dave Airlie <[email protected]> When SetChanged is called we now modify the main protocol screen, not the the gpu screen. Since changed stuff should work at the protocol level.
Signed-off-by: Dave Airlie <[email protected]> --- randr/randr.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/randr/randr.c b/randr/randr.c index 11f88b2..fb0895d 100644 --- a/randr/randr.c +++ b/randr/randr.c @@ -467,9 +467,23 @@ TellChanged(WindowPtr pWin, pointer value) void RRSetChanged(ScreenPtr pScreen) { + /* set changed bits on the master screen only */ + ScreenPtr master; rrScrPriv(pScreen); + rrScrPrivPtr mastersp; + + if (pScreen->isGPU) { + master = pScreen->current_master; + if (!master) + return; + mastersp = rrGetScrPriv(master); + } + else { + master = pScreen; + mastersp = pScrPriv; + } - pScrPriv->changed = TRUE; + mastersp->changed = TRUE; } /* -- 1.8.1 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
