SPIRV-Cross/reference/opt/shaders/frag/sampler.frag

16 lines
293 B
GLSL
Raw Normal View History

2017-11-22 11:08:06 +00:00
#version 310 es
precision mediump float;
precision highp int;
layout(binding = 0) uniform mediump sampler2D uTex;
layout(location = 0) out vec4 FragColor;
layout(location = 0) in vec4 vColor;
layout(location = 1) in vec2 vTex;
void main()
{
FragColor = vColor * texture(uTex, vTex);
}