0.9.8
Functions
GLM_GTC_color_space

Functions

template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_DECL vecType< T, P > convertLinearToSRGB (vecType< T, P > const &ColorLinear)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_DECL vecType< T, P > convertLinearToSRGB (vecType< T, P > const &ColorLinear, T Gamma)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_DECL vecType< T, P > convertSRGBToLinear (vecType< T, P > const &ColorSRGB)
 
template<typename T , precision P, template< typename, precision > class vecType>
GLM_FUNC_DECL vecType< T, P > convertSRGBToLinear (vecType< T, P > const &ColorSRGB, T Gamma)
 

Detailed Description

Allow to perform bit operations on integer values.

<glm/gtc/color.hpp> need to be included to use these functionalities.

Function Documentation

GLM_FUNC_DECL vecType<T, P> glm::convertLinearToSRGB ( vecType< T, P > const &  ColorLinear)

Convert a linear color to sRGB color using a standard gamma correction.

IEC 61966-2-1:1999 specification https://www.w3.org/Graphics/Color/srgb

GLM_FUNC_DECL vecType<T, P> glm::convertLinearToSRGB ( vecType< T, P > const &  ColorLinear,
Gamma 
)

Convert a linear color to sRGB color using a custom gamma correction.

IEC 61966-2-1:1999 specification https://www.w3.org/Graphics/Color/srgb

GLM_FUNC_DECL vecType<T, P> glm::convertSRGBToLinear ( vecType< T, P > const &  ColorSRGB)

Convert a sRGB color to linear color using a standard gamma correction.

IEC 61966-2-1:1999 specification https://www.w3.org/Graphics/Color/srgb