diff --git a/glm/gtc/color_space.inl b/glm/gtc/color_space.inl index 3fe293b0..fb6f4230 100644 --- a/glm/gtc/color_space.inl +++ b/glm/gtc/color_space.inl @@ -55,6 +55,16 @@ namespace detail return detail::compute_rgbToSrgb::call(ColorLinear, static_cast(0.41666)); } + // Based on Ian Taylor http://chilliant.blogspot.fr/2012/08/srgb-approximations-for-hlsl.html + template <> + GLM_FUNC_QUALIFIER tvec3 convertLinearToSRGB(tvec3 const& ColorLinear) + { + tvec3 S1 = sqrt(ColorLinear); + tvec3 S2 = sqrt(S1); + tvec3 S3 = sqrt(S2); + return 0.662002687f * S1 + 0.684122060f * S2 - 0.323583601f * S3 - 0.0225411470f * ColorLinear; + } + template class vecType> GLM_FUNC_QUALIFIER vecType convertLinearToSRGB(vecType const& ColorLinear, T Gamma) { @@ -66,7 +76,7 @@ namespace detail { return detail::compute_srgbToRgb::call(ColorSRGB, static_cast(2.4)); } - + template class vecType> GLM_FUNC_QUALIFIER vecType convertSRGBToLinear(vecType const& ColorSRGB, T Gamma) { diff --git a/glm/gtc/packing.inl b/glm/gtc/packing.inl index c77673c1..332840bd 100644 --- a/glm/gtc/packing.inl +++ b/glm/gtc/packing.inl @@ -639,7 +639,7 @@ namespace detail return vec3(Unpack.data.x, Unpack.data.y, Unpack.data.z) * pow(2.0f, Unpack.data.w - 15.f - 9.f); } - // From http://graphicrants.blogspot.fr/2009/04/rgbm-color-encoding.html + // Based on Brian Karis http://graphicrants.blogspot.fr/2009/04/rgbm-color-encoding.html template GLM_FUNC_QUALIFIER tvec4 packRGBM(tvec3 const & rgb) { diff --git a/readme.md b/readme.md index 74a2ba1a..77934e6d 100644 --- a/readme.md +++ b/readme.md @@ -57,6 +57,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate) - Added GTC_color_encoding extension ##### Improvements: +- Added lowp variant of GTC_colorspace convertLinearToSRGB #419 ##### Fixes: diff --git a/test/gtc/gtc_color_space.cpp b/test/gtc/gtc_color_space.cpp index a834f39c..483c4f4e 100644 --- a/test/gtc/gtc_color_space.cpp +++ b/test/gtc/gtc_color_space.cpp @@ -40,11 +40,29 @@ namespace srgb } }//namespace srgb +namespace srgb_lowp +{ + int test() + { + int Error(0); + + for(float Color = 0.0f; Color < 1.0f; Color += 0.01f) + { + glm::highp_vec3 const HighpSRGB = glm::convertLinearToSRGB(glm::highp_vec3(Color)); + glm::lowp_vec3 const LowpSRGB = glm::convertLinearToSRGB(glm::lowp_vec3(Color)); + Error += glm::all(glm::epsilonEqual(glm::abs(HighpSRGB - glm::highp_vec3(LowpSRGB)), glm::highp_vec3(0), 0.1f)) ? 0 : 1; + } + + return Error; + } +}//namespace srgb_lowp + int main() { int Error(0); Error += srgb::test(); + Error += srgb_lowp::test(); return Error; }