qt6windows7/tests/manual/examples/vulkan/hellovulkantexture/texture.vert
2023-10-29 23:33:08 +01:00

19 lines
324 B
GLSL

#version 440
layout(location = 0) in vec4 position;
layout(location = 1) in vec2 texcoord;
layout(location = 0) out vec2 v_texcoord;
layout(std140, binding = 0) uniform buf {
mat4 mvp;
} ubuf;
out gl_PerVertex { vec4 gl_Position; };
void main()
{
v_texcoord = texcoord;
gl_Position = ubuf.mvp * position;
}