|
|
|
@ -235,6 +235,10 @@ void UWPHostInterface::RequestExit()
|
|
|
|
|
[this]() { winrt::Windows::ApplicationModel::Core::CoreApplication::Exit(); });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UWPHostInterface::SetMouseMode(bool relative, bool hide_cursor)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UWPHostInterface::Run()
|
|
|
|
|
{
|
|
|
|
|
if (!Initialize())
|
|
|
|
@ -383,6 +387,14 @@ void UWPHostInterface::RunLater(std::function<void()> callback)
|
|
|
|
|
m_queued_callbacks.push_back(std::move(callback));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UWPHostInterface::OnDisplayInvalidated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UWPHostInterface::OnSystemPerformanceCountersUpdated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool UWPHostInterface::IsFullscreen() const
|
|
|
|
|
{
|
|
|
|
|
return m_appview.IsFullScreenMode();
|
|
|
|
|