DXGK_MULTIPLANE_OVERLAY_YCbCr_FLAGS structure (d3dkmddi.h)

Identifies YUV range and conversion info that describes a multiplane overlay.

Syntax

typedef struct _DXGK_MULTIPLANE_OVERLAY_YCbCr_FLAGS {
  union {
    struct {
      UINT NominalRange : 1;
      UINT Bt709 : 1;
      UINT xvYCC : 1;
      UINT Reserved : 29;
    };
    UINT Value;
  };
} DXGK_MULTIPLANE_OVERLAY_YCbCr_FLAGS;

Members

NominalRange

If set, YUV values range from 16 to 235, inclusive, instead of the default range of 0 to 255, inclusive.

Setting this member is equivalent to setting the first bit of the 32-bit Value member (0x00000001).

Bt709

If set, YUV values should be converted using the BT.709 standard, instead of the default BT.601 conversion.

Setting this member is equivalent to setting the second bit of the 32-bit Value member (0x00000002).

xvYCC

If set, YUV values contain xvYCC data, instead of conventional YCbCr data.

Setting this member is equivalent to setting the third bit of the 32-bit Value member (0x00000004).

Reserved

This member is reserved and should be set to zero.

Setting this member to zero is equivalent to setting the remaining 29 bits (0xFFFFFFF8) of the 32-bit Value member to zeros.

Value

A 32-bit value that identifies the type of blend operation to perform.

Requirements

Requirement Value
Minimum supported client Windows 8.1
Minimum supported server Windows Server 2012 R2
Header d3dkmddi.h (include D3dkmddi.h)