12 lines
139 B
GLSL
12 lines
139 B
GLSL
|
|
#version 460
|
|
|
|
out vec4 resultColor;
|
|
in vec2 uvPos;
|
|
|
|
uniform sampler2D texture0;
|
|
|
|
void main() {
|
|
resultColor = texture(texture0, uvPos);
|
|
}
|