mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-29 00:32:49 +00:00
db7d0adfe8
Using docs/source/reference/modding/settings/*.rst and files/settings-default.cfg files content.
28 lines
804 B
C++
28 lines
804 B
C++
#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 <osg/Math>
|
|
#include <osg/Vec2f>
|
|
#include <osg/Vec3f>
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace Settings
|
|
{
|
|
struct PostProcessingCategory
|
|
{
|
|
SettingValue<bool> mEnabled{ "Post Processing", "enabled" };
|
|
SettingValue<std::string> mChain{ "Post Processing", "chain" };
|
|
SettingValue<float> mAutoExposureSpeed{ "Post Processing", "auto exposure speed",
|
|
makeMaxStrictSanitizerFloat(0.0001f) };
|
|
SettingValue<bool> mTransparentPostpass{ "Post Processing", "transparent postpass" };
|
|
};
|
|
}
|
|
|
|
#endif
|