#ifndef OPENMW_COMPONENTS_SETTINGS_CATEGORIES_STEREO_H #define OPENMW_COMPONENTS_SETTINGS_CATEGORIES_STEREO_H #include #include #include #include #include #include #include namespace Settings { struct StereoCategory : WithIndex { using WithIndex::WithIndex; SettingValue mStereoEnabled{ mIndex, "Stereo", "stereo enabled" }; SettingValue mMultiview{ mIndex, "Stereo", "multiview" }; SettingValue mSharedShadowMaps{ mIndex, "Stereo", "shared shadow maps" }; SettingValue mAllowDisplayListsForMultiview{ mIndex, "Stereo", "allow display lists for multiview" }; SettingValue mUseCustomView{ mIndex, "Stereo", "use custom view" }; SettingValue mUseCustomEyeResolution{ mIndex, "Stereo", "use custom eye resolution" }; }; } #endif