diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-04-30 19:16:14 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-04-30 19:16:14 +0000 |
commit | 291e89d4f2a4bb3177b2dfe6421680e23f120b8e (patch) | |
tree | 7bc1818c4774751696b1d0cc3b568c883c2184a8 /hw/xfree86/xf4bpp | |
parent | fdcacc5a4bc1d6cb7347fc66041a9c686c5c74d1 (diff) |
Remove NEED_LINEHELPER BC cruft for pre-R6 DDXes.
Diffstat (limited to 'hw/xfree86/xf4bpp')
-rw-r--r-- | hw/xfree86/xf4bpp/ppcGC.c | 7 | ||||
-rw-r--r-- | hw/xfree86/xf4bpp/vgaGC.c | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/hw/xfree86/xf4bpp/ppcGC.c b/hw/xfree86/xf4bpp/ppcGC.c index 6197fc6af..1a2de42f3 100644 --- a/hw/xfree86/xf4bpp/ppcGC.c +++ b/hw/xfree86/xf4bpp/ppcGC.c @@ -146,9 +146,6 @@ static GCOps vgaGCOps = { xf4bppImageGlyphBlt, /* GJA -- void (* ImageGlyphBlt)() */ miPolyGlyphBlt, /* GJA -- void (* PolyGlyphBlt)() */ miPushPixels, /* void (* PushPixels)() */ -#ifdef NEED_LINEHELPER - miMiter, /* void (* LineHelper)() */ -#endif {NULL} /* devPrivate */ }; @@ -244,10 +241,6 @@ while ((idx = LOWBIT(changes))) { break ; case GCJoinStyle: -#ifdef NEED_LINEHELPER - pGC->ops->LineHelper = ( pGC->joinStyle == JoinMiter ) - ? miMiter : miNotMiter ; -#endif changes &= ~ idx ; /* i.e. changes &= ~ GCJoinStyle */ break ; diff --git a/hw/xfree86/xf4bpp/vgaGC.c b/hw/xfree86/xf4bpp/vgaGC.c index f7a3d9440..64b4dae48 100644 --- a/hw/xfree86/xf4bpp/vgaGC.c +++ b/hw/xfree86/xf4bpp/vgaGC.c @@ -159,10 +159,6 @@ register unsigned long int idx ; /* used for stepping through bitfields */ changes &= ~( GCLineStyle | GCLineWidth ) ; break ; case GCJoinStyle: -#ifdef NEED_LINEHELPER - pGC->ops->LineHelper = - ( pGC->joinStyle == JoinMiter ) ? miMiter : miNotMiter ; -#endif /* * If these are just square boxes with no funny business * going on we can call the fast routine that draws |