diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:49:22 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 16:49:22 +0000 |
commit | d568221710959cf7d783e6ff0fb80fb43a231124 (patch) | |
tree | 8d6f039393294c6ffac8533639afdebe5d68bfc1 /mfb/fastblt.h | |
parent | 9508a382f8a9f241dab097d921b6d290c1c3a776 (diff) |
XFree86 4.3.0.1xf86-4_3_0_1PRE_xf86-4_3_0_1
Diffstat (limited to 'mfb/fastblt.h')
-rw-r--r-- | mfb/fastblt.h | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/mfb/fastblt.h b/mfb/fastblt.h index 6567a8936..f647eb6ba 100644 --- a/mfb/fastblt.h +++ b/mfb/fastblt.h @@ -26,6 +26,7 @@ other dealings in this Software without prior written authorization from The Open Group. */ +/* $XFree86: xc/programs/Xserver/mfb/fastblt.h,v 1.5 2001/12/14 20:00:03 dawes Exp $ */ /* * Fast bitblt macros for certain hardware. If your machine has an addressing @@ -77,7 +78,6 @@ from The Open Group. } #endif -#if PPW == 32 #define DuffL(counter,label,body) \ switch (counter & 3) { \ label: \ @@ -92,27 +92,3 @@ from The Open Group. if ((counter -= 4) >= 0) \ goto label; \ } -#else /* PPW == 64 */ -#define DuffL(counter,label,body) \ - switch (counter & 7) { \ - label: \ - body \ - case 7: \ - body \ - case 6: \ - body \ - case 5: \ - body \ - case 4: \ - body \ - case 3: \ - body \ - case 2: \ - body \ - case 1: \ - body \ - case 0: \ - if ((counter -= 8) >= 0) \ - goto label; \ - } -#endif /* PPW */ |