Is it possible to use RWTexture2D/RWTexture3D in pixel shader?

Currently the only way to use RWTextures is with the compute shader fork. This only works for compute shaders right now. Using RWTextures in pixel shaders is not (yet?) supported. You can write to the texture in a compute shader, and then read from it in the pixel shader though.

1 Like