Cycles: Minor cleanup, whitespace around keyword and preprocessor indent

This commit is contained in:
Sergey Sharybin
2016-04-13 08:58:52 +02:00
parent c1a27a76cf
commit 84c68dcb3f
7 changed files with 48 additions and 48 deletions

View File

@@ -50,9 +50,9 @@ ccl_device void svm_node_tex_voxel(KernelGlobals *kg,
#else
float4 r = make_float4(0.0f, 0.0f, 0.0f, 0.0f);
#endif
if (stack_valid(density_out_offset))
if(stack_valid(density_out_offset))
stack_store_float(stack, density_out_offset, r.w);
if (stack_valid(color_out_offset))
if(stack_valid(color_out_offset))
stack_store_float3(stack, color_out_offset, make_float3(r.x, r.y, r.z));
}