rsx/overlays: Remove some unused thread declarations

This commit is contained in:
kd-11 2023-02-14 02:29:47 +03:00 committed by kd-11
parent 7db6594358
commit aabd388070
4 changed files with 0 additions and 20 deletions

View File

@ -150,11 +150,6 @@ namespace rsx
return result;
}
struct home_menu_dialog_thread
{
static constexpr auto thread_name = "Home Menu Thread"sv;
};
error_code home_menu_dialog::show(std::function<void(s32 status)> on_close)
{
visible = false;

View File

@ -196,11 +196,6 @@ namespace rsx
user_interface::close(use_callback, stop_pad_interception);
}
struct msg_dialog_thread
{
static constexpr auto thread_name = "MsgDialog Thread"sv;
};
void message_dialog::update()
{
if (fade_animation.active)

View File

@ -1321,11 +1321,6 @@ namespace rsx
return m_cached_resource;
}
struct osk_dialog_thread
{
static constexpr auto thread_name = "OSK Thread"sv;
};
void osk_dialog::Create(const osk_params& params)
{
state = OskDialogState::Open;

View File

@ -176,11 +176,6 @@ namespace rsx
return result;
}
struct user_list_dialog_thread
{
static constexpr auto thread_name = "UserList Thread"sv;
};
error_code user_list_dialog::show(const std::string& title, u32 focused, const std::vector<u32>& user_ids, bool enable_overlay, std::function<void(s32 status)> on_close)
{
visible = false;