diff options
author | Eric Anholt <eric@anholt.net> | 2014-01-22 15:03:26 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-01-27 09:30:47 -0800 |
commit | 54e78ec31e030d488765341a0c143c5a060c3768 (patch) | |
tree | faed93c71c1b959ad75c2e7075e8673ef5da730b /glamor/glamor.h | |
parent | 3c3a4eeaa1f24b7534b332739158a2a36987ea6b (diff) |
glamor: Convert use of the old "pointer" typedef to "void *".
Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glamor/glamor.h')
-rw-r--r-- | glamor/glamor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/glamor/glamor.h b/glamor/glamor.h index f1805e01d..05f565b12 100644 --- a/glamor/glamor.h +++ b/glamor/glamor.h @@ -411,13 +411,13 @@ extern _X_EXPORT Bool glamor_image_glyph_blt_nf(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, CharInfoPtr *ppci, - pointer pglyphBase); + void *pglyphBase); extern _X_EXPORT Bool glamor_poly_glyph_blt_nf(DrawablePtr pDrawable, GCPtr pGC, int x, int y, unsigned int nglyph, CharInfoPtr *ppci, - pointer pglyphBase); + void *pglyphBase); extern _X_EXPORT Bool glamor_push_pixels_nf(GCPtr pGC, PixmapPtr pBitmap, DrawablePtr pDrawable, int w, int h, |