summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-07-02 16:36:29 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-07-02 16:36:29 +0000
commit1675058a346a57d89a18147799579c0ad574bfd2 (patch)
tree1fa68921c71f350ba246389f5acbdddff27462f1 /src/mesa/main
parentbbea6ec0b62fbb2dd082b59ed5b2cfa4ed28e9dd (diff)
a few comments
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/mtypes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 98f599083d..8fe8831e90 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -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 */