mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-06 21:44:02 +01:00
32 lines
567 B
C++
32 lines
567 B
C++
#include "stdafx.h"
|
|
#include "overlays.h"
|
|
#include "../GSRender.h"
|
|
|
|
namespace rsx
|
|
{
|
|
namespace overlays
|
|
{
|
|
//Singleton instance declaration
|
|
fontmgr* fontmgr::m_instance = nullptr;
|
|
|
|
void user_interface::close()
|
|
{
|
|
//Force unload
|
|
exit = true;
|
|
if (auto manager = fxm::get<display_manager>())
|
|
manager->remove(uid);
|
|
|
|
if (on_close)
|
|
on_close(return_code);
|
|
}
|
|
|
|
void overlay::refresh()
|
|
{
|
|
if (auto rsxthr = rsx::get_current_renderer())
|
|
{
|
|
rsxthr->native_ui_flip_request.store(true);
|
|
}
|
|
}
|
|
} // namespace overlays
|
|
} // namespace rsx
|