diff options
author | Brian Paul <[email protected]> | 2004-05-14 23:11:53 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-05-14 23:11:53 +0000 |
commit | de4b3bb7766f242cd7c46841250405f5fd6bb7d3 (patch) | |
tree | 8209d2d9a8a3819addd15d9973457569ef6abe98 /src/mesa/main/macros.h | |
parent | d72834dd0ba471bbd7fe16aedc800f290ea46651 (diff) |
minor doxygen updates
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r-- | src/mesa/main/macros.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index 67e4de9239a..1999758dfba 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)) |