| 44 | { |
| 45 | public: |
| 46 | struct Desc |
| 47 | { |
| 48 | std::string name; ///< Name of the BRDF. |
| 49 | std::filesystem::path path; ///< Full path to the loaded BRDF. |
| 50 | DiffuseSpecularData extraData = {}; ///< Parameters for a best fit BRDF approximation. |
| 51 | }; |
| 52 | |
| 53 | static constexpr ResourceFormat kAlbedoLUTFormat = ResourceFormat::RGBA32Float; |
| 54 |
no outgoing calls
no test coverage detected