GLMAPFLUSHEXPLICITBIT
GLMAPFLUSHEXPLICITBIT, also known as GL_MAP_FLUSH_EXPLICIT_BIT, is a bit flag used in OpenGL to control how data written through mapped buffer ranges is flushed to the graphics subsystem. It is part of the set of map access bits used with buffer mapping functions such as glMapBufferRange.
When this flag is included in the access mask passed to glMapBufferRange, the application takes responsibility
GL_MAP_FLUSH_EXPLICIT_BIT is commonly used in conjunction with other related flags, such as GL_MAP_PERSISTENT_BIT, to support persistent
The flag is defined within the OpenGL specification as part of the map buffer range extension (ARB_map_buffer_range).