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

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

#if defined(USE_COLOR_U32)
uniform uint color;
#else
uniform vec4 color;
#endif

out vec4 fragColor;

void main()
{
#if defined(USE_COLOR_U32)
  fragColor = vec4(((color)&uint(0xFF)) * (1.0f / 255.0f),
                   ((color >> 8) & uint(0xFF)) * (1.0f / 255.0f),
                   ((color >> 16) & uint(0xFF)) * (1.0f / 255.0f),
                   ((color >> 24)) * (1.0f / 255.0f));
#else
  fragColor = color;
#endif
  fragColor = blender_srgb_to_framebuffer_space(fragColor);
}