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

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

in vec2 texCoord_interp;
out vec4 fragColor;
#define texture2D texture

uniform vec4 color;
uniform sampler2D image;

void main()
{
	fragColor = texture2D(image, texCoord_interp) * color;
}