DXGI_RGB structure

Represents an RGB color.

Syntax

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

Members

  • Red
    Type: float

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

  • Green
    Type: float

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

  • Blue
    Type: float

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

Remarks

This structure is a member of the DXGI_GAMMA_CONTROL structure.

Requirements

Header

DXGI.h

See also

DXGI Structures