mirror of
https://github.com/KhronosGroup/SPIRV-Cross.git
synced 2024-11-14 16:01:07 +00:00
de33d89074
Needed for newer glslang. With Vulkan semantics for SPIR-V, all locations must be explicitly defined.
14 lines
263 B
GLSL
14 lines
263 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
|
|
layout(location = 0) in vec4 vColor;
|
|
layout(location = 1) in vec2 vTex;
|
|
layout(binding = 0) uniform sampler2D uTex;
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vColor * texture(uTex, vTex);
|
|
}
|
|
|