public void GetData (Array data);

Parameters

data用于接收这些数据的数组。

Description

Read data values from the buffer into an array. The array can only use blittable types.

获取的数据将遵循正在使用的图形 API 的数据布局规则。请参阅Compute Shaders以了解跨平台兼容性信息。

Note: Only blittable data types can be copied from the buffer to the array, the array's type must be a blittable type. If you attempt to use non-blittable types, an exception will be raised.

另请参阅:SetDatacountstride


public void GetData (Array data, int managedBufferStartIndex, int computeBufferStartIndex, int count);

Parameters

data用于接收这些数据的数组。
managedBufferStartIndex数据中的第一个元素索引,从该位置起复制已获取元素。
computeBufferStartIndex计算缓冲区的第一个元素索引,从该位置起读取元素。
count要获取的元素数量。

Description

将该缓冲区中的数据值部分读取到数组中。

获取的数据将遵循正在使用的图形 API 的数据布局规则。请参阅Compute Shaders以了解跨平台兼容性信息。

Note: Only blittable data types can be copied from the buffer to the array, the array's type must be a blittable type. If you attempt to use non-blittable types, an exception will be raised.

另请参阅:SetDatacountstride