| 88 | } |
| 89 | |
| 90 | void FinalResult(Float4 bakeOutput[BasisCount]) |
| 91 | { |
| 92 | float3 finalResult = ResultSum * CosineWeightedMonteCarloFactor(NumSamples); |
| 93 | bakeOutput[0] = Float4(Float3::Clamp(finalResult, 0.0f, FP16Max), 1.0f); |
| 94 | } |
| 95 | |
| 96 | void ProgressiveResult(Float4 bakeOutput[BasisCount], uint64 passIdx) |
| 97 | { |
nothing calls this directly
no test coverage detected