mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
13 lines
206 B
GLSL
13 lines
206 B
GLSL
|
#version 440
|
||
|
|
||
|
layout(location = 0) in vec3 position;
|
||
|
layout(location = 1) in vec3 color;
|
||
|
|
||
|
layout(location = 0) out vec3 v_color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(position, 1.0);
|
||
|
v_color = color;
|
||
|
}
|