diff options
| author | Brian Paul <brianp@vmware.com> | 2009-05-06 12:48:21 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-05-07 10:12:33 -0600 | 
| commit | b102c1d8f9ea359879e6c1c4fd8c80c00d21cad5 (patch) | |
| tree | 2e52e43f7e5d2151b9bdbc296d130f61237d1666 /src | |
| parent | 7e3bd457e8cf106391f4418d910b8267b4b0de2c (diff) | |
mesa: fix/add comments
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/main/mtypes.h | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 587dc80146..bdb1081ca8 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1542,9 +1542,8 @@ struct gl_client_array     GLboolean Enabled;		/**< Enabled flag is a boolean */     GLboolean Normalized;        /**< GL_ARB_vertex_program */ -   /**< GL_ARB_vertex_buffer_object */ -   struct gl_buffer_object *BufferObj; -   GLuint _MaxElement; +   struct gl_buffer_object *BufferObj;/**< GL_ARB_vertex_buffer_object */ +   GLuint _MaxElement;          /**< max element index into array buffer */  };  | 
