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

gpu_shader_flat_id_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e1287c483a0a9ca5326107393d5cd03ff07ea26 (plain)
1
2
3
4
5
6
7
8

flat in uint finalId;
out uint fragId;

void main()
{
  fragId = finalId;
}