Version: 2022.1
LanguageEnglish
  • C#

GraphicsBuffer.UsageFlags.LockBufferForWrite

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Enable the LockBufferForWrite and UnlockBufferAfterWrite methods on the GraphicsBuffer. CAUTION: when using this flag, ensure that you do not introduce memory read/write hazards.

With this flag, the buffer can be updated at any time using GraphicsBuffer.SetData and equivalent functions. The GPU can also copy to or write to the buffer.
The buffer can be written to directly from the CPU using GraphicsBuffer.LockBufferForWrite. For more information, see GraphicsBuffer.LockBufferForWrite.
This mode might place the buffer in the CPU visible GPU memory or in GPU visible CPU memory depending on a platform.
See Also: GraphicsBuffer GraphicsBuffer.LockBufferForWrite.