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: 2aabdb84f16f1191637efbdb369a052640da83fb (plain)
1
2
3
4
5
6
7
8
9
#ifndef USE_GPU_SHADER_CREATE_INFO
flat in uint finalId;
out uint fragId;
#endif

void main()
{
  fragId = finalId;
}