Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit_mesh_analysis_frag.glsl « shaders « overlay « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d96c0e418fcbb67e28b4aec2190b41f4755e9d7 (plain)
1
2
3
4
5
6
7
8
out vec4 fragColor;

in vec4 weightColor;

void main()
{
  fragColor = weightColor;
}