mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
13 lines
127 B
GLSL
13 lines
127 B
GLSL
#version 150
|
|
|
|
in vec4 BaseColor;
|
|
|
|
vec4 foo()
|
|
{
|
|
return BaseColor;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = foo();
|
|
}
|