mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-04 15:50:10 +01:00
44 lines
906 B
C++
44 lines
906 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>())
|
|
{
|
|
if (auto dlg = manager->get<rsx::overlays::message_dialog>())
|
|
{
|
|
if (dlg->progress_bar_count())
|
|
Emu.GetCallbacks().handle_taskbar_progress(0, 1);
|
|
}
|
|
|
|
manager->remove(uid);
|
|
}
|
|
|
|
if (on_close)
|
|
on_close(return_code);
|
|
}
|
|
|
|
void overlay::refresh()
|
|
{
|
|
if (auto rsxthr = rsx::get_current_renderer())
|
|
{
|
|
const auto now = get_system_time() - 1000000;
|
|
if ((now - rsxthr->last_flip_time) > min_refresh_duration_us)
|
|
{
|
|
rsxthr->async_flip_requested |= rsx::thread::flip_request::native_ui;
|
|
}
|
|
}
|
|
}
|
|
} // namespace overlays
|
|
} // namespace rsx
|