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

uniform vec4 color;

out vec4 fragColor;

void main()
{
	fragColor = color;
}