Unix and Linux Discussions Tagged with array |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
63,314 |
Shell Programming and Scripting |
|
|
|
11 |
9,307 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
67,973 |
Shell Programming and Scripting |
|
|
|
4 |
62,581 |
Shell Programming and Scripting |
|
|
|
6 |
5,248 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,115 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
42,558 |
Shell Programming and Scripting |
|
|
|
3 |
28,024 |
Shell Programming and Scripting |
|
|
|
8 |
7,436 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
10,415 |
Shell Programming and Scripting |
|
|
|
4 |
4,637 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,813 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
14,337 |
UNIX for Beginners Questions & Answers |
|
|
|
21 |
14,410 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,951 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,260 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
8,936 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,696 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
16,252 |
Shell Programming and Scripting |
|
|
|
6 |
8,994 |
Shell Programming and Scripting |
|
|
|
3 |
21,377 |
AIX |
|
|
|
3 |
4,035 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
6,188 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
13,953 |
Shell Programming and Scripting |
|
|
|
3 |
3,322 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
22,960 |
AIX |
|
|
|
6 |
21,906 |
Homework & Coursework Questions |
|
|
|
3 |
6,523 |
Shell Programming and Scripting |
|
|
|
3 |
2,296 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
7,278 |
Shell Programming and Scripting |
|
|
|
29 |
10,612 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
3,814 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,000 |
Shell Programming and Scripting |
|
|
|
12 |
8,918 |
Shell Programming and Scripting |
|
|
|
2 |
2,206 |
Shell Programming and Scripting |
|
|
|
17 |
5,701 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
7,080 |
What is on Your Mind? |
|
|
|
6 |
3,886 |
Shell Programming and Scripting |
|
|
|
8 |
12,650 |
Shell Programming and Scripting |
|
|
|
9 |
3,315 |
Shell Programming and Scripting |
GLBINDVERTEXARRAY(3G) OpenGL Manual GLBINDVERTEXARRAY(3G)
NAME
glBindVertexArray - bind a vertex array object
C SPECIFICATION
void glBindVertexArray(GLuint array);
PARAMETERS
array
Specifies the name of the vertex array to bind.
DESCRIPTION
glBindVertexArray binds the vertex array object with name array. array is the name of a vertex array object previously returned from a
call to glGenVertexArrays(), or zero to break the existing vertex array object binding.
If no vertex array object with name array exists, one is created when array is first bound. If the bind is successful no change is made to
the state of the vertex array object, and any previous vertex array object binding is broken.
ERRORS
GL_INVALID_OPERATION is generated if array is not zero or the name of a vertex array object previously returned from a call to
glGenVertexArrays().
SEE ALSO
glGenVertexArrays(), glDeleteVertexArrays()glVertexAttribPointer()glEnableVertexAttribArray()
COPYRIGHT
Copyright (C) 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication
License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.
AUTHORS
opengl.org
opengl.org 06/10/2014 GLBINDVERTEXARRAY(3G)