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

workbench_background_lib.glsl « shaders « workbench « engines « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fda2fc85460a598361630fd5ef6af173767d1a6e (plain)
1
2
3
vec3 background_color(WorldData world_data, float y) {
	return mix(world_data.background_color_low, world_data.background_color_high, y).xyz + bayer_dither_noise();
}