|
constexpr | Color (uint8 rgba=0) noexcept |
| Creates a new sRGB color structure.
|
|
constexpr | Color (uint8 r, uint8 g, uint8 b, uint8 a) noexcept |
| Creates a new sRGB color structure.
|
|
constexpr | Color (uint32 data) |
| Creates a new sRGB color structure from the binary data.
|
|
| Color (const string &hex) |
| Creates a new sRGB color structure from the hexadecimal string.
|
|
constexpr | Color (float2 normRg) |
| Creates a new sRGB color structure from the normalized R and G channels. (Red, Green)
|
|
constexpr | Color (float3 normRgb) |
| Creates a new sRGB color structure from the normalized RGB channels. (Red, Green, Blue)
|
|
constexpr | Color (float4 normRgba) |
| Creates a new sRGB color structure from the normalized RGBA channels. (Red, Green, Blue, Alpha)
|
|
| Color (f32x4 normRgba) |
| Creates a new sRGB color structure from the normalized RGBA channels. (Red, Green, Blue, Alpha)
|
|
constexpr | operator float2 () const noexcept |
| Converts sRGB color to the normalized RG vector. (Red, Green)
|
|
constexpr | operator float3 () const noexcept |
| Converts sRGB color to the normalized RGB vector. (Red, Green, Blue)
|
|
constexpr | operator float4 () const noexcept |
| Converts sRGB color to the normalized RGBA vector. (Red, Green, Blue, Alpha)
|
|
| operator f32x4 () const noexcept |
| Converts sRGB color to the normalized RGBA SIMD vector. (Red, Green, Blue, Alpha)
|
|
constexpr | operator uint32 () const noexcept |
| Returns color binary data.
|
|
constexpr float | getNormR () const noexcept |
| Returns sRGB color normalizer R channel. (Red)
|
|
constexpr float | getNormG () const noexcept |
| Returns sRGB color normalizer G channel. (Green)
|
|
constexpr float | getNormB () const noexcept |
| Returns sRGB color normalizer B channel. (Blue)
|
|
constexpr float | getNormA () const noexcept |
| Returns sRGB color normalizer A channel. (Alpha)
|
|
constexpr void | setNormR (float r) noexcept |
| Sets sRGB color normalizer R channel. (Red)
|
|
constexpr void | setNormG (float g) noexcept |
| Sets sRGB color normalizer G channel. (Green)
|
|
constexpr void | setNormB (float b) noexcept |
| Sets sRGB color normalizer B channel. (Blue)
|
|
constexpr void | setNormA (float a) noexcept |
| Sets sRGB color normalizer A channel. (Alpha)
|
|
string | toString4 () const noexcept |
| Converts sRGB color to the string. (Space separated)
|
|
string | toString3 () const noexcept |
| Converts sRGB color to the string. (Space separated)
|
|
string | toString2 () const noexcept |
| Converts sRGB color to the string. (Space separated)
|
|
string | toString1 () const noexcept |
| Converts sRGB color to the string. (Space separated)
|
|
string | toHex4 () const noexcept |
| Converts sRGB color to the RGB hexadecimal string.
|
|
string | toHex3 () const noexcept |
| Converts sRGB color to the RGBA hexadecimal string.
|
|
f32x4 | toLinear () const noexcept |
| Converts sRGB color to the normalized linear RGB color space.
|
|
constexpr bool | operator== (Color c) const noexcept |
|
constexpr bool | operator!= (Color c) const noexcept |
|
constexpr bool | operator< (Color c) const noexcept |
|
constexpr bool | operator> (Color c) const noexcept |
|
constexpr bool | operator<= (Color c) const noexcept |
|
constexpr bool | operator>= (Color c) const noexcept |
|
constexpr bool | operator== (uint8 n) const noexcept |
|
constexpr bool | operator!= (uint8 n) const noexcept |
|
constexpr bool | operator< (uint8 n) const noexcept |
|
constexpr bool | operator> (uint8 n) const noexcept |
|
constexpr bool | operator<= (uint8 n) const noexcept |
|
constexpr bool | operator>= (uint8 n) const noexcept |
|
|
static const Color | white = Color(255, 255, 255, 255) |
|
static const Color | black = Color(0, 0, 0, 255) |
|
static const Color | grey = Color(127, 127, 127, 255) |
|
static const Color | transparent = Color(0, 0, 0, 0) |
|
static const Color | red = Color(255, 0, 0, 255) |
|
static const Color | green = Color(0, 255, 0, 255) |
|
static const Color | blue = Color(0, 0, 255, 255) |
|
static const Color | cyan = Color(0, 255, 255, 255) |
|
static const Color | magenta = Color(255, 0, 255, 255) |
|
static const Color | yellow = Color(255, 255, 0, 255) |
|