D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3d12umddi.h

typedef struct D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS {
  UINT          SrcSubresource;
  UINT          DstSubresource;
  UINT          DstX;
  UINT          DstY;
  D3D12DDI_RECT SrcRect;
} D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d12umddi-d3d12ddi_render_pass_ending_access_resolve_subresource_parameters)

D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_SUBRESOURCE_PARAMETERS structure

Description

Used in the D3D12DDI_RENDER_PASS_ENDING_ACCESS_RESOLVE_PARAMETERS structure, to specify the subresource to resolve while the Render Pass is ending access.

Members

SrcSubresource

A handle to the command list structure that the resolve subresource will be transitioned to at the time the Render Pass ends.

DstSubresource

A handle to the command list that the resolve subresource destination will be at the time the Render Pass ends.

DstX

The X coordinate of the left-most edge of the destination region. The width of the destination region is the same as the width of the source rectangle.

DstY

The Y coordinate of the top-most edge of the destination region. The height of the destination region is the same as the height of the source rectangle.

SrcRect

Specifies the rectangular region of the source subresource to be resolved.

Remarks

See also