mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-12-02 00:32:24 +08:00
9 lines
109 B
GLSL
9 lines
109 B
GLSL
#version 440
|
|
|
|
layout(location = 0) in vec3 position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(position, 1.0);
|
|
}
|