Files
Lucina3DS/externals/glslang/Test/link.tesselation.frag
2025-02-06 22:24:29 +08:00

16 lines
234 B
GLSL

#version 440
layout(location = 0) in Primitive
{
vec2 texCoord;
} IN;
layout(location = 0) out vec4 oColor;
layout(binding = 0) uniform sampler2D mytex;
void main()
{
oColor = texture(mytex, IN.texCoord);
}