diff options
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 |