xash3d-fwgs/ref_vk/shaders/2d.vert
Ivan Avdeev e49591652f add 2d pipelines with blending; menu is drawn almost ok
also switch to non-srgb framebuffer
and remove a bunch of verbose log messages
2021-01-18 13:33:22 -08:00

15 lines
266 B
GLSL

#version 450
layout(location=0) in vec2 aPos;
layout(location=1) in vec2 aUv;
layout(location=2) in vec4 aColor;
layout(location=0) out vec2 vUv;
layout(location=1) out vec4 vColor;
void main() {
gl_Position = vec4(aPos, 0., 1.);
vUv = aUv;
vColor = aColor;
}