diff options
author | Keith Whitwell <[email protected]> | 2003-07-17 13:43:59 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2003-07-17 13:43:59 +0000 |
commit | 6dc85575000127630489b407c50a4b3ea87c9acb (patch) | |
tree | c79b24b7059577caf8201eeb7a42a6890721f52b /src/mesa/main/teximage.h | |
parent | 44c699949ac09459771304a8aec8f2fc622057fb (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.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/mesa/main/teximage.h b/src/mesa/main/teximage.h index ed0008e37f8..e90cd717052 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 |