mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-26 21:12:25 +00:00
Change region implementation names to eliminate the 'mi' prefix
This prepares the file to be moved from mi to dix. This patch was done mechanically with the included scripts 'fix-miregion' run over the entire X server and 'fix-miregion-private' run over include/regionstr.h and mi/miregion.c. Reviewed-by: Jamey Sharp <jamey@minilop.net> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
parent
1768e51976
commit
9b6f5f549d
10 changed files with 192 additions and 149 deletions
6
mi/mi.h
6
mi/mi.h
|
|
@ -422,18 +422,18 @@ extern _X_EXPORT void miPushPixels(
|
|||
|
||||
/* see also region.h */
|
||||
|
||||
extern _X_EXPORT Bool miRectAlloc(
|
||||
extern _X_EXPORT Bool RegionRectAlloc(
|
||||
RegionPtr /*pRgn*/,
|
||||
int /*n*/
|
||||
);
|
||||
|
||||
#ifdef DEBUG
|
||||
extern _X_EXPORT Bool miValidRegion(
|
||||
extern _X_EXPORT Bool RegionIsValid(
|
||||
RegionPtr /*prgn*/
|
||||
);
|
||||
#endif
|
||||
|
||||
extern _X_EXPORT Bool miRegionBroken(RegionPtr pReg);
|
||||
extern _X_EXPORT Bool RegionBroken(RegionPtr pReg);
|
||||
|
||||
/* miscrinit.c */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue