mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
14 lines
181 B
GLSL
14 lines
181 B
GLSL
#version 440
|
|
|
|
layout(location = 0) in vec4 position;
|
|
|
|
layout(std140, binding = 0) uniform buf {
|
|
mat4 mvp;
|
|
vec3 color;
|
|
};
|
|
|
|
void main()
|
|
{
|
|
gl_Position = mvp * position;
|
|
}
|