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

facing_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: ca7b4eeaf475d3c71337e7c607275024bd7c16a9 (plain)
1
2
3
4
5
6
out vec4 fragColor;

void main()
{
  fragColor = gl_FrontFacing ? colorFaceFront : colorFaceBack;
}