summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoreugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-27 14:25:36 +0000
committereugeni <eugeni@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-27 14:25:36 +0000
commitc67220c86fa6267d8e0aa5b69d0eebbe17e0ede2 (patch)
treeb8e7d650db0b09986770f59af665319b048f38e7 /libvo
parent13156cd7946705c89ad04edba05c6434d1675e46 (diff)
downloadmpv-c67220c86fa6267d8e0aa5b69d0eebbe17e0ede2.tar.bz2
mpv-c67220c86fa6267d8e0aa5b69d0eebbe17e0ede2.tar.xz
Add -ass-hinting option for setting font hinting method.
It is possible to separately configure hinting for scaled and unscaled osd. The default is native hinter for unscaled osd (only vo_gl at this point), no hinting for vf_ass. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23152 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index 622955a6d3..327d27dea7 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -792,7 +792,7 @@ query_format(uint32_t format)
VFCAP_FLIP |
VFCAP_HWSCALE_UP | VFCAP_HWSCALE_DOWN | VFCAP_ACCEPT_STRIDE;
if (use_osd)
- caps |= VFCAP_OSD | VFCAP_EOSD;
+ caps |= VFCAP_OSD | VFCAP_EOSD | VFCAP_EOSD_UNSCALED;
if ((format == IMGFMT_RGB24) || (format == IMGFMT_RGBA))
return caps;
if (use_yuv && format == IMGFMT_YV12)