DXGI_RGB Structure

Represents an RGB color.

Syntax

typedef struct DXGI_RGB {
    float Red;
    float Green;
    float Blue;
} DXGI_RGB;  

Members

Red
A value representing the color of the red component. The range of this value is between 0 and 1.

Green
A value representing the color of the green component. The range of this value is between 0 and 1.

Blue
A value representing the color of the blue component. The range of this value is between 0 and 1.

Requirements

Header: Declared in d3d11_x.h (dxgitype.h on other Windows platforms).