diff options
author | Adam Jackson <ajax@redhat.com> | 2014-05-23 12:06:03 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2014-10-27 15:45:19 -0400 |
commit | ce8fff5cd681523088c14b97ce4fb6e4fb658321 (patch) | |
tree | e5694c1953f879bd177318678de624f23c4175a9 /mi | |
parent | a085ba82bde375b5c884a40b410b563815c58a9e (diff) |
mi: Unexport subpixel polygon implementation details
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'mi')
-rw-r--r-- | mi/Makefile.am | 2 | ||||
-rw-r--r-- | mi/mifpoly.h | 17 |
2 files changed, 9 insertions, 10 deletions
diff --git a/mi/Makefile.am b/mi/Makefile.am index b93a8f916..b24302952 100644 --- a/mi/Makefile.am +++ b/mi/Makefile.am @@ -3,7 +3,7 @@ noinst_LTLIBRARIES = libmi.la if XORG sdk_HEADERS = micmap.h miline.h mipointer.h mi.h \ migc.h mipointrst.h mizerarc.h micoord.h mifillarc.h \ - mistruct.h mifpoly.h mioverlay.h + mistruct.h mioverlay.h endif AM_CFLAGS = $(DIX_CFLAGS) diff --git a/mi/mifpoly.h b/mi/mifpoly.h index f853fb46b..4b27d1c18 100644 --- a/mi/mifpoly.h +++ b/mi/mifpoly.h @@ -89,14 +89,13 @@ typedef struct _SppArc { /* mifpolycon.c */ -extern _X_EXPORT void miFillSppPoly(DrawablePtr /*dst */ , - GCPtr /*pgc */ , - int /*count */ , - SppPointPtr /*ptsIn */ , - int /*xTrans */ , - int /*yTrans */ , - double /*xFtrans */ , - double /*yFtrans */ - ); +extern void miFillSppPoly(DrawablePtr /*dst */ , + GCPtr /*pgc */ , + int /*count */ , + SppPointPtr /*ptsIn */ , + int /*xTrans */ , + int /*yTrans */ , + double /*xFtrans */ , + double /*yFtrans */); #endif /* __MIFPOLY_H__ */ |