mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
a few comments
This commit is contained in:
parent
bbea6ec0b6
commit
1675058a34
1 changed files with 3 additions and 3 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue