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

gpu_shader_image_alpha_color_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc0c86090691559216e69ece1e984690a1c8bce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

in vec2 texCoord_interp;
out vec4 fragColor;

uniform vec4 color;
uniform sampler2D image;

void main()
{
	fragColor = texture(image, texCoord_interp).r * color.rgba;
	/* Premul by alpha (not texture alpha)
	* Use blending function GPU_blend_set_func(GPU_ONE, GPU_ONE_MINUS_SRC_ALPHA); */
	fragColor.rgb *= color.a;
}