#ifndef OPENMW_COMPONENTS_SETTINGS_CATEGORIES_POSTPROCESSING_H #define OPENMW_COMPONENTS_SETTINGS_CATEGORIES_POSTPROCESSING_H #include #include #include #include #include #include #include #include namespace Settings { struct PostProcessingCategory : WithIndex { using WithIndex::WithIndex; SettingValue mEnabled{ mIndex, "Post Processing", "enabled" }; SettingValue> mChain{ mIndex, "Post Processing", "chain" }; SettingValue mAutoExposureSpeed{ mIndex, "Post Processing", "auto exposure speed", makeMaxStrictSanitizerFloat(0.0001f) }; SettingValue mTransparentPostpass{ mIndex, "Post Processing", "transparent postpass" }; }; } #endif