mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-20 22:03:12 +01:00
11 lines
106 B
GLSL
11 lines
106 B
GLSL
#version 130
|
|
|
|
varying vec4 Color;
|
|
|
|
uniform int i;
|
|
|
|
void main()
|
|
{
|
|
gl_FragData[i] = Color;
|
|
}
|