rpcsx/rpcs3/Emu/RSX/overlays.cpp

32 lines
525 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 rsxthr = fxm::get<GSRender>())
rsxthr->shell_close_dialog();
if (on_close)
on_close(return_code);
}
void user_interface::refresh()
{
if (auto rsxthr = fxm::get<GSRender>())
{
rsxthr->native_ui_flip_request.store(true);
}
}
}
}