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

cryptomatte_frag.glsl « shaders « eevee « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9426b8e4a7b81cd6bc6aacdc416dff4dbdd805ba (plain)
1
2
3
4
5
6
7
uniform vec4 cryptohash;
out vec4 fragColor;

void main()
{
  fragColor = cryptohash;
}