mirror of
https://github.com/guilhermewerner/opengl
synced 2025-06-16 05:14:19 +00:00
9 lines
112 B
GLSL
9 lines
112 B
GLSL
#version 330 core
|
|
|
|
layout(location = 0) out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(0.0, 1.0, 0.0, 1.0);
|
|
};
|