Version: 2019.1

CommandBuffer.GetTemporaryRTArray

Switch to Manual
public void GetTemporaryRTArray (int nameID, int width, int height, int slices, int depthBuffer, FilterMode filter, RenderTextureFormat format, RenderTextureReadWrite readWrite, int antiAliasing, bool enableRandomWrite);

Parameters

nameIDShader property name for this texture.
widthWidth in pixels, or -1 for "camera pixel width".
heightHeight in pixels, or -1 for "camera pixel height".
slicesNumber of slices in texture array.
depthBufferDepth buffer bits (0, 16 or 24).
filterTexture filtering mode (default is Point).
formatFormat of the render texture (default is ARGB32).
readWriteColor space conversion mode.
antiAliasingAnti-aliasing (default is no anti-aliasing).
enableRandomWriteShould random-write access into the texture be enabled (default is false).

Description

Add a "get a temporary render texture array" command.

This creates a temporary render texture array with given parameters, and sets it up as a global shader property with nameID. Use Shader.PropertyToID to create the integer name.

Release the temporary render texture array using ReleaseTemporaryRT, passing the same nameID. Any temporary textures that were not explicitly released will be removed after camera is done rendering, or after Graphics.ExecuteCommandBuffer is done.

After getting a temporary render texture array, you can set it as active (SetRenderTarget) or blit to/from it (Blit). You do not explicitly need to preserve active render targets during command buffer execution (current render targets are saved & restored afterwards).

See Also: ReleaseTemporaryRT, SetRenderTarget, Blit.