mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 20:38:57 +02:00
[vk, ogl/IR, dynarmic/IR] friendlier IR identity pointer chasing, inline AA passes (#3250)
Only merge once we find out wth is causing the crashes [we know it's fsr]
This reverts commit 82f9d489e7.
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3250
Reviewed-by: DraVee <dravee@eden-emu.dev>
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
parent
8663913510
commit
cb26ea154c
11 changed files with 146 additions and 154 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||||
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
||||
|
|
@ -12,7 +12,7 @@
|
|||
#include "common/common_types.h"
|
||||
#include "common/expected.h"
|
||||
|
||||
// All the constants in this file come from <http://switchbrew.org/index.php?title=Error_codes>
|
||||
// All the constants in this file come from <https://switchbrew.org/wiki/Error_codes>
|
||||
|
||||
/**
|
||||
* Identifies the module which caused the error. Error codes can be propagated through a call
|
||||
|
|
@ -43,7 +43,7 @@ enum class ErrorModule : u32 {
|
|||
NCMContent = 20,
|
||||
SM = 21,
|
||||
RO = 22,
|
||||
GC = 23,
|
||||
Gc = 23,
|
||||
SDMMC = 24,
|
||||
OVLN = 25,
|
||||
SPL = 26,
|
||||
|
|
@ -72,7 +72,7 @@ enum class ErrorModule : u32 {
|
|||
Bluetooth = 113,
|
||||
VI = 114,
|
||||
NFP = 115,
|
||||
Time = 116,
|
||||
TimeService = 116,
|
||||
FGM = 117,
|
||||
OE = 118,
|
||||
BH1730FVC = 119,
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
|
|
@ -7,18 +10,18 @@
|
|||
|
||||
namespace Service::PSC::Time {
|
||||
|
||||
constexpr Result ResultPermissionDenied{ErrorModule::Time, 1};
|
||||
constexpr Result ResultClockMismatch{ErrorModule::Time, 102};
|
||||
constexpr Result ResultClockUninitialized{ErrorModule::Time, 103};
|
||||
constexpr Result ResultTimeNotFound{ErrorModule::Time, 200};
|
||||
constexpr Result ResultOverflow{ErrorModule::Time, 201};
|
||||
constexpr Result ResultFailed{ErrorModule::Time, 801};
|
||||
constexpr Result ResultInvalidArgument{ErrorModule::Time, 901};
|
||||
constexpr Result ResultTimeZoneOutOfRange{ErrorModule::Time, 902};
|
||||
constexpr Result ResultTimeZoneParseFailed{ErrorModule::Time, 903};
|
||||
constexpr Result ResultRtcTimeout{ErrorModule::Time, 988};
|
||||
constexpr Result ResultTimeZoneNotFound{ErrorModule::Time, 989};
|
||||
constexpr Result ResultNotImplemented{ErrorModule::Time, 990};
|
||||
constexpr Result ResultAlarmNotRegistered{ErrorModule::Time, 1502};
|
||||
constexpr Result ResultPermissionDenied{ErrorModule::TimeService, 1};
|
||||
constexpr Result ResultClockMismatch{ErrorModule::TimeService, 102};
|
||||
constexpr Result ResultClockUninitialized{ErrorModule::TimeService, 103};
|
||||
constexpr Result ResultTimeNotFound{ErrorModule::TimeService, 200};
|
||||
constexpr Result ResultOverflow{ErrorModule::TimeService, 201};
|
||||
constexpr Result ResultFailed{ErrorModule::TimeService, 801};
|
||||
constexpr Result ResultInvalidArgument{ErrorModule::TimeService, 901};
|
||||
constexpr Result ResultTimeZoneOutOfRange{ErrorModule::TimeService, 902};
|
||||
constexpr Result ResultTimeZoneParseFailed{ErrorModule::TimeService, 903};
|
||||
constexpr Result ResultRtcTimeout{ErrorModule::TimeService, 988};
|
||||
constexpr Result ResultTimeZoneNotFound{ErrorModule::TimeService, 989};
|
||||
constexpr Result ResultNotImplemented{ErrorModule::TimeService, 990};
|
||||
constexpr Result ResultAlarmNotRegistered{ErrorModule::TimeService, 1502};
|
||||
|
||||
} // namespace Service::PSC::Time
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue