diff options
author | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-05-01 15:07:41 +0000 |
---|---|---|
committer | eugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-05-01 15:07:41 +0000 |
commit | 3e9be13d66a75b3bb94176901f1343e4c7ce17b7 (patch) | |
tree | e45ae4b54cfc2e4c7c9bfc072ae5a63c879bf43e /libass | |
parent | 005220995c3070ce2e9bdf99866666f2c74dd466 (diff) |
Make a function static.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23190 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libass')
-rw-r--r-- | libass/ass_render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libass/ass_render.c b/libass/ass_render.c index ed64242165..e704338645 100644 --- a/libass/ass_render.c +++ b/libass/ass_render.c @@ -1652,7 +1652,7 @@ static inline void transform_glyph_3d(FT_Glyph glyph, double *m, FT_Vector shift * \param frz z-axis rotation angle * Rotates both glyphs by frx, fry and frz. Shift vector is added before rotation and subtracted after it. */ -void transform_3d(FT_Vector shift, FT_Glyph* glyph, FT_Glyph* glyph2, double frx, double fry, double frz) +static void transform_3d(FT_Vector shift, FT_Glyph* glyph, FT_Glyph* glyph2, double frx, double fry, double frz) { if (frx != 0. || fry != 0. || frz != 0.) { double m[16]; |