// d3d12umddi.h
typedef struct D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS {
D3D12DDI_HRESOURCE hSrcResource;
D3D12DDI_HRESOURCE hDstResource;
UINT SubresourceCount;
const D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS *pSubresourceParameters;
DXGI_FORMAT Format;
D3D12DDI_RESOLVE_MODE ResolveMode;
} D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS;
View the official Windows Driver Kit DDI referenceNo description available.
Holds the parameters used in the D3D12DDI_RENDER_PASS_ENDING_ACCESS structure, when the Render Pass is ending access.
hSrcResourceA handle to the command list structure that the resolve source will be transitioned to at the time the Render Pass ends.
hDstResourceA handle to the command list that the resolve destination will be at the time the Render Pass ends.
SubresourceCountThe count of subresources that are a part of the command list.
pSubresourceParametersA pointer to a D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS structure that represents the subresource parameters to resolve while the Render Pass is ending.
FormatThe format, represented in DXGI_FORMAT.
ResolveModeThe resolve mode to use while the Render Pass is ending.