public void SetData (Array data);
public void SetData (List<T> data);
public void SetData (NativeArray<T> data);

Parameters

data要填充该缓冲区的值的数组。

Description

使用数组中的值设置该缓冲区。

这些输入数据必须遵循正在使用的图形 API 的数据布局规则。请参阅Compute Shaders以了解跨平台兼容性信息。

Note: Because only blittable data types can be copied from the array to the buffer, the array must only contain elements of a blittable type. If you attempt to use non-blittable types, an exception will be raised.

另请参阅:GetDatacountstride


public void SetData (Array data, int managedBufferStartIndex, int computeBufferStartIndex, int count);
public void SetData (List<T> data, int managedBufferStartIndex, int computeBufferStartIndex, int count);
public void SetData (NativeArray<T> data, int nativeBufferStartIndex, int computeBufferStartIndex, int count);

Parameters

data要填充该缓冲区的值的数组。
managedBufferStartIndex数据中的第一个元素索引,从该位置起复制到计算缓冲区。
computeBufferStartIndex计算缓冲区的第一个元素索引,从该位置起接收数据。
count要复制的元素数量。

Description

将数组中的数据值部分复制到该缓冲区中。

这些输入数据必须遵循正在使用的图形 API 的数据布局规则。请参阅Compute Shaders以了解跨平台兼容性信息。

Note: Because only blittable data types can be copied from the array to the buffer, the array must only contain elements of a blittable type. If you attempt to use non-blittable types, an exception will be raised.

另请参阅:GetDatacountstride