diff options
author | Peter Hutterer <peter@cs.unisa.edu.au> | 2008-05-28 12:27:07 +0930 |
---|---|---|
committer | Peter Hutterer <peter@cs.unisa.edu.au> | 2008-05-28 14:23:08 +0930 |
commit | 9b544fa40062b342ff3aa75f8f21d0bd4cec80ab (patch) | |
tree | c832c24f4d3d037bdaea0f69d8d9b9e93bf86fd2 /mi/miglblt.c | |
parent | 64677f6a167a5bee99e5dfb599a3c3a6fb5dffe7 (diff) |
mi: ansify.
Diffstat (limited to 'mi/miglblt.c')
-rw-r--r-- | mi/miglblt.c | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/mi/miglblt.c b/mi/miglblt.c index 0155b5618..414773608 100644 --- a/mi/miglblt.c +++ b/mi/miglblt.c @@ -82,13 +82,15 @@ with the sample server. */ _X_EXPORT void -miPolyGlyphBlt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase) - DrawablePtr pDrawable; - GC *pGC; - int x, y; - unsigned int nglyph; - CharInfoPtr *ppci; /* array of character info */ - pointer pglyphBase; /* start of array of glyphs */ +miPolyGlyphBlt( + DrawablePtr pDrawable, + GC *pGC, + int x, + int y, + unsigned int nglyph, + CharInfoPtr *ppci, /* array of character info */ + pointer pglyphBase /* start of array of glyphs */ + ) { int width, height; PixmapPtr pPixmap; @@ -196,13 +198,15 @@ miPolyGlyphBlt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase) _X_EXPORT void -miImageGlyphBlt(pDrawable, pGC, x, y, nglyph, ppci, pglyphBase) - DrawablePtr pDrawable; - GC *pGC; - int x, y; - unsigned int nglyph; - CharInfoPtr *ppci; /* array of character info */ - pointer pglyphBase; /* start of array of glyphs */ +miImageGlyphBlt( + DrawablePtr pDrawable, + GC *pGC, + int x, + int y, + unsigned int nglyph, + CharInfoPtr *ppci, /* array of character info */ + pointer pglyphBase /* start of array of glyphs */ + ) { ExtentInfoRec info; /* used by QueryGlyphExtents() */ XID gcvals[3]; |