# HG changeset patch # User reimar # Date 1104330820 0 # Node ID 718ec28220d6c3625f55b517914a6c940f077122 # Parent 37e1dc7e7107929800403f7b903fdcecd5e32518 Doxygen comments improved diff -r 37e1dc7e7107 -r 718ec28220d6 libvo/gl_common.c --- a/libvo/gl_common.c Wed Dec 29 05:49:24 2004 +0000 +++ b/libvo/gl_common.c Wed Dec 29 14:33:40 2004 +0000 @@ -243,7 +243,7 @@ } #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 -r 37e1dc7e7107 -r 718ec28220d6 libvo/vo_gl.c --- a/libvo/vo_gl.c Wed Dec 29 05:49:24 2004 +0000 +++ b/libvo/vo_gl.c Wed Dec 29 14:33:40 2004 +0000 @@ -47,12 +47,17 @@ 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;