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: 74e1719898538b07cb4533255cdcaa542d376245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#if __VERSION__ == 120
  varying vec2 texCoord_interp;
  #define fragColor gl_FragColor
#else
  in vec2 texCoord_interp;
  out vec4 fragColor;
  #define texture2D texture
#endif

uniform float alpha;
uniform sampler2D image;

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