tornavis/source/blender/gpu/shaders/gpu_shader_image_frag.glsl

11 lines
135 B
GLSL

in vec2 texCoord_interp;
out vec4 fragColor;
uniform sampler2D image;
void main()
{
fragColor = texture(image, texCoord_interp);
}