mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 12:30:32 +08:00
9 lines
114 B
GLSL
9 lines
114 B
GLSL
|
#version 440
|
||
|
|
||
|
layout(location = 0) out vec4 fragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
fragColor = vec4(1.0, 0.0, 0.0, 1.0);
|
||
|
}
|