Version: 2017.4
public static void SetRandomWriteTarget (int index, ComputeBuffer uav, bool preserveCounterValue= false);
public static void SetRandomWriteTarget (int index, RenderTexture uav);

パラメーター

indexシェーダーのランダム書き込みターゲットのインデックス
uav書き込むターゲットとして設定する RenderTexture
preserveCounterValueCounterValue を変更なしに維持するかどうか

説明

Set random write target for Shader Model 4.5 level pixel shaders.

Shader Model 4.5 and above level pixel shaders can write into arbitrary locations of some textures and buffers, called "unordered access views" (UAV) in UsingDX11GL3Features. These "random write" targets are set similarly to how multiple render targets are set. You can either use a RenderTexture with enableRandomWrite flag set, or a ComputeBuffer as target.

The UAV indexing varies a bit between different platforms. On DX11 the first valid UAV index is the number of active render targets. So the common case of single render target the UAV indexing will start from 1. Platforms using automatically translated HLSL shaders will match this behaviour. However, with hand-written GLSL shaders the indexes will match the bindings. On PS4 the indexing starts always from 1 to match the most common case.

ComputeBuffer を設定するとき、preserveCounterValue パラメーターは CounterValue を変更しないか、または、0 にリセットする (デフォルト) かを示します。

手動で ClearRandomWriteTargets とそれらをクリアするまでターゲットを Stay に設定します。

See Also: RenderTexture.enableRandomWrite, ComputeBuffer, ComputeBuffer.SetCounterValue, UsingDX11GL3Features.