diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:28 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-04-20 12:25:28 +0000 |
commit | 1b6392ffb792212016e710aaf27ffe36e5703d36 (patch) | |
tree | 7bc49e33508a701a9a570f06b0c3bc5f54e7363d /src/mga_arc.c | |
parent | 58e70eb5ef3b0a2d4ac2950c45670a660691b1f6 (diff) |
Fix includes right throughout the Xserver tree:sco_port_update-baseXORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4
change "foo.h" to <X11/foo.h> for core headers, e.g. X.h, Xpoll.h;
change "foo.h", "extensions/foo.h" and "X11/foo.h" to
<X11/extensions/foo.h> for extension headers, e.g. Xv.h;
change "foo.[ch]" to <X11/Xtrans/foo.[ch]> for Xtrans files.
Diffstat (limited to 'src/mga_arc.c')
-rw-r--r-- | src/mga_arc.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mga_arc.c b/src/mga_arc.c index 5c9a9cb..aca9f26 100644 --- a/src/mga_arc.c +++ b/src/mga_arc.c @@ -23,15 +23,15 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. ********************************************************/ -/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/mga/mga_arc.c,v 1.12 2003/07/16 03:08:37 dawes Exp $ */ +/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/mga/mga_arc.c,v 1.12tsi Exp $ */ -#include "X.h" +#include <X11/X.h> #include "gcstruct.h" #include "windowstr.h" #include "pixmapstr.h" #include "regionstr.h" -#include "Xprotostr.h" +#include <X11/Xprotostr.h> #include "regionstr.h" #include "mizerarc.h" #include "mi.h" @@ -70,7 +70,8 @@ MGAZeroArc( ){ int yoffset, dyoffset, x, y, a, b, d, mask, k1, k3, dx, dy, tmp; XAAInfoRecPtr infoRec = GET_XAAINFORECPTR_FROM_GC(pGC); - MGAPtr pMga = MGAPTR(infoRec->pScrn); + ScrnInfoPtr pScrn = infoRec->pScrn; + MGAPtr pMga = MGAPTR(pScrn); miZeroArcRec info; Bool do360; DDXPointRec org, orgo; |