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: 8208689d113fdf3be82c0074f30d3c1de61ee63f (plain)
1
2
3
4
5

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