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

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

uniform mat4 ModelViewProjectionMatrix;

in vec3 pos;

#ifndef UNIFORM_ID
uniform uint offset;
in uint color;

flat out vec4 id;
#endif

void main()
{
#ifndef UNIFORM_ID
	id = vec4(
		(((color + offset)      ) & uint(0xFF)) * (1.0f / 255.0f),
		(((color + offset) >>  8) & uint(0xFF)) * (1.0f / 255.0f),
		(((color + offset) >> 16) & uint(0xFF)) * (1.0f / 255.0f),
		(((color + offset) >> 24)             ) * (1.0f / 255.0f));
#endif

	gl_Position = ModelViewProjectionMatrix * vec4(pos, 1.0);
}