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

default_world_frag.glsl « shaders « eevee « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90af87756f0328d454a62f04f2ab3d5479885c8b (plain)
1
2
3
4
5
6
7
8
9

uniform float backgroundAlpha;
uniform vec3 color;

out vec4 FragColor;

void main() {
	FragColor = vec4(color, backgroundAlpha);
}