mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 23:41:26 +12:00
rsx: Add option to toggle MSAA
This commit is contained in:
parent
ea8409dcfd
commit
bca5f94b3f
11 changed files with 99 additions and 29 deletions
|
@ -171,6 +171,21 @@ void fmt_class_string<video_aspect>::format(std::string& out, u64 arg)
|
|||
});
|
||||
}
|
||||
|
||||
template <>
|
||||
void fmt_class_string<msaa_level>::format(std::string& out, u64 arg)
|
||||
{
|
||||
format_enum(out, arg, [](msaa_level value)
|
||||
{
|
||||
switch (value)
|
||||
{
|
||||
case msaa_level::none: return "Disabled";
|
||||
case msaa_level::_auto: return "Auto";
|
||||
}
|
||||
|
||||
return unknown;
|
||||
});
|
||||
}
|
||||
|
||||
template <>
|
||||
void fmt_class_string<keyboard_handler>::format(std::string& out, u64 arg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue