Skip to content

Instantly share code, notes, and snippets.

@DarkMio
Last active September 7, 2018 15:19
Show Gist options
  • Save DarkMio/af22091ac9a28cf701fff1c219d6cad2 to your computer and use it in GitHub Desktop.
Save DarkMio/af22091ac9a28cf701fff1c219d6cad2 to your computer and use it in GitHub Desktop.
float4 hsv2rgb(float4 c)
{
float4 K = float4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
float3 p = abs(frac(c.xxx + K.xyz) * 6.0 - K.www);
return float4(c.z * lerp(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y), c.a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment