mirror of
https://github.com/4sval/FModel.git
synced 2026-04-22 17:47:51 -05:00
11 lines
116 B
GLSL
11 lines
116 B
GLSL
#version 460 core
|
|
|
|
in vec3 fPos;
|
|
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0, 1.0, 1.0, 1.0);
|
|
}
|