Home opengl - glGenbuffers
Post
Cancel

opengl - glGenbuffers

Name

glGenBuffers — generate buffer object names

C Specification

1
2
void glGenBuffers(	GLsizei n,
 	GLuint * buffers);

Parameters

n

Specifies the number of buffer object names to be generated.

buffers

Specifies an array in which the generated buffer object names are stored.

Description

glGenBuffers returns n buffer object names in buffers. There is no guarantee that the names form a contiguous set of integers; however, it is guaranteed that none of the returned names was in use immediately before the call to glGenBuffers.

This post is licensed under CC BY 4.0 by the author.