Flags indicating how an image is stretched to fit a given monitor’s resolution.
typedef enum DXGI_MODE_SCALING
{
DXGI_MODE_SCALING_UNSPECIFIED = 0,
DXGI_MODE_SCALING_CENTERED = 1,
DXGI_MODE_SCALING_STRETCHED = 2
} DXGI_MODE_SCALING;
| Constant | Description |
|---|---|
| DXGI_MODE_SCALING_UNSPECIFIED | Unspecified scaling. |
| DXGI_MODE_SCALING_CENTERED | Specifies no scaling. The image is centered on the display. This flag is typically used for a fixed-dot-pitch display (such as an LED display). |
| DXGI_MODE_SCALING_STRETCHED | Specifies stretched scaling. |
Header: Declared in d3d11_x.h (dxgitype.h on other Windows platforms).