Assorted casts to silence g++ warnings.
[mesa.git] / src / mesa / main / texobj.h
index 6311a50a7175568d54874c7dfebcfc5dda86c391..f7e8e690c4c7d3ec24330e5db655ad83267984b4 100644 (file)
@@ -1,3 +1,7 @@
+/**
+ * \file texobj.h
+ * Texture object management.
+ */
 
 /*
  * Mesa 3-D graphics library
 #include "mtypes.h"
 
 
-
-/*
- * Internal functions
+/**
+ * \name Internal functions
  */
+/*@{*/
 
 extern struct gl_texture_object *
 _mesa_new_texture_object( GLcontext *ctx, GLuint name, GLenum target );
@@ -60,10 +64,13 @@ extern void
 _mesa_test_texobj_completeness( const GLcontext *ctx,
                                 struct gl_texture_object *obj );
 
+/*@}*/
 
-/*
- * API functions
+
+/**
+ * \name API functions
  */
+/*@{*/
 
 extern void
 _mesa_GenTextures( GLsizei n, GLuint *textures );
@@ -86,9 +93,9 @@ extern GLboolean
 _mesa_AreTexturesResident( GLsizei n, const GLuint *textures,
                            GLboolean *residences );
 
-
 extern GLboolean
 _mesa_IsTexture( GLuint texture );
 
+/*@}*/
 
 #endif