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