diff --git a/pixman/src/fbpict.c b/pixman/src/fbpict.c index 07c293a29..675d1fb41 100644 --- a/pixman/src/fbpict.c +++ b/pixman/src/fbpict.c @@ -1902,7 +1902,6 @@ pixman_composite (pixman_operator_t op, } pixman_region_destroy (region); } -slim_hidden_def(pixman_composite); /* The CPU detection code needs to be in a file not compiled with * "-mmmx -msse", as gcc would generate CMOV instructions otherwise diff --git a/pixman/src/iccolor.c b/pixman/src/iccolor.c index 716382f44..26b4aaf57 100644 --- a/pixman/src/iccolor.c +++ b/pixman/src/iccolor.c @@ -53,7 +53,6 @@ pixman_color_to_pixel (const pixman_format_t *format, a = a << format->alpha; *pixel = r|g|b|a; } -slim_hidden_def(pixman_color_to_pixel); static uint16_t FbFillColor (uint32_t pixel, int bits) diff --git a/pixman/src/icformat.c b/pixman/src/icformat.c index f55d4435b..bf93a6c94 100644 --- a/pixman/src/icformat.c +++ b/pixman/src/icformat.c @@ -171,7 +171,6 @@ pixman_format_init (pixman_format_t *format, int format_code) (format->blueMask << format->blue) | (format->greenMask << format->green)); } -slim_hidden_def(pixman_format_init); void pixman_format_destroy (pixman_format_t *format) diff --git a/pixman/src/icimage.c b/pixman/src/icimage.c index 11e839617..44c4c8b34 100644 --- a/pixman/src/icimage.c +++ b/pixman/src/icimage.c @@ -45,7 +45,6 @@ pixman_image_create (pixman_format_t *format, return image; } -slim_hidden_def(pixman_image_create); pixman_image_t * pixman_image_create_for_data (FbBits *data, pixman_format_t *format, int width, int height, int bpp, int stride) @@ -369,7 +368,6 @@ pixman_image_set_component_alpha (pixman_image_t *image, if (image) image->componentAlpha = component_alpha; } -slim_hidden_def(pixman_image_set_component_alpha); int pixman_image_set_transform (pixman_image_t *image, @@ -412,7 +410,6 @@ pixman_image_set_repeat (pixman_image_t *image, if (image) image->repeat = repeat; } -slim_hidden_def(pixman_image_set_repeat); void pixman_image_set_filter (pixman_image_t *image, @@ -505,7 +502,6 @@ pixman_image_destroy (pixman_image_t *image) free (image); } -slim_hidden_def(pixman_image_destroy); void pixman_image_destroyClip (pixman_image_t *image) diff --git a/pixman/src/icint.h b/pixman/src/icint.h index e1265eb31..c846a5111 100644 --- a/pixman/src/icint.h +++ b/pixman/src/icint.h @@ -33,8 +33,6 @@ #include #include -#include "slim_internal.h" - #ifndef __GNUC__ #define __inline #endif @@ -852,17 +850,6 @@ pixman_private int pixman_transform_point (pixman_transform_t *transform, pixman_vector_t *vector); -/* Avoid unnessecary PLT entries. */ - -slim_hidden_proto(pixman_image_create) -slim_hidden_proto(pixman_color_to_pixel) -slim_hidden_proto(pixman_format_init) -slim_hidden_proto(pixman_image_destroy) -slim_hidden_proto(pixman_fill_rectangles) -slim_hidden_proto(pixman_image_set_component_alpha) -slim_hidden_proto(pixman_image_set_repeat) -slim_hidden_proto(pixman_composite) - #include "icrop.h" /* XXX: For now, I'm just wholesale pasting Xserver/render/picture.h here: */ diff --git a/pixman/src/icrect.c b/pixman/src/icrect.c index 7253bfa18..e4d0c12aa 100644 --- a/pixman/src/icrect.c +++ b/pixman/src/icrect.c @@ -363,4 +363,3 @@ bail1: ; } } -slim_hidden_def(pixman_fill_rectangles); diff --git a/pixman/src/pixregion.c b/pixman/src/pixregion.c index c9bc21914..5112157ca 100644 --- a/pixman/src/pixregion.c +++ b/pixman/src/pixregion.c @@ -50,7 +50,6 @@ SOFTWARE. #include #include "pixregionint.h" -#include "slim_internal.h" #if defined (__GNUC__) && !defined (NO_INLINES) #define INLINE __inline @@ -89,10 +88,6 @@ pixman_init (pixman_region16_t *region, pixman_box16_t *rect); static void pixman_uninit (pixman_region16_t *region); -slim_hidden_proto(pixman_region_create_simple) -slim_hidden_proto(pixman_region_copy) -slim_hidden_proto(pixman_region_union) - /* * The functions in this file implement the Region abstraction used extensively * throughout the X11 sample server. A Region is simply a set of disjoint @@ -327,7 +322,6 @@ pixman_region_create_simple (pixman_box16_t *extents) return region; } -slim_hidden_def(pixman_region_create_simple); /***************************************************************** * RegionInit(pReg, rect, size) @@ -452,7 +446,6 @@ pixman_region_copy(pixman_region16_t *dst, pixman_region16_t *src) dst->data->numRects * sizeof(pixman_box16_t)); return PIXMAN_REGION_STATUS_SUCCESS; } -slim_hidden_def(pixman_region_copy); /*====================================================================== * Generic Region Operator @@ -1232,7 +1225,6 @@ pixman_region_union(pixman_region16_t *newReg, pixman_region16_t *reg1, pixman_r good(newReg); return PIXMAN_REGION_STATUS_SUCCESS; } -slim_hidden_def(pixman_region_union); /*====================================================================== * Batch Rectangle Union