summaryrefslogtreecommitdiff
path: root/src/cairo-font-options.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-09-05 16:48:49 -0700
committerCarl Worth <cworth@cworth.org>2006-09-05 17:22:00 -0700
commitd7f08794ef194d0b86a749381472bfeb0a32d993 (patch)
treee0717009c0811a90e58c6d1222b75e73d94a47b1 /src/cairo-font-options.c
parente06246b9b1015eb89112f628d5820fcb350a7335 (diff)
downloadcairo-d7f08794ef194d0b86a749381472bfeb0a32d993.tar.gz
Add many missing slim_hidden calls to bypass PLT entries for local use of public functions
Diffstat (limited to 'src/cairo-font-options.c')
-rw-r--r--src/cairo-font-options.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cairo-font-options.c b/src/cairo-font-options.c
index e3a5f75c0..2b0cd988b 100644
--- a/src/cairo-font-options.c
+++ b/src/cairo-font-options.c
@@ -95,6 +95,7 @@ cairo_font_options_create (void)
return options;
}
+slim_hidden_def (cairo_font_options_create);
/**
* cairo_font_options_copy:
@@ -137,6 +138,7 @@ cairo_font_options_destroy (cairo_font_options_t *options)
free (options);
}
+slim_hidden_def (cairo_font_options_destroy);
/**
* cairo_font_options_status:
@@ -182,6 +184,7 @@ cairo_font_options_merge (cairo_font_options_t *options,
if (other->hint_metrics != CAIRO_HINT_METRICS_DEFAULT)
options->hint_metrics = other->hint_metrics;
}
+slim_hidden_def (cairo_font_options_merge);
/**
* cairo_font_options_equal:
@@ -201,6 +204,7 @@ cairo_font_options_equal (const cairo_font_options_t *options,
options->hint_style == other->hint_style &&
options->hint_metrics == other->hint_metrics);
}
+slim_hidden_def (cairo_font_options_equal);
/**
* cairo_font_options_hash:
@@ -222,6 +226,7 @@ cairo_font_options_hash (const cairo_font_options_t *options)
(options->hint_style << 8) |
(options->hint_metrics << 16));
}
+slim_hidden_def (cairo_font_options_hash);
/**
* cairo_font_options_set_antialias:
@@ -240,6 +245,7 @@ cairo_font_options_set_antialias (cairo_font_options_t *options,
options->antialias = antialias;
}
+slim_hidden_def (cairo_font_options_set_antialias);
/**
* cairo_font_options_get_antialias:
@@ -275,6 +281,7 @@ cairo_font_options_set_subpixel_order (cairo_font_options_t *options,
options->subpixel_order = subpixel_order;
}
+slim_hidden_def (cairo_font_options_set_subpixel_order);
/**
* cairo_font_options_get_subpixel_order:
@@ -310,6 +317,7 @@ cairo_font_options_set_hint_style (cairo_font_options_t *options,
options->hint_style = hint_style;
}
+slim_hidden_def (cairo_font_options_set_hint_style);
/**
* cairo_font_options_get_hint_style:
@@ -345,6 +353,7 @@ cairo_font_options_set_hint_metrics (cairo_font_options_t *options,
options->hint_metrics = hint_metrics;
}
+slim_hidden_def (cairo_font_options_set_hint_metrics);
/**
* cairo_font_options_get_hint_metrics: