Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseSet random write target for DX11 pixel shaders.
DirectX 11 pixel shaders can write into arbitrary locations of some textures, called "unordered access views" in DX11. 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.