diff options
Diffstat (limited to 'xorg-server/afb')
-rw-r--r-- | xorg-server/afb/afbply1rct.c | 8 | ||||
-rw-r--r-- | xorg-server/afb/makefile | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/xorg-server/afb/afbply1rct.c b/xorg-server/afb/afbply1rct.c index e9d4d5e09..65002c967 100644 --- a/xorg-server/afb/afbply1rct.c +++ b/xorg-server/afb/afbply1rct.c @@ -51,14 +51,14 @@ in this Software without prior written authorization from the X Consortium. #endif #if IMAGE_BYTE_ORDER == MSBFirst -#define intToCoord(i,x,y) (((x) = GetHighWord(i)), ((y) = (int)((short) (i)))) +#define intToCoord(i,x,y) (((x) = GetHighWord(i)), ((y) = (int)((short) ((i)&0xffff)))) #define coordToInt(x,y) (((x) << 16) | (y)) #define intToX(i) (GetHighWord(i)) -#define intToY(i) ((int)((short) i)) +#define intToY(i) ((int)((short) ((i)&0xffff))) #else -#define intToCoord(i,x,y) (((x) = (int)((short) (i))), ((y) = GetHighWord(i))) +#define intToCoord(i,x,y) (((x) = (int)((short) ((i)&0xffff))), ((y) = GetHighWord(i))) #define coordToInt(x,y) (((y) << 16) | (x)) -#define intToX(i) ((int)((short) (i))) +#define intToX(i) ((int)((short) ((i)&0xffff))) #define intToY(i) (GetHighWord(i)) #endif diff --git a/xorg-server/afb/makefile b/xorg-server/afb/makefile new file mode 100644 index 000000000..862f25431 --- /dev/null +++ b/xorg-server/afb/makefile @@ -0,0 +1,8 @@ +CSRCS=afbbitblt.c afbbltC.c afbbltCI.c afbbltG.c afbbltO.c afbbltX.c afbbres.c afbbresd.c afbclip.c \
+ afbcmap.c afbfillarc.c afbfillrct.c afbfillsp.c afbfont.c afbgc.c afbgetsp.c afbhrzvert.c afbimage.c afbimggblt.c \
+ afbmisc.c afbpixmap.c afbply1rct.c afbplygblt.c afbpntarea.c afbpolypnt.c afbpushpxl.c afbscrinit.c afbseg.c \
+ afbsetsp.c afbtegblt.c afbtileC.c afbtileG.c afbwindow.c afbzerarc.c
+#afbtile.c afbline.c afbblt.c
+
+LIBRARY=libafb
+
|