20 #ifndef ANTKEEPER_GL_BUFFER_USAGE_HPP
21 #define ANTKEEPER_GL_BUFFER_USAGE_HPP
Graphics library interface.
buffer_usage
Usage hints for vertex buffers.
@ static_draw
Data will be modified once, by the application, and used many times, for drawing commands.
@ dynamic_copy
Data will be modified repeatedly, by reading data from the GL, and used many times,...
@ static_copy
Data will be modified once, by reading data from the GL, and many times, for drawing commands.
@ dynamic_draw
Data will be modified repeatedly, by the application, and used many times, for drawing commands.
@ stream_draw
Data will be modified once, by the application, and used at most a few times, for drawing commands.
@ dynamic_read
Data will be modified repeatedly, by reading data from the GL, and used many times,...
@ static_read
Data will be modified once, by reading data from the GL, and used many times, to return that data to ...
@ stream_copy
Data will be modified once, by reading data from the GL, and used at most a few times,...
@ stream_read
Data will be modified once, by reading data from the GL, and used at most a few times,...