Version: 2018.2
public void SetData (Array data);

パラメーター

dataバッファを埋めるための値の配列

説明

配列から値をバッファへと設定します

入力データは、グラフィック 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.

See Also: GetData, count, stride.


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

パラメーター

dataバッファを埋めるための値の配列
managedBufferStartIndexThe first element index in data to copy to the compute buffer.
computeBufferStartIndexThe first element index in compute buffer to receive the data.
countThe number of elements to copy.

説明

Partial copy of data values from an array into the buffer.

入力データは、グラフィック 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.

See Also: GetData, count, stride.