summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/main/config.h3
-rw-r--r--src/mesa/main/dd.h3
-rw-r--r--src/mesa/main/macros.h2
-rw-r--r--src/mesa/main/pixel.h2
4 files changed, 6 insertions, 4 deletions
diff --git a/src/mesa/main/config.h b/src/mesa/main/config.h
index 7db906c949..c745cbf3be 100644
--- a/src/mesa/main/config.h
+++ b/src/mesa/main/config.h
@@ -116,6 +116,9 @@
/** Number of texture units - GL_ARB_multitexture */
#define MAX_TEXTURE_UNITS 8
+/*@}*/
+
+
/**
* \name Separate numbers of texture coordinates and texture image units.
*
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index c29c27efe6..e314fd8fa1 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -703,9 +703,6 @@ struct dd_function_table {
/*@}*/
- /*@}*/
-
-
/**
* \name State-query functions
*
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h
index 67e4de9239..1999758dfb 100644
--- a/src/mesa/main/macros.h
+++ b/src/mesa/main/macros.h
@@ -102,6 +102,8 @@ extern GLfloat _mesa_ubyte_to_float_color_tab[256];
#define CLAMPED_FLOAT_TO_USHORT(us, f) \
us = ( (GLushort) IROUND( (f) * 65535.0F) )
+/*@}*/
+
/** Stepping a GLfloat pointer by a byte stride */
#define STRIDE_F(p, i) (p = (GLfloat *)((GLubyte *)p + i))
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h
index 32696c8b66..13dee25510 100644
--- a/src/mesa/main/pixel.h
+++ b/src/mesa/main/pixel.h
@@ -36,7 +36,7 @@
/** \name API functions */
-/*@*/
+/*@{*/
extern void GLAPIENTRY
_mesa_GetPixelMapfv( GLenum map, GLfloat *values );