RGB to YCoCg conversions and operations. More...
Functions | |
template<typename valType > | |
detail::tvec3< valType > | rgb2YCoCg (detail::tvec3< valType > const &rgbColor) |
template<typename valType > | |
detail::tvec3< valType > | rgb2YCoCgR (detail::tvec3< valType > const &rgbColor) |
template<typename valType > | |
detail::tvec3< valType > | YCoCg2rgb (detail::tvec3< valType > const &YCoCgColor) |
template<typename valType > | |
detail::tvec3< valType > | YCoCgR2rgb (detail::tvec3< valType > const &YCoCgColor) |
RGB to YCoCg conversions and operations.
<glm/gtx/color_space_YCoCg.hpp> need to be included to use these functionalities.
detail::tvec3<valType> glm::gtx::color_space_YCoCg::rgb2YCoCg | ( | detail::tvec3< valType > const & | rgbColor | ) |
Convert a color from RGB color space to YCoCg color space.
From GLM_GTX_color_space_YCoCg extension.
detail::tvec3<valType> glm::gtx::color_space_YCoCg::rgb2YCoCgR | ( | detail::tvec3< valType > const & | rgbColor | ) |
Convert a color from RGB color space to YCoCgR color space.
detail::tvec3<valType> glm::gtx::color_space_YCoCg::YCoCg2rgb | ( | detail::tvec3< valType > const & | YCoCgColor | ) |
Convert a color from YCoCg color space to RGB color space.
From GLM_GTX_color_space_YCoCg extension.
detail::tvec3<valType> glm::gtx::color_space_YCoCg::YCoCgR2rgb | ( | detail::tvec3< valType > const & | YCoCgColor | ) |
Convert a color from YCoCgR color space to RGB color space.