mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
Merge branch 'main' into metal
This commit is contained in:
commit
2f9ef596d2
18 changed files with 202 additions and 130 deletions
|
@ -210,7 +210,7 @@ ENABLE_ENUM_ITERATORS(CrashDump, CrashDump::Disabled, CrashDump::Enabled);
|
|||
#endif
|
||||
|
||||
template <>
|
||||
struct fmt::formatter<PrecompiledShaderOption> : formatter<string_view> {
|
||||
struct fmt::formatter<const PrecompiledShaderOption> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const PrecompiledShaderOption c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -225,7 +225,7 @@ struct fmt::formatter<PrecompiledShaderOption> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<AccurateShaderMulOption> : formatter<string_view> {
|
||||
struct fmt::formatter<const AccurateShaderMulOption> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const AccurateShaderMulOption c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -239,7 +239,7 @@ struct fmt::formatter<AccurateShaderMulOption> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<BufferCacheMode> : formatter<string_view> {
|
||||
struct fmt::formatter<const BufferCacheMode> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const BufferCacheMode c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -255,7 +255,7 @@ struct fmt::formatter<BufferCacheMode> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<PositionInvariance> : formatter<string_view> {
|
||||
struct fmt::formatter<const PositionInvariance> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const PositionInvariance c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -270,7 +270,7 @@ struct fmt::formatter<PositionInvariance> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<CPUMode> : formatter<string_view> {
|
||||
struct fmt::formatter<const CPUMode> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CPUMode c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -287,7 +287,7 @@ struct fmt::formatter<CPUMode> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<CPUModeLegacy> : formatter<string_view> {
|
||||
struct fmt::formatter<const CPUModeLegacy> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CPUModeLegacy c, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -304,7 +304,7 @@ struct fmt::formatter<CPUModeLegacy> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<CafeConsoleRegion> : formatter<string_view> {
|
||||
struct fmt::formatter<const CafeConsoleRegion> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CafeConsoleRegion v, FormatContext &ctx) const {
|
||||
string_view name;
|
||||
|
@ -325,7 +325,7 @@ struct fmt::formatter<CafeConsoleRegion> : formatter<string_view> {
|
|||
}
|
||||
};
|
||||
template <>
|
||||
struct fmt::formatter<CafeConsoleLanguage> : formatter<string_view> {
|
||||
struct fmt::formatter<const CafeConsoleLanguage> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CafeConsoleLanguage v, FormatContext &ctx) {
|
||||
string_view name;
|
||||
|
@ -351,7 +351,7 @@ struct fmt::formatter<CafeConsoleLanguage> : formatter<string_view> {
|
|||
|
||||
#if BOOST_OS_WINDOWS
|
||||
template <>
|
||||
struct fmt::formatter<CrashDump> : formatter<string_view> {
|
||||
struct fmt::formatter<const CrashDump> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CrashDump v, FormatContext &ctx) {
|
||||
string_view name;
|
||||
|
@ -368,7 +368,7 @@ struct fmt::formatter<CrashDump> : formatter<string_view> {
|
|||
};
|
||||
#elif BOOST_OS_UNIX
|
||||
template <>
|
||||
struct fmt::formatter<CrashDump> : formatter<string_view> {
|
||||
struct fmt::formatter<const CrashDump> : formatter<string_view> {
|
||||
template <typename FormatContext>
|
||||
auto format(const CrashDump v, FormatContext &ctx) {
|
||||
string_view name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue