bgfx/3rdparty/glslang/Test/spv.texture.sampler.transform.frag
Branimir Karadžić 7fc0b67b34 Updated glslang.
2017-06-03 11:11:11 -07:00

14 lines
168 B
GLSL

#version 440
uniform sampler smp;
uniform texture2D tex;
in vec2 coord;
out vec4 color;
void main()
{
color = texture(sampler2D(tex, smp), coord);
}