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.
선언
public void ConfigureTarget(RTHandle colorAttachment, RTHandle depthAttachment)
파라미터
타입 | 이름 | 설명 |
---|---|---|
RTHandle | colorAttachment | Color attachment handle. |
RTHandle | depthAttachment | Depth attachment handle. |
참고
ConfigureTarget(RTHandle[], RTHandle)
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
선언
public void ConfigureTarget(RTHandle[] colorAttachments, RTHandle depthAttachment)
파라미터
타입 | 이름 | 설명 |
---|---|---|
RTHandle[] | colorAttachments | Color attachment handle. |
RTHandle | depthAttachment | Depth attachment handle. |
참고
ConfigureTarget(RTHandle)
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
선언
public void ConfigureTarget(RTHandle colorAttachment)
파라미터
타입 | 이름 | 설명 |
---|---|---|
RTHandle | colorAttachment | Color attachment handle. |
참고
ConfigureTarget(RTHandle[])
Configures render targets for this render pass. Call this instead of CommandBuffer.SetRenderTarget. This method should be called inside Configure.
선언
public void ConfigureTarget(RTHandle[] colorAttachments)
파라미터
타입 | 이름 | 설명 |
---|---|---|
RTHandle[] | colorAttachments | Color attachment handle. |