1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-23 23:56:20 +00:00

Cosmetics: reindent.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21336 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
eugeni 2006-11-27 17:34:47 +00:00
parent 42e4745f17
commit f356ada7fb

View File

@ -97,21 +97,21 @@ void ass_font_set_transform(ass_font_t* font, FT_Matrix* m, FT_Vector* v)
font->v.x != v->x || font->v.x != v->x ||
font->v.y != v->y font->v.y != v->y
) { ) {
font->m.xx = m->xx; font->m.xx = m->xx;
font->m.xy = m->xy; font->m.xy = m->xy;
font->m.yx = m->yx; font->m.yx = m->yx;
font->m.yy = m->yy; font->m.yy = m->yy;
font->v.x = v->x; font->v.x = v->x;
font->v.y = v->y; font->v.y = v->y;
FT_Set_Transform(font->face, &font->m, &font->v); FT_Set_Transform(font->face, &font->m, &font->v);
} }
} }
void ass_font_set_size(ass_font_t* font, int size) void ass_font_set_size(ass_font_t* font, int size)
{ {
if (font->size != size) { if (font->size != size) {
font->size = size; font->size = size;
FT_Set_Pixel_Sizes(font->face, 0, size); FT_Set_Pixel_Sizes(font->face, 0, size);
} }
} }