Qt: Fix selecting fullscreen mode breaking other backend borderless

This commit is contained in:
Connor McLaughlin
2020-11-02 19:52:01 +10:00
parent 863f84e3f6
commit d102b2facd
10 changed files with 43 additions and 4 deletions

View File

@ -156,6 +156,11 @@ void LibretroHostDisplay::ResizeRenderWindow(s32 new_window_width, s32 new_windo
m_window_info.surface_height = new_window_height;
}
bool LibretroHostDisplay::SupportsFullscreen() const
{
return false;
}
bool LibretroHostDisplay::IsFullscreen()
{
return false;

View File

@ -23,6 +23,7 @@ public:
bool ChangeRenderWindow(const WindowInfo& wi) override;
void ResizeRenderWindow(s32 new_window_width, s32 new_window_height) override;
bool SupportsFullscreen() const override;
bool IsFullscreen() override;
bool SetFullscreen(bool fullscreen, u32 width, u32 height, float refresh_rate) override;
void DestroyRenderSurface() override;