diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-05-07 17:41:30 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:07 -0400 |
commit | a4de202cbd5abdf46c48663874e34bdd028b6df5 (patch) | |
tree | 13dad1fd40a80e6799fbd9dfc44a093c634ef7f0 /src/common/settings.h | |
parent | cfb63c68dbdc2c8add45cddb2cedf371059af6c4 (diff) |
settings: Add anisotropy mode enum
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index a90fc87a7..1c26081c9 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -116,6 +116,14 @@ enum class AstcRecompression : u32 { Bc3 = 2, }; +enum class AspectRatio : u32 { + R16_9, + R4_3, + R21_9, + R16_10, + Stretch, +}; + enum class Category : u32 { Audio, Core, |