Cycles: new Microfacet-based Hair BSDF with elliptical cross-section support #105600

Merged
Weizhen Huang merged 114 commits from weizhen/blender:microfacet_hair into main 2023-08-18 12:46:20 +02:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit c606b6515a - Show all commits

View File

@ -868,6 +868,10 @@ ccl_device void osl_closure_microfacet_hair_setup(KernelGlobals kg,
return;
}
if (closure->r_lobe <= 0.0f && closure->tt_lobe <= 0.0f && closure->trt_lobe <= 0.0f) {
return;
}
ccl_private MicrofacetHairBSDF *bsdf = (ccl_private MicrofacetHairBSDF *)bsdf_alloc(
sd, sizeof(MicrofacetHairBSDF), rgb_to_spectrum(weight));
if (!bsdf) {