11 lines
146 B
GLSL
11 lines
146 B
GLSL
#version 150
|
|
|
|
uniform sampler2D InSampler;
|
|
|
|
in vec2 texCoord;
|
|
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(InSampler, texCoord);
|
|
}
|