Merge pull request #10992 from Pokechu22/swapchain-unused-functions

VideoCommon: Remove unused swap chain functions
This commit is contained in:
Mai 2022-08-18 10:32:51 -04:00 committed by GitHub
commit 7a23b45aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -29,9 +29,6 @@ public:
AbstractTextureFormat GetFormat() const { return m_texture_format; }
u32 GetWidth() const { return m_width; }
u32 GetHeight() const { return m_height; }
u32 GetLayers() const { return m_stereo ? 2u : 1u; }
bool IsStereoEnabled() const { return m_stereo; }
bool HasExclusiveFullscreen() const { return m_has_fullscreen; }
// Mode switches.
bool GetFullscreen() const;

View File

@ -34,8 +34,6 @@ public:
VkSurfaceKHR GetSurface() const { return m_surface; }
VkSurfaceFormatKHR GetSurfaceFormat() const { return m_surface_format; }
AbstractTextureFormat GetTextureFormat() const { return m_texture_format; }
bool IsVSyncEnabled() const { return m_vsync_enabled; }
bool IsStereoEnabled() const { return m_layers == 2; }
VkSwapchainKHR GetSwapChain() const { return m_swap_chain; }
u32 GetWidth() const { return m_width; }
u32 GetHeight() const { return m_height; }