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

outline_prepass_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: f6e3724eb510282e19f2bb373d9bdb9015c9644f (plain)
1
2
3
4
5
6
7
8
9
10

flat in uint objectId;

/* using uint because 16bit uint can contain more ids than int. */
out uint outId;

void main()
{
  outId = objectId;
}