summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-06 09:58:29 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-10-06 09:58:29 +0000
commit84767439c98a1da0a62395c29b03a0433dd97c40 (patch)
tree5c2fbc46b12e9c1d92ae3cf20b70f59a51e863e5 /libvo
parent8c06343128da1b6d90e2dc0246164b60f141302f (diff)
downloadmpv-84767439c98a1da0a62395c29b03a0433dd97c40.tar.bz2
mpv-84767439c98a1da0a62395c29b03a0433dd97c40.tar.xz
EOSD performance debugging info.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20090 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index 37bac55ec6..cce0057908 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -275,6 +275,8 @@ static void genEOSD(ass_image_t *img) {
else
eosdtexCnt++;
}
+ mp_msg(MSGT_VO, MSGL_DBG2, "EOSD counts (tiny, small, all): %i, %i, %i\n",
+ tinytexcur, smalltexcur, eosdtexCnt);
if (eosdtexCnt) {
eosdtex = calloc(eosdtexCnt, sizeof(GLuint));
glGenTextures(eosdtexCnt, eosdtex);