Skip to content

Instantly share code, notes, and snippets.

@h3r
Last active January 20, 2022 21:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3r/1346a94a60379316dc64d0ea9121a022 to your computer and use it in GitHub Desktop.
Save h3r/1346a94a60379316dc64d0ea9121a022 to your computer and use it in GitHub Desktop.
GLSL Color operations
/*
All components are in the range [0...1], including hue.
Source: http://lolengine.net/blog/2013/07/27/rgb-to-hsv-in-glsl
*/
vec3 rgb2hsv(vec3 c)
{
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
float d = q.x - min(q.w, q.y);
float e = 1.0e-10;
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
}
// All components are in the range [0…1], including hue.
vec3 hsv2rgb(vec3 c)
{
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
return c.z * normalize(mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment