mirror of
https://github.com/mpv-player/mpv
synced 2025-02-20 06:46:55 +00:00
Doxygen comments improved
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14270 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
9cba1c6491
commit
f9258247dd
@ -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.
|
||||
*/
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user