pathfinder/resources/shaders/gl4/blit.fs.glsl

32 lines
286 B
GLSL

#version {{version}}
// Automatically generated from files in pathfinder/shaders/. Do not edit!
precision highp float;
uniform sampler2D uSrc;
in vec2 vTexCoord;
out vec4 oFragColor;
void main(){
vec4 color = texture(uSrc, vTexCoord);
oFragColor = color;
}