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

gpu_shader_selection_id_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a38113fad87fab3ceee8df96b5d949a4391ee784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#ifdef UNIFORM_ID
uniform uint id;
#else
flat in vec4 id;
#endif

out vec4 fragColor;

void main()
{
#ifdef UNIFORM_ID
	fragColor = vec4(
		((id       ) & 0xFFu) * (1.0f / 255.0f),
		((id >>  8u) & 0xFFu) * (1.0f / 255.0f),
		((id >> 16u) & 0xFFu) * (1.0f / 255.0f),
		((id >> 24u)        ) * (1.0f / 255.0f));
#else
	fragColor = id;
#endif
}