Cleanup: Silence uninitialized variable warning

This commit is contained in:
Charlie Jolly 2020-03-27 11:12:11 +00:00
parent da91329291
commit 1bb7d42cf6
Notes: blender-bot 2023-02-14 05:01:20 +01:00
Referenced by issue #74754, Consistent crashing while rendering with RTX Titan
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ ccl_device void svm_node_vector_math(KernelGlobals *kg,
float3 a = stack_load_float3(stack, a_stack_offset);
float3 b = stack_load_float3(stack, b_stack_offset);
float3 c;
float3 c = make_float3(0.0f);
float scale = stack_load_float(stack, scale_stack_offset);
float value;