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

gpu_shader_material_shader_to_rgba.glsl « material « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d791f06782113737edddee1c5568cc081df92517 (plain)
1
2
3
4
5
6

void node_shader_to_rgba(Closure cl, out vec4 outcol, out float outalpha)
{
  outcol = closure_to_rgba(cl);
  outalpha = outcol.a;
}