summaryrefslogtreecommitdiffstats
path: root/src/mesa/math
diff options
context:
space:
mode:
authorRhys Kidd <rhyskidd@gmail.com>2015-07-22 22:14:00 -0600
committerBrian Paul <brianp@vmware.com>2015-07-23 20:19:51 -0600
commit00fb21e744b045cc9f945021305b85595c35dd69 (patch)
tree8ca199b701fbb81ba3107aff6b289b27ac529c83 /src/mesa/math
parentbc893e3dad74622b971e295f60a022f179ca9942 (diff)
downloadexternal_mesa3d-00fb21e744b045cc9f945021305b85595c35dd69.zip
external_mesa3d-00fb21e744b045cc9f945021305b85595c35dd69.tar.gz
external_mesa3d-00fb21e744b045cc9f945021305b85595c35dd69.tar.bz2
doxygen: Link GLvector4f struct members properly, avoiding invalid XML/HTML warning
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/math')
-rw-r--r--src/mesa/math/m_vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/math/m_vector.h b/src/mesa/math/m_vector.h
index 3b7f583..5bd76b8 100644
--- a/src/mesa/math/m_vector.h
+++ b/src/mesa/math/m_vector.h
@@ -61,7 +61,7 @@
*/
typedef struct {
GLfloat (*data)[4]; /**< may be malloc'd or point to client data */
- GLfloat *start; /**< points somewhere inside of <data> */
+ GLfloat *start; /**< points somewhere inside of GLvector4f::data */
GLuint count; /**< size of the vector (in elements) */
GLuint stride; /**< stride from one element to the next (in bytes) */
GLuint size; /**< 2-4 for vertices and 1-4 for texcoords */