changeset 14269:718ec28220d6

Doxygen comments improved
author reimar
date Wed, 29 Dec 2004 14:33:40 +0000
parents 37e1dc7e7107
children 2804ddfb4eb7
files libvo/gl_common.c libvo/vo_gl.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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.
  */
--- 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;