#ifndef OPENMW_COMPONENTS_SETTINGS_CATEGORIES_POSTPROCESSING_H #define OPENMW_COMPONENTS_SETTINGS_CATEGORIES_POSTPROCESSING_H #include "components/settings/sanitizerimpl.hpp" #include "components/settings/settingvalue.hpp" #include #include #include #include #include #include namespace Settings { struct PostProcessingCategory { SettingValue mEnabled{ "Post Processing", "enabled" }; SettingValue mChain{ "Post Processing", "chain" }; SettingValue mAutoExposureSpeed{ "Post Processing", "auto exposure speed", makeMaxStrictSanitizerFloat(0.0001f) }; SettingValue mTransparentPostpass{ "Post Processing", "transparent postpass" }; }; } #endif