mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
10 lines
106 B
GLSL
10 lines
106 B
GLSL
#version 130
|
|
|
|
varying vec4 Color;
|
|
|
|
uniform int i;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[i] = Color;
|
|
}
|