From 967e18c9878ff6ea0881bef7c71aaeb9a3883ce6 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Tue, 10 Feb 2026 13:15:48 +0100 Subject: [PATCH] xquartz: replace DDXPoint by xPoint DDXPoint is just an alias to xPoint Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xquartz/xpr/dri.c | 2 +- hw/xquartz/xpr/dri.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/hw/xquartz/xpr/dri.c b/hw/xquartz/xpr/dri.c index c01096194..db3c28589 100644 --- a/hw/xquartz/xpr/dri.c +++ b/hw/xquartz/xpr/dri.c @@ -565,7 +565,7 @@ DRIDrawablePrivDelete(void *pResource, XID id) } void -DRICopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg, RegionPtr prgnSrc) +DRICopyWindow(WindowPtr pWin, xPoint ptOldOrg, RegionPtr prgnSrc) { ScreenPtr pScreen = pWin->drawable.pScreen; DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); diff --git a/hw/xquartz/xpr/dri.h b/hw/xquartz/xpr/dri.h index a4400a220..2734d34bf 100644 --- a/hw/xquartz/xpr/dri.h +++ b/hw/xquartz/xpr/dri.h @@ -101,8 +101,7 @@ DRIDrawablePrivDelete(void *pResource, XID id); extern DRIWrappedFuncsRec * DRIGetWrappedFuncs(ScreenPtr pScreen); -extern void -DRICopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg, RegionPtr prgnSrc); +void DRICopyWindow(WindowPtr pWin, xPoint ptOldOrg, RegionPtr prgnSrc); extern void DRIClipNotify(WindowPtr pWin, int dx, int dy);