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

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

in vec2 uv_interp;
out vec4 fragColor;

uniform sampler2D image;


void main()
{
	fragColor = texture(image, uv_interp);
}