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

armature_dof_solid_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: e511aab69c19a55a7b54e5277236d89d149cb35b (plain)
1
2
3
4
5
6
7
8
9
10
11

flat in vec4 finalColor;

layout(location = 0) out vec4 fragColor;
layout(location = 1) out vec4 lineOutput;

void main()
{
  fragColor = finalColor;
  lineOutput = vec4(0.0);
}