Method ConfigureTarget
ConfigureTarget(RTHandle, RTHandle)
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
Declaration
public void ConfigureTarget(RTHandle colorAttachment, RTHandle depthAttachment)
Parameters
Type | Name | Description |
---|---|---|
RTHandle | colorAttachment | Color attachment handle. |
RTHandle | depthAttachment | Depth attachment handle. |
See Also
ConfigureTarget(RTHandle[], RTHandle)
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
Declaration
public void ConfigureTarget(RTHandle[] colorAttachments, RTHandle depthAttachment)
Parameters
Type | Name | Description |
---|---|---|
RTHandle[] | colorAttachments | Color attachment handle. |
RTHandle | depthAttachment | Depth attachment handle. |
See Also
ConfigureTarget(RTHandle)
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
Declaration
public void ConfigureTarget(RTHandle colorAttachment)
Parameters
Type | Name | Description |
---|---|---|
RTHandle | colorAttachment | Color attachment handle. |
See Also
ConfigureTarget(RTHandle[])
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
Declaration
public void ConfigureTarget(RTHandle[] colorAttachments)
Parameters
Type | Name | Description |
---|---|---|
RTHandle[] | colorAttachments | Color attachment handle. |