DXVAHDDDI_BLT_STATE_TARGET_RECT_DATA - NtDoc

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

typedef struct _DXVAHDDDI_BLT_STATE_TARGET_RECT_DATA {
  [in] BOOL Enable;
  [in] RECT TargetRect;
} DXVAHDDDI_BLT_STATE_TARGET_RECT_DATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3dumddi-_dxvahdddi_blt_state_target_rect_data)

_DXVAHDDDI_BLT_STATE_TARGET_RECT_DATA structure

Description

The DXVAHDDDI_BLT_STATE_TARGET_RECT_DATA structure describes data that specifies the target rectangle of the output.

Members

Enable [in]

A Boolean value that specifies whether the driver should use the TargetRect member or the entire output surface as the target. The default value is FALSE, which indicates that the entire output surface is the target.

TargetRect [in]

A RECT structure that specifies the target rectangle in the coordinates of the output surface. This member is relevant only when the Enable member is set to TRUE. The default value is (0,0,0,0).

Remarks

If the Enable member is set to TRUE and the target rectangle that the TargetRect member specifies is not within the output surface, the intersection of the target rectangle and the output surface is used as the target rectangle.

See also

RECT