Doxygen comments improved

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14270 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2004-12-29 14:33:40 +00:00
parent 9cba1c6491
commit f9258247dd
2 changed files with 6 additions and 1 deletions

View File

@ -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.
*/

View File

@ -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;