mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-15 16:30:08 +00:00
14 lines
221 B
GLSL
14 lines
221 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
in vec4 vColor;
|
|
in vec2 vTex;
|
|
layout(binding = 0) uniform sampler2D uTex;
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vColor * texture(uTex, vTex);
|
|
}
|
|
|