| 1 | #pragma once |
| 2 | |
| 3 | struct Settings |
| 4 | { |
| 5 | float sharpening = 0.6f; |
| 6 | bool sharpeningEnabled = true; |
| 7 | float chromaticAberration = 0.5f; |
| 8 | bool chromaticAberrationEnabled = true; |
| 9 | }; |
| 10 | |
| 11 | void setSettingsFilePath(const char*); |
| 12 | bool loadSettings(Settings*); |
nothing calls this directly
no outgoing calls
no test coverage detected