data | 用于接收这些数据的数组。 |
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.
另请参阅:SetData、count、stride。
data | 用于接收这些数据的数组。 |
managedBufferStartIndex | 数据中的第一个元素索引,从该位置起复制已获取元素。 |
computeBufferStartIndex | 计算缓冲区的第一个元素索引,从该位置起读取元素。 |
count | 要获取的元素数量。 |
将该缓冲区中的数据值部分读取到数组中。
获取的数据将遵循正在使用的图形 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.
另请参阅:SetData、count、stride。