From: Rhys Kidd Date: Thu, 23 Jul 2015 04:14:00 +0000 (-0600) Subject: doxygen: Link GLvector4f struct members properly, avoiding invalid XML/HTML warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=00fb21e744b045cc9f945021305b85595c35dd69;p=mesa.git doxygen: Link GLvector4f struct members properly, avoiding invalid XML/HTML warning Signed-off-by: Rhys Kidd Reviewed-by: Brian Paul --- diff --git a/src/mesa/math/m_vector.h b/src/mesa/math/m_vector.h index 3b7f5834c56..5bd76b8987d 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 */ + 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 */