mirror of
https://gitlab.com/yikestone/qt_pi.git
synced 2025-08-03 21:54:12 +05:30
9 lines
83 B
GLSL
9 lines
83 B
GLSL
#version 330
|
|
in vec4 vColor;
|
|
out vec4 fColor;
|
|
|
|
void main()
|
|
{
|
|
fColor = vColor;
|
|
}
|