early-access version 3855

This commit is contained in:
pineappleEA
2023-09-03 21:57:51 +02:00
parent 5c36d519c9
commit 8e47680fdf
178 changed files with 1448 additions and 664 deletions

View File

@@ -377,8 +377,8 @@ struct System::Impl {
}
// Workarounds:
// Activate this in Super Smash Brothers, it only affects AMD cards using AMDVLK
Settings::values.graphics_AMD_workaround = program_id == 0x1006A800016E000ULL;
// Activate this in Super Smash Brothers Ultimate, it only affects AMD cards using AMDVLK
Settings::values.renderer_amdvlk_depth_bias_workaround = program_id == 0x1006A800016E000ULL;
status = SystemResultStatus::Success;
return status;
@@ -440,7 +440,7 @@ struct System::Impl {
}
// Workarounds
Settings::values.graphics_AMD_workaround = false;
Settings::values.renderer_amdvlk_depth_bias_workaround = false;
LOG_DEBUG(Core, "Shutdown OK");
}

View File

@@ -220,7 +220,7 @@ AudInU::AudInU(Core::System& system_)
AudInU::~AudInU() = default;
void AudInU::ListAudioIns(HLERequestContext& ctx) {
using namespace AudioCore::AudioRenderer;
using namespace AudioCore::Renderer;
LOG_DEBUG(Service_Audio, "called");
@@ -240,7 +240,7 @@ void AudInU::ListAudioIns(HLERequestContext& ctx) {
}
void AudInU::ListAudioInsAutoFiltered(HLERequestContext& ctx) {
using namespace AudioCore::AudioRenderer;
using namespace AudioCore::Renderer;
LOG_DEBUG(Service_Audio, "called");

View File

@@ -228,7 +228,7 @@ AudOutU::AudOutU(Core::System& system_)
AudOutU::~AudOutU() = default;
void AudOutU::ListAudioOuts(HLERequestContext& ctx) {
using namespace AudioCore::AudioRenderer;
using namespace AudioCore::Renderer;
std::scoped_lock l{impl->mutex};

View File

@@ -26,7 +26,7 @@
#include "core/hle/service/ipc_helpers.h"
#include "core/memory.h"
using namespace AudioCore::AudioRenderer;
using namespace AudioCore::Renderer;
namespace Service::Audio {

View File

@@ -28,7 +28,7 @@ private:
void GetAudioDeviceServiceWithRevisionInfo(HLERequestContext& ctx);
KernelHelpers::ServiceContext service_context;
std::unique_ptr<AudioCore::AudioRenderer::Manager> impl;
std::unique_ptr<AudioCore::Renderer::Manager> impl;
u32 num_audio_devices{0};
};