mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 12:30:32 +08:00
19 lines
316 B
GLSL
19 lines
316 B
GLSL
|
#version 440
|
||
|
|
||
|
layout(location = 0) in vec4 position;
|
||
|
layout(location = 1) in vec2 texcoord;
|
||
|
|
||
|
layout(location = 0) out vec2 uv;
|
||
|
|
||
|
layout(std140, binding = 0) uniform buf {
|
||
|
mat4 matrix;
|
||
|
} vubuf;
|
||
|
|
||
|
out gl_PerVertex { vec4 gl_Position; };
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
uv = texcoord;
|
||
|
gl_Position = vubuf.matrix * position;
|
||
|
}
|