This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/modes/shaders/paint_wire_frag.glsl
Clément Foucault 6a1315d6e7 Weight Paint Overlay: Refactor wire drawing
This reduce the number of batch/data needed. Stores a select/visiblee
flag inside the vert/loop normals.
2018-12-18 02:19:52 +01:00

9 lines
88 B
GLSL

flat in vec4 finalColor;
out vec4 fragColor;
void main()
{
fragColor = finalColor;
}