Reading the documentation at the
Fresh Desk for one of the more difficult concepts in Corona to wrap one's head around,
What is GI vs. AA balance?, I noticed contradictory information. Namely, at the top we have the statement that:
If "Light samples multiplier" is set to 2 and "GI vs. AA balance" is set to 16, this means that
16 GI samples and
32 direct light samples will be used for each pixel per pass. This implies that:
32 = 16 ⋅ 2 # Or more generally:
Direct_Light_Samples = GI_VS_AA_Balance ⋅ LSMThen further down the page, we have:
Example 3
GI vs. AA = 64
LSM = 0,25
64 samples are used for GI and
16x0,25=4 samples are used for direct light. There is visibly more noise in direct light pass than in GI pass. This implies that:
4 = 16 ⋅ 0,25 # Or more generally:
Direct_Light_Samples = 16 ⋅ LSM # i.e., the GI vs. AA balance setting of 64 has no affect on the pre-adjusted "# of direct light samples" starting setting, which is fixed at 16 and cannot be changed by the userOnly one of the above can be correct. Which one (and please update the freshdesk to reflect the correct answer)?