Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

RenderTexture.enableRandomWrite

var enableRandomWrite: bool;
bool enableRandomWrite;
enableRandomWrite as bool

Description

Enable DX11 random access write into this render texture.

DirectX 11 pixel or compute shaders can write into arbitrary locations of some textures, called "unordered access views" in DX11. Set this flag before creating your render texture to enable this capability.

When a texture has this flag set, it can be written into as one RWTexture* resources in shaders. It can also be set as random access write target for pixel shaders using Graphics.SetRandomWriteTarget.

See Also: Graphics.SetRandomWriteTarget, DirectX 11.