a few comments
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 2 Jul 2004 16:36:29 +0000 (16:36 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 2 Jul 2004 16:36:29 +0000 (16:36 +0000)
src/mesa/main/mtypes.h

index 98f599083d7840f6ff4431b467dfcdca410e56d3..8fe8831e906e5be537b46f18abe9b355f832d4b6 100644 (file)
@@ -1395,11 +1395,11 @@ struct gl_pixelstore_attrib {
  * Client vertex array attributes
  */
 struct gl_client_array {
-   GLint Size;
-   GLenum Type;
+   GLint Size;                  /**< components per element (1,2,3,4) */
+   GLenum Type;                 /**< datatype: GL_FLOAT, GL_INT, etc */
    GLsizei Stride;             /**< user-specified stride */
    GLsizei StrideB;            /**< actual stride in bytes */
-   const GLubyte *Ptr;
+   const GLubyte *Ptr;          /**< Points to array data */
    GLuint Enabled;             /**< one of the _NEW_ARRAY_ bits */
    GLboolean Normalized;        /**< GL_ARB_vertex_program */