replace _X_INLINE by inline in internal static functions

Since xserver is compiled as C99, we just can use the `inline` keyword.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2024-02-01 12:38:00 +01:00
committed by Povilas Kanapickas
parent f0a187f55d
commit b3b86ae674
8 changed files with 9 additions and 9 deletions

View File

@@ -33,7 +33,7 @@
/* This file holds the classic exa specific implementation. */
static _X_INLINE void *
static inline void *
ExaGetPixmapAddress(PixmapPtr p)
{
ExaPixmapPriv(p);

View File

@@ -33,7 +33,7 @@
/* This file holds the driver allocated pixmaps specific implementation. */
static _X_INLINE void *
static inline void *
ExaGetPixmapAddress(PixmapPtr p)
{
ExaPixmapPriv(p);

View File

@@ -34,7 +34,7 @@
/* This file holds the driver allocated pixmaps + better initial placement code.
*/
static _X_INLINE void *
static inline void *
ExaGetPixmapAddress(PixmapPtr p)
{
ExaPixmapPriv(p);

View File

@@ -452,7 +452,7 @@ ExaCheckAddTraps(PicturePtr pPicture,
/* exa_accel.c */
static _X_INLINE Bool
static inline Bool
exaGCReadsDestination(DrawablePtr pDrawable, unsigned long planemask,
unsigned int fillStyle, unsigned char alu,
Bool clientClip)