enum GpuMapOption

Options for GPU buffer mapping operations.

Values

NameValueDescription
Read 1 Map for reading (will invalidate before mapping).
Write 2 Map for writing (will flush after unmapping).
NoOverwrite 4 Suppresses validation warnings if the caller writes to a buffer region already bound to a command buffer.
ReadWrite 3 Map for both reading and writing.