mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
9 lines
115 B
GLSL
9 lines
115 B
GLSL
#include <common>
|
|
|
|
layout(location = 0) out vec4 out_color;
|
|
|
|
void main()
|
|
{
|
|
out_color = vec4(param[0].rgb, 1.0);
|
|
}
|