11 lines
138 B
GLSL
11 lines
138 B
GLSL
#version GLSL_VERSION
|
|
|
|
uniform sampler2D image;
|
|
|
|
in vec2 texcoord;
|
|
out vec4 color;
|
|
|
|
void main() {
|
|
color = texture(image, texcoord);
|
|
}
|