diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 17:56:32 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 17:56:32 -0400 |
commit | af769892a91c9af59de53ca3bcd77fc4967daffb (patch) | |
tree | 2c5086885337e8f52d7f571511a8174938b73ad2 /mi/mibitblt.c | |
parent | 62224e39727fd6f1cf11a461983662f615a9fea1 (diff) |
Static and dead code cleanup from mi/
Diffstat (limited to 'mi/mibitblt.c')
-rw-r--r-- | mi/mibitblt.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/mi/mibitblt.c b/mi/mibitblt.c index e4b14078f..e61855a93 100644 --- a/mi/mibitblt.c +++ b/mi/mibitblt.c @@ -400,13 +400,9 @@ miGetPlane( * Note how the clipped out bits of the bitmap are always the background * color so that the stipple never causes FillRect to draw them. */ -void -miOpqStipDrawable(pDraw, pGC, prgnSrc, pbits, srcx, w, h, dstx, dsty) - DrawablePtr pDraw; - GCPtr pGC; - RegionPtr prgnSrc; - MiBits *pbits; - int srcx, w, h, dstx, dsty; +static void +miOpqStipDrawable(DrawablePtr pDraw, GCPtr pGC, RegionPtr prgnSrc, + MiBits *pbits, int srcx, int w, int h, int dstx, int dsty) { int oldfill, i; unsigned long oldfg; |