mirror of
https://github.com/icaven/glm.git
synced 2025-12-12 22:49:59 +08:00
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
/// @ref gtc_color_encoding
|
|
/// @file glm/gtc/color_encoding.hpp
|
|
///
|
|
/// @see core (dependence)
|
|
/// @see gtc_color_encoding (dependence)
|
|
///
|
|
/// @defgroup gtc_color_encoding GLM_GTC_color_encoding
|
|
/// @ingroup gtc
|
|
///
|
|
/// @brief Allow to perform bit operations on integer values
|
|
///
|
|
/// <glm/gtc/color_encoding.hpp> need to be included to use these functionalities.
|
|
|
|
#pragma once
|
|
|
|
// Dependencies
|
|
#include "../detail/setup.hpp"
|
|
#include "../detail/precision.hpp"
|
|
#include "../vec3.hpp"
|
|
#include <limits>
|
|
|
|
#if GLM_MESSAGES == GLM_MESSAGES_ENABLED && !defined(GLM_EXT_INCLUDED)
|
|
# pragma message("GLM: GLM_GTC_color_encoding extension included")
|
|
#endif
|
|
|
|
namespace glm
|
|
{
|
|
/// @addtogroup gtc_color_encoding
|
|
/// @{
|
|
|
|
/// Convert a linear sRGB color to D65 YUV.
|
|
template <typename T, precision P>
|
|
GLM_FUNC_DECL tvec3<T, P> convertLinearSRGBToD65XYZ(tvec3<T, P> const& ColorLinearSRGB);
|
|
|
|
/// Convert a D65 YUV color to linear sRGB.
|
|
template <typename T, precision P>
|
|
GLM_FUNC_DECL tvec3<T, P> convertD65XYZToLinearSRGB(tvec3<T, P> const& ColorD65XYZ);
|
|
|
|
/// Convert a D50 YUV color to D65 YUV.
|
|
template <typename T, precision P>
|
|
GLM_FUNC_DECL tvec3<T, P> convertD50XYZToD65XYZ(tvec3<T, P> const& ColorD50XYZ);
|
|
|
|
/// Convert a D65 YUV color to D50 YUV.
|
|
template <typename T, precision P>
|
|
GLM_FUNC_DECL tvec3<T, P> convertD65XYZToD50XYZ(tvec3<T, P> const& ColorD65XYZ);
|
|
|
|
/// @}
|
|
} //namespace glm
|
|
|
|
#include "color_encoding.inl"
|