Files
LNXSDK/Kha/Kore/Shaders/g1.frag.glsl
2026-05-22 01:09:33 -07:00

10 lines
131 B
GLSL

#version 450
uniform sampler2D texy;
in vec2 texCoord;
out vec4 FragColor;
void main() {
FragColor = texture(texy, texCoord);
}