mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
15 lines
248 B
GLSL
15 lines
248 B
GLSL
#version 440
|
|
|
|
layout(location = 0) in vec4 position;
|
|
layout(location = 1) in vec2 texcoord;
|
|
|
|
layout(location = 0) out vec2 v_texcoord;
|
|
|
|
out gl_PerVertex { vec4 gl_Position; };
|
|
|
|
void main()
|
|
{
|
|
v_texcoord = texcoord;
|
|
gl_Position = position;
|
|
}
|