Version: 2020.1
言語: 日本語
public Rendering.ScopedSubPass BeginScopedSubPass (NativeArray<int> colors, NativeArray<int> inputs, bool isDepthReadOnly);
public Rendering.ScopedSubPass BeginScopedSubPass (NativeArray<int> colors, bool isDepthReadOnly);

パラメーター

colors Array of attachments to be used as the color render targets in this sub pass. These are specificed as indices into the array passed to BeginRenderPass. The values in the array are copied immediately.
inputs Array of attachments to be used as input attachments in this sub pass. These are specificed as indices into the array passed to BeginRenderPass. The values in the array are copied immediately.
isDepthReadOnly If true, the depth attachment is read-only in this sub pass. Some renderers require this in order to be able to use the depth attachment as input.

説明

Schedules the beginning of a new sub pass within a render pass. If you call this in a using-statement, Unity executes EndSubPass automatically when exiting the using-block. Render passes can never be standalone, they must always contain at least one sub pass. Only one sub pass can be active at any time.

This method does the same as BeginSubPass, but it will return an IDisposable that can be used in a using-statement, and so it is not necesssary to manually call EndSubPass.

See Also: BeginScopedRenderPass.