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

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

void main()
{
  fragColor = texture(image, texCoord_interp);
  fragColor.a *= alpha;
}