Enum BufferStorageFlags
Used in GL.BufferStorage, GL.NamedBufferStorage and 1 other function
Namespace: OpenTK.Graphics.OpenGL4
Assembly: OpenTK.dll
Syntax
public enum BufferStorageFlags
Fields
| Name | Description |
|---|---|
| ClientStorageBit | Original was GL_CLIENT_STORAGE_BIT = 0x0200 |
| DynamicStorageBit | Original was GL_DYNAMIC_STORAGE_BIT = 0x0100 |
| MapCoherentBit | Original was GL_MAP_COHERENT_BIT = 0x0080 |
| MapPersistentBit | Original was GL_MAP_PERSISTENT_BIT = 0x0040 |
| MapReadBit | Original was GL_MAP_READ_BIT = 0x0001 |
| MapWriteBit | Original was GL_MAP_WRITE_BIT = 0x0002 |
| None | Original was GL_NONE = 0 |