Make blur() public. Will be used in libass.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19853 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
eugeni 2006-09-16 13:32:19 +00:00
parent 867aa92076
commit b21382fa5b
2 changed files with 4 additions and 1 deletions

View File

@ -88,6 +88,9 @@ int kerning(font_desc_t *desc, int prevc, int c);
void load_font_ft(int width, int height);
void blur(unsigned char *buffer, unsigned short *tmp2, int width, int height,
int stride, int *m2, int r, int mwidth);
#else
static void render_one_glyph(font_desc_t *desc, int c) {}

View File

@ -330,7 +330,7 @@ static void outline0(
}
// gaussian blur
static void blur(
void blur(
unsigned char *buffer,
unsigned short *tmp2,
int width,