summaryrefslogtreecommitdiff
path: root/src/mesa/main/teximage.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/teximage.h
parent44c699949ac09459771304a8aec8f2fc622057fb (diff)
Merge Jose's documentation and core Mesa changes from embedded branch
Diffstat (limited to 'src/mesa/main/teximage.h')
-rw-r--r--src/mesa/main/teximage.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h
index ed0008e37f..e90cd71705 100644
--- a/src/mesa/main/teximage.h
+++ b/src/mesa/main/teximage.h
@@ -1,3 +1,8 @@
+/**
+ * \file teximage.h
+ * Texture images manipulation functions.
+ */
+
/*
* Mesa 3-D graphics library
* Version: 5.1
@@ -30,8 +35,8 @@
#include "mtypes.h"
-/*** Internal functions ***/
-
+/** \name Internal functions */
+/*@{*/
extern GLint
_mesa_base_tex_format( GLcontext *ctx, GLint format );
@@ -86,8 +91,11 @@ _mesa_test_proxy_teximage(GLcontext *ctx, GLenum target, GLint level,
GLint internalFormat, GLenum format, GLenum type,
GLint width, GLint height, GLint depth, GLint border);
-/*** API entry point functions ***/
+/*@}*/
+
+/** \name API entry point functions */
+/*@{*/
extern void
_mesa_TexImage1D( GLenum target, GLint level, GLint internalformat,
@@ -214,5 +222,6 @@ _mesa_CompressedTexSubImage3DARB(GLenum target, GLint level, GLint xoffset,
extern void
_mesa_GetCompressedTexImageARB(GLenum target, GLint lod, GLvoid *img);
+/*@}*/
#endif