Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_material_combine_hsv.glsl « material « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce061da3cbbd0c6a1d5c786aec392f6af873426 (plain)
1
2
3
4
void combine_hsv(float h, float s, float v, out vec4 col)
{
  hsv_to_rgb(vec4(h, s, v, 1.0), col);
}