ID3D12GraphicsCommandList::ResolveSubresource method
Copy a multi-sampled resource into a non-multi-sampled resource.
Syntax
void ResolveSubresource( [in] ID3D12Resource *pDstResource, [in] UINT DstSubresource, [in] ID3D12Resource *pSrcResource, [in] UINT SrcSubresource, [in] DXGI_FORMAT Format );
Parameters
- pDstResource [in]
-
Type: ID3D12Resource*
Destination resource. Must be a created with the D3D11_USAGE_DEFAULT flag and be single-sampled. See ID3D12Resource.
- DstSubresource [in]
-
Type: UINT
A zero-based index, that identifies the destination subresource. Use D3D12CalcSubresource to calculate the subresource index if the parent resource is complex.
- pSrcResource [in]
-
Type: ID3D12Resource*
Source resource. Must be multisampled.
- SrcSubresource [in]
-
Type: UINT
The source subresource of the source resource.
- Format [in]
-
Type: DXGI_FORMAT
A DXGI_FORMAT that indicates how the multisampled resource will be resolved to a single-sampled resource. See remarks.
Return value
This method does not return a value.
Remarks
Debug layer
The debug layer will issue an error if the subresources referenced by the source view is not in the D3D12_RESOURCE_STATE_RESOLVE_SOURCE state.
The debug layer will issue an error if the destination buffer is not in the D3D12_RESOURCE_STATE_RESOLVE_DESTstate.
This API is most useful when re-using the resulting rendertarget of one render pass as an input to a second render pass.
The source and destination resources must be the same resource type and have the same dimensions. In addition, they must have compatible formats. There are three scenarios for this:
| Scenario | Requirements |
|---|---|
| Source and destination are prestructured and typed | Both the source and destination must have identical formats and that format must be specified in the Format parameter. |
| One resource is prestructured and typed and the other is prestructured and typeless | The typed resource must have a format that is compatible with the typeless resource (i.e. the typed resource is DXGI_FORMAT_R32_FLOAT and the typeless resource is DXGI_FORMAT_R32_TYPELESS). The format of the typed resource must be specified in the Format parameter. |
| Source and destination are prestructured and typeless |
Both the source and desintation must have the same typeless format (i.e. both must have DXGI_FORMAT_R32_TYPELESS), and the Format parameter must specify a format that is compatible with the source and destination (i.e. if both are DXGI_FORMAT_R32_TYPELESS then DXGI_FORMAT_R32_FLOAT could be specified in the Format parameter).
For example, given the DXGI_FORMAT_R16G16B16A16_TYPELESS format:
|
Requirements
|
Header |
|
|---|---|
|
Library |
|
|
DLL |
|
See also