#[repr(C)]pub enum COLOR_SPACE {
Show 40 variants
COLOR_SPACE_sRGB = 0,
COLOR_SPACE_sRGBL = 1,
COLOR_SPACE_AdobeRGB = 2,
COLOR_SPACE_AdobeRGBL = 3,
COLOR_SPACE_WideGamutRGB = 4,
COLOR_SPACE_WideGamutRGBL = 5,
COLOR_SPACE_ProPhotoRGB = 6,
COLOR_SPACE_ProPhotoRGBL = 7,
COLOR_SPACE_DCI_P3_RGB = 8,
COLOR_SPACE_DCI_P3_RGBL = 9,
COLOR_SPACE_AppleRGB = 10,
COLOR_SPACE_AppleRGBL = 11,
COLOR_SPACE_REC_709_RGB = 12,
COLOR_SPACE_REC_709_RGBL = 13,
COLOR_SPACE_REC_2020_RGB = 14,
COLOR_SPACE_REC_2020_RGBL = 15,
COLOR_SPACE_XYZ_D65_2 = 16,
COLOR_SPACE_XYZ_D65_10 = 17,
COLOR_SPACE_XYZ_D50_2 = 18,
COLOR_SPACE_XYZ_D50_10 = 19,
COLOR_SPACE_XYZ_A_2 = 20,
COLOR_SPACE_XYZ_A_10 = 21,
COLOR_SPACE_XYZ_D55_2 = 22,
COLOR_SPACE_XYZ_D55_10 = 23,
COLOR_SPACE_XYZ_D75_2 = 24,
COLOR_SPACE_XYZ_D75_10 = 25,
COLOR_SPACE_XYZ_E_2 = 26,
COLOR_SPACE_XYZ_E_10 = 27,
COLOR_SPACE_Lab_D65_2 = 28,
COLOR_SPACE_Lab_D65_10 = 29,
COLOR_SPACE_Lab_D50_2 = 30,
COLOR_SPACE_Lab_D50_10 = 31,
COLOR_SPACE_Lab_A_2 = 32,
COLOR_SPACE_Lab_A_10 = 33,
COLOR_SPACE_Lab_D55_2 = 34,
COLOR_SPACE_Lab_D55_10 = 35,
COLOR_SPACE_Lab_D75_2 = 36,
COLOR_SPACE_Lab_D75_10 = 37,
COLOR_SPACE_Lab_E_2 = 38,
COLOR_SPACE_Lab_E_10 = 39,
}
Variants§
COLOR_SPACE_sRGB = 0
https://en.wikipedia.org/wiki/SRGB , RGB color space
COLOR_SPACE_sRGBL = 1
https://en.wikipedia.org/wiki/SRGB , linear RGB color space
COLOR_SPACE_AdobeRGB = 2
https://en.wikipedia.org/wiki/Adobe_RGB_color_space , RGB color space
COLOR_SPACE_AdobeRGBL = 3
https://en.wikipedia.org/wiki/Adobe_RGB_color_space , linear RGB color space
COLOR_SPACE_WideGamutRGB = 4
https://en.wikipedia.org/wiki/Wide-gamut_RGB_color_space , RGB color space
COLOR_SPACE_WideGamutRGBL = 5
https://en.wikipedia.org/wiki/Wide-gamut_RGB_color_space , linear RGB color space
COLOR_SPACE_ProPhotoRGB = 6
https://en.wikipedia.org/wiki/ProPhoto_RGB_color_space , RGB color space
COLOR_SPACE_ProPhotoRGBL = 7
https://en.wikipedia.org/wiki/ProPhoto_RGB_color_space , linear RGB color space
COLOR_SPACE_DCI_P3_RGB = 8
https://en.wikipedia.org/wiki/DCI-P3 , RGB color space
COLOR_SPACE_DCI_P3_RGBL = 9
https://en.wikipedia.org/wiki/DCI-P3 , linear RGB color space
COLOR_SPACE_AppleRGB = 10
https://en.wikipedia.org/wiki/RGB_color_space , RGB color space
COLOR_SPACE_AppleRGBL = 11
https://en.wikipedia.org/wiki/RGB_color_space , linear RGB color space
COLOR_SPACE_REC_709_RGB = 12
https://en.wikipedia.org/wiki/Rec._709 , RGB color space
COLOR_SPACE_REC_709_RGBL = 13
https://en.wikipedia.org/wiki/Rec._709 , linear RGB color space
COLOR_SPACE_REC_2020_RGB = 14
https://en.wikipedia.org/wiki/Rec._2020 , RGB color space
COLOR_SPACE_REC_2020_RGBL = 15
https://en.wikipedia.org/wiki/Rec._2020 , linear RGB color space
COLOR_SPACE_XYZ_D65_2 = 16
https://en.wikipedia.org/wiki/CIE_1931_color_space , non-RGB color space
COLOR_SPACE_XYZ_D65_10 = 17
non-RGB color space
COLOR_SPACE_XYZ_D50_2 = 18
non-RGB color space
COLOR_SPACE_XYZ_D50_10 = 19
non-RGB color space
COLOR_SPACE_XYZ_A_2 = 20
non-RGB color space
COLOR_SPACE_XYZ_A_10 = 21
non-RGB color space
COLOR_SPACE_XYZ_D55_2 = 22
non-RGB color space
COLOR_SPACE_XYZ_D55_10 = 23
non-RGB color space
COLOR_SPACE_XYZ_D75_2 = 24
non-RGB color space
COLOR_SPACE_XYZ_D75_10 = 25
non-RGB color space
COLOR_SPACE_XYZ_E_2 = 26
non-RGB color space
COLOR_SPACE_XYZ_E_10 = 27
non-RGB color space
COLOR_SPACE_Lab_D65_2 = 28
https://en.wikipedia.org/wiki/CIELAB_color_space , non-RGB color space
COLOR_SPACE_Lab_D65_10 = 29
non-RGB color space
COLOR_SPACE_Lab_D50_2 = 30
non-RGB color space
COLOR_SPACE_Lab_D50_10 = 31
non-RGB color space
COLOR_SPACE_Lab_A_2 = 32
non-RGB color space
COLOR_SPACE_Lab_A_10 = 33
non-RGB color space
COLOR_SPACE_Lab_D55_2 = 34
non-RGB color space
COLOR_SPACE_Lab_D55_10 = 35
non-RGB color space
COLOR_SPACE_Lab_D75_2 = 36
non-RGB color space
COLOR_SPACE_Lab_D75_10 = 37
non-RGB color space
COLOR_SPACE_Lab_E_2 = 38
non-RGB color space
COLOR_SPACE_Lab_E_10 = 39
non-RGB color space
Trait Implementations§
Source§impl Clone for COLOR_SPACE
impl Clone for COLOR_SPACE
Source§fn clone(&self) -> COLOR_SPACE
fn clone(&self) -> COLOR_SPACE
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more