From 50bfaffc6b5ea250063825263a4099f9b384edfb Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 24 Apr 2017 11:21:35 +0200 Subject: Cycles: Cleanup, space after keyword --- intern/cycles/kernel/closure/bsdf_microfacet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern/cycles/kernel/closure') diff --git a/intern/cycles/kernel/closure/bsdf_microfacet.h b/intern/cycles/kernel/closure/bsdf_microfacet.h index 58f6140970d..3fe7572e4ce 100644 --- a/intern/cycles/kernel/closure/bsdf_microfacet.h +++ b/intern/cycles/kernel/closure/bsdf_microfacet.h @@ -258,7 +258,7 @@ ccl_device_forceinline float3 reflection_color(const MicrofacetBsdf *bsdf, float ccl_device_forceinline float D_GTR1(float NdotH, float alpha) { - if (alpha >= 1.0f) return M_1_PI_F; + if(alpha >= 1.0f) return M_1_PI_F; float alpha2 = alpha*alpha; float t = 1.0f + (alpha2 - 1.0f) * NdotH*NdotH; return (alpha2 - 1.0f) / (M_PI_F * logf(alpha2) * t); -- cgit v1.2.3