ReferenceContext.WriteBuffer

Declaration

public void WriteBuffer(BufferSlice<T> dst, NativeArray<T> src);

Declaration

public void WriteBuffer(BufferSlice<T> dst, NativeArray<T> src, LightTransport.EventID id);

Parameters

dst The buffer slice to write to.
src The array in the CPU memory that should be written to the buffer. The array must remain valid until the write operation is complete.
id The ID of the event to use to track completion of the write.

Description

Write data into the memory buffer allocated by the context.

The ReferenceContext implementation of the WriteBuffer method is blocking and returns immediately after writing data into the underlying NativeArray.

Note: EventID is single-use. Once an EventID has been passed to this function, it may not be passed to subsequent IDeviceContext.WriteBuffer or IDeviceContext.ReadBuffer calls. Doing so will result in undefined behavior.


Did you find this page useful? Please give it a rating: