mirror of
https://github.com/Lime3DS/Lime3DS
synced 2025-01-09 13:43:27 +00:00
34 lines
944 B
C++
34 lines
944 B
C++
// Copyright 2017 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <vector>
|
|
#include "core/core.h"
|
|
#include "core/hle/kernel/event.h"
|
|
#include "core/hle/kernel/shared_memory.h"
|
|
#include "core/hle/service/gsp/gsp.h"
|
|
|
|
namespace Service::GSP {
|
|
|
|
static std::weak_ptr<GSP_GPU> gsp_gpu;
|
|
|
|
void SignalInterrupt(InterruptId interrupt_id) {
|
|
auto gpu = gsp_gpu.lock();
|
|
ASSERT(gpu != nullptr);
|
|
return gpu->SignalInterrupt(interrupt_id);
|
|
}
|
|
|
|
void InstallInterfaces(Core::System& system) {
|
|
auto& service_manager = system.ServiceManager();
|
|
auto gpu = std::make_shared<GSP_GPU>(system);
|
|
gpu->InstallAsService(service_manager);
|
|
gsp_gpu = gpu;
|
|
|
|
std::make_shared<GSP_LCD>()->InstallAsService(service_manager);
|
|
}
|
|
|
|
void SetGlobalModule(Core::System& system) {
|
|
gsp_gpu = system.ServiceManager().GetService<GSP_GPU>("gsp::Gpu");
|
|
}
|
|
|
|
} // namespace Service::GSP
|