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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/gpu/shaders/gpu_shader_material.glsl')
-rw-r--r--source/blender/gpu/shaders/gpu_shader_material.glsl8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/gpu/shaders/gpu_shader_material.glsl b/source/blender/gpu/shaders/gpu_shader_material.glsl
index 7f37e741591..3b1ad41ad95 100644
--- a/source/blender/gpu/shaders/gpu_shader_material.glsl
+++ b/source/blender/gpu/shaders/gpu_shader_material.glsl
@@ -1797,14 +1797,12 @@ void node_wireframe_screenspace(float size, vec2 barycentric, out float fac)
void node_emission(vec4 color, float strength, vec3 vN, out Closure result)
{
-#ifndef VOLUMETRICS
- color *= strength;
result = CLOSURE_DEFAULT;
- result.radiance = color.rgb;
- result.opacity = color.a;
+#ifndef VOLUMETRICS
+ result.radiance = color.rgb * strength;
result.ssr_normal = normal_encode(vN, viewCameraVec);
#else
- result = Closure(vec3(0.0), vec3(0.0), color.rgb * strength, 0.0);
+ result.emission = color.rgb * strength;
#endif
}