From b3f70f38edebac87afe9351538365292f1aaaff3 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 9 Jan 2013 14:29:47 +1000 Subject: randr: make SetChanged modify the main protocol screen not the gpu screen 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. Reviewed-by: Peter Hutterer Signed-off-by: Dave Airlie --- randr/randr.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'randr/randr.c') diff --git a/randr/randr.c b/randr/randr.c index 11f88b2b4..fb0895d7a 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; } /* -- cgit v1.2.3