mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
xfree: replace DDXPoint by xPoint
DDXPoint is just an alias to xPoint Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
1f611b8852
commit
e134e4d7fd
@@ -53,7 +53,7 @@ typedef struct _xf86EdgeRec {
|
||||
short screen;
|
||||
short start;
|
||||
short end;
|
||||
DDXPointRec offset;
|
||||
xPoint offset;
|
||||
struct _xf86EdgeRec *next;
|
||||
} xf86EdgeRec, *xf86EdgePtr;
|
||||
|
||||
|
||||
@@ -318,7 +318,7 @@ VGAarbiterSourceValidate(DrawablePtr pDrawable,
|
||||
}
|
||||
|
||||
static void
|
||||
VGAarbiterCopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg, RegionPtr prgnSrc)
|
||||
VGAarbiterCopyWindow(WindowPtr pWin, xPoint ptOldOrg, RegionPtr prgnSrc)
|
||||
{
|
||||
ScreenPtr pScreen = pWin->drawable.pScreen;
|
||||
|
||||
|
||||
@@ -160,8 +160,7 @@ static void VGAarbiterGetSpans(DrawablePtr pDrawable, int wMax, DDXPointPtr ppt,
|
||||
static void VGAarbiterSourceValidate(DrawablePtr pDrawable, int x, int y,
|
||||
int width, int height,
|
||||
unsigned int subWindowMode);
|
||||
static void VGAarbiterCopyWindow(WindowPtr pWin, DDXPointRec ptOldOrg,
|
||||
RegionPtr prgnSrc);
|
||||
static void VGAarbiterCopyWindow(WindowPtr pWin, xPoint ptOldOrg, RegionPtr prgnSrc);
|
||||
static void VGAarbiterClearToBackground(WindowPtr pWin, int x, int y, int w,
|
||||
int h, Bool generateExposures);
|
||||
static PixmapPtr VGAarbiterCreatePixmap(ScreenPtr pScreen, int w, int h,
|
||||
|
||||
@@ -1984,7 +1984,7 @@ static void DRIWindowDestroy(CallbackListPtr *pcbl, ScreenPtr pScreen, WindowPtr
|
||||
}
|
||||
|
||||
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);
|
||||
|
||||
@@ -131,8 +131,7 @@ typedef struct {
|
||||
DRIContextType writeContextType,
|
||||
void *writeContextStore);
|
||||
void (*InitBuffers) (WindowPtr pWin, RegionPtr prgn, CARD32 indx);
|
||||
void (*MoveBuffers) (WindowPtr pWin,
|
||||
DDXPointRec ptOldOrg, RegionPtr prgnSrc, CARD32 indx);
|
||||
void (*MoveBuffers) (WindowPtr pWin, xPoint ptOldOrg, RegionPtr prgnSrc, CARD32 indx);
|
||||
void (*TransitionTo3d) (ScreenPtr pScreen);
|
||||
void (*TransitionTo2d) (ScreenPtr pScreen);
|
||||
|
||||
@@ -277,7 +276,7 @@ extern _X_EXPORT void *DRIGetContextStore(DRIContextPrivPtr context);
|
||||
extern _X_EXPORT void DRIWindowExposures(WindowPtr pWin, RegionPtr prgn);
|
||||
|
||||
extern _X_EXPORT void DRICopyWindow(WindowPtr pWin,
|
||||
DDXPointRec ptOldOrg, RegionPtr prgnSrc);
|
||||
xPoint ptOldOrg, RegionPtr prgnSrc);
|
||||
|
||||
extern _X_EXPORT void DRIClipNotify(WindowPtr pWin, int dx, int dy);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user