mirror of
https://github.com/bevyengine/bevy
synced 2025-01-25 19:35:19 +00:00
8 lines
83 B
GLSL
8 lines
83 B
GLSL
#version 140
|
|
|
|
in vec4 Color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[1] = Color;
|
|
}
|