* @brief The Distribution class represents the approximation of the directional guiding distribution. * E.g., this distribution can represent the incident radiance field, its product with a BSDF or phase function, * or another target distribution. * */
| 16 | * |
| 17 | */ |
| 18 | struct Distribution |
| 19 | { |
| 20 | Distribution(PGLDistribution distributionHandle); |
| 21 | |
| 22 | private: |
| 23 | PGLDistribution m_distributionHandle{nullptr}; |
| 24 | }; |
| 25 | |
| 26 | //////////////////////////////////////////////////////////// |
| 27 | /// Implementation |
nothing calls this directly
no outgoing calls
no test coverage detected