summaryrefslogtreecommitdiff
path: root/src/mesa/main/texobj.h
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-07-17 13:43:59 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-07-17 13:43:59 +0000
commit6dc85575000127630489b407c50a4b3ea87c9acb (patch)
treec79b24b7059577caf8201eeb7a42a6890721f52b /src/mesa/main/texobj.h
parent44c699949ac09459771304a8aec8f2fc622057fb (diff)
Merge Jose's documentation and core Mesa changes from embedded branch
Diffstat (limited to 'src/mesa/main/texobj.h')
-rw-r--r--src/mesa/main/texobj.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h
index 6311a50a71..f7e8e690c4 100644
--- a/src/mesa/main/texobj.h
+++ b/src/mesa/main/texobj.h
@@ -1,3 +1,7 @@
+/**
+ * \file texobj.h
+ * Texture object management.
+ */
/*
* Mesa 3-D graphics library
@@ -31,10 +35,10 @@
#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