Opengl Make Vbo

[Solved] Opengl Make Vbo | Vb - Code Explorer | yomemimo.com
Question : OpenGL make VBO

Answered by : mieysofelix

//Create VBO (you can use unsigned int if you wan't)
GLuint VBO;
//generate the Buffer
glGenBuffers(1, &VBO)
//bind our VBO
glBindBuffer(GL_ARRAY_BUFFER, VBO)

Source : | Last Update : Sat, 17 Sep 22

Answers related to opengl make vbo

Code Explorer Popular Question For Vb