[Pixman] [PATCH 2/4] Remove pixman_transform_point_31_16* from global namespace

Emil Velikov emil.l.velikov at gmail.com
Sun Apr 24 18:20:59 UTC 2016


These internal functions were needed by matrix-test. With the test
static linking pixman (as of last commit) we no longer need to export
these and we can move them back to being internal only.

Signed-off-by: Emil Velikov <emil.l.velikov at gmail.com>
---
 pixman/pixman-matrix.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pixman/pixman-matrix.c b/pixman/pixman-matrix.c
index 4032c13..65b3d32 100644
--- a/pixman/pixman-matrix.c
+++ b/pixman/pixman-matrix.c
@@ -194,7 +194,7 @@ fixed_112_16_to_fixed_48_16 (int64_t hi, int64_t lo, pixman_bool_t *clampflag)
  * and PAD repeats correctly) and the return value is FALSE to indicate that
  * such clamping has happened.
  */
-PIXMAN_EXPORT pixman_bool_t
+pixman_bool_t
 pixman_transform_point_31_16 (const pixman_transform_t    *t,
                               const pixman_vector_48_16_t *v,
                               pixman_vector_48_16_t       *result)
@@ -303,7 +303,7 @@ pixman_transform_point_31_16 (const pixman_transform_t    *t,
     return !clampflag;
 }
 
-PIXMAN_EXPORT void
+void
 pixman_transform_point_31_16_affine (const pixman_transform_t    *t,
                                      const pixman_vector_48_16_t *v,
                                      pixman_vector_48_16_t       *result)
@@ -334,7 +334,7 @@ pixman_transform_point_31_16_affine (const pixman_transform_t    *t,
     result->v[2] = pixman_fixed_1;
 }
 
-PIXMAN_EXPORT void
+void
 pixman_transform_point_31_16_3d (const pixman_transform_t    *t,
                                  const pixman_vector_48_16_t *v,
                                  pixman_vector_48_16_t       *result)
-- 
2.8.0



More information about the Pixman mailing list