summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-29 14:33:40 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-12-29 14:33:40 +0000
commitf9258247dd733ad7e61e9031943a99adefaf1df3 (patch)
tree469732e742837f8c4c0b4721a2f74ba1346c8074 /libvo
parent9cba1c649153cd6bcf4ca3f395d7ca09aad3377a (diff)
downloadmpv-f9258247dd733ad7e61e9031943a99adefaf1df3.tar.bz2
mpv-f9258247dd733ad7e61e9031943a99adefaf1df3.tar.xz
Doxygen comments improved
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14270 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/gl_common.c2
-rw-r--r--libvo/vo_gl.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/libvo/gl_common.c b/libvo/gl_common.c
index 9dc7f79242..60577ebb84 100644
--- a/libvo/gl_common.c
+++ b/libvo/gl_common.c
@@ -243,7 +243,7 @@ void releaseGlContext(int *vinfo, HGLRC *context) {
}
#else
/**
- * Returns the XVisualInfo associated with Window win.
+ * \brief Returns the XVisualInfo associated with Window win.
* \param win Window whose XVisualInfo is returne.
* \return XVisualInfo of the window. Caller must use XFree to free it.
*/
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index 079d3f1be0..e788a2765b 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -47,12 +47,17 @@ static int wsGLXAttrib[] = { GLX_RGBA,
static int use_osd;
static int scaled_osd;
+//! How many parts the OSD may consist of at most
#define MAX_OSD_PARTS 20
+//! Textures for OSD
static GLuint osdtex[MAX_OSD_PARTS];
#ifndef FAST_OSD
+//! Alpha textures for OSD
static GLuint osdatex[MAX_OSD_PARTS];
#endif
+//! Display lists that draw the OSD parts
static GLuint osdDispList[MAX_OSD_PARTS];
+//! How many parts the OSD currently consists of
static int osdtexCnt = 0;
static int use_aspect;