From d3c7942fb271fe8d1df7ca3205b41601abdcb5c8 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 12 Apr 2007 14:22:02 -0400 Subject: [PATCH] [pixman] Mark some small functions that are called per-pixel inline These uses were introduced in the previous commit. --- pixman/src/fbcompose.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pixman/src/fbcompose.c b/pixman/src/fbcompose.c index 4fcf6998c..47fb01782 100644 --- a/pixman/src/fbcompose.c +++ b/pixman/src/fbcompose.c @@ -2058,7 +2058,7 @@ static CombineFuncU fbCombineFuncU[] = { fbCombineConjointXorU, }; -static FASTCALL void +static inline void fbCombineMaskC (CARD32 *src, CARD32 *mask) { CARD32 a = *mask; @@ -2089,7 +2089,7 @@ fbCombineMaskC (CARD32 *src, CARD32 *mask) *mask = a; } -static FASTCALL void +static inline void fbCombineMaskValueC (CARD32 *src, const CARD32 *mask) { CARD32 a = *mask; @@ -2109,7 +2109,7 @@ fbCombineMaskValueC (CARD32 *src, const CARD32 *mask) *src = x; } -static FASTCALL void +static inline void fbCombineMaskAlphaC (const CARD32 *src, CARD32 *mask) { CARD32 a = *mask;