XQuartz: Don't crash if CG increases our display resolution
miPaintWindow would cause fbFill() to overwrite pScreen's pixmap which was sized for the old resolution. Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
60af79e35e
commit
1fb501ad15
|
@ -239,8 +239,6 @@ void QuartzUpdateScreens(void) {
|
||||||
AppleWMSetScreenOrigin(pRoot);
|
AppleWMSetScreenOrigin(pRoot);
|
||||||
pScreen->ResizeWindow(pRoot, x - sx, y - sy, width, height, NULL);
|
pScreen->ResizeWindow(pRoot, x - sx, y - sy, width, height, NULL);
|
||||||
|
|
||||||
miPaintWindow(pRoot, &pRoot->borderClip, PW_BACKGROUND);
|
|
||||||
|
|
||||||
/* <rdar://problem/7770779> pointer events are clipped to old display region after display reconfiguration
|
/* <rdar://problem/7770779> pointer events are clipped to old display region after display reconfiguration
|
||||||
* http://xquartz.macosforge.org/trac/ticket/346
|
* http://xquartz.macosforge.org/trac/ticket/346
|
||||||
*/
|
*/
|
||||||
|
@ -268,6 +266,9 @@ void QuartzUpdateScreens(void) {
|
||||||
|
|
||||||
quartzProcs->UpdateScreen(pScreen);
|
quartzProcs->UpdateScreen(pScreen);
|
||||||
|
|
||||||
|
/* miPaintWindow needs to be called after RootlessUpdateScreenPixmap (from xprUpdateScreen) */
|
||||||
|
miPaintWindow(pRoot, &pRoot->borderClip, PW_BACKGROUND);
|
||||||
|
|
||||||
/* Tell RandR about the new size, so new connections get the correct info */
|
/* Tell RandR about the new size, so new connections get the correct info */
|
||||||
RRScreenSizeNotify(pScreen);
|
RRScreenSizeNotify(pScreen);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue