#endif
D = D_GGX(NdotH, bsdfData.roughness);
}
specularLighting.rgb = F * Vis * D;
specularLighting.rgb = F * (Vis * D);
#ifdef DIFFUSE_LAMBERT_BRDF
float diffuseTerm = Lambert();
#else