summaryrefslogtreecommitdiffstats
path: root/src/yuzu_tester
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-04-11 02:06:55 +0200
committerGitHub <noreply@github.com>2020-04-11 02:06:55 +0200
commit51c6688e214a9bdcf335fb0598dc7e5bc194f8f6 (patch)
tree37ef2214634c2423ca617e9e22a2c9d57693ed86 /src/yuzu_tester
parentMerge pull request #3607 from FearlessTobi/input-kms (diff)
parentyuzu: Drop SDL2 and Qt frontend Vulkan requirements (diff)
downloadyuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar.gz
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar.bz2
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar.lz
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar.xz
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.tar.zst
yuzu-51c6688e214a9bdcf335fb0598dc7e5bc194f8f6.zip
Diffstat (limited to 'src/yuzu_tester')
-rw-r--r--src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp4
-rw-r--r--src/yuzu_tester/emu_window/emu_window_sdl2_hide.h4
2 files changed, 0 insertions, 8 deletions
diff --git a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp
index a837430cc..8584f6671 100644
--- a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp
+++ b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp
@@ -116,10 +116,6 @@ bool EmuWindow_SDL2_Hide::IsShown() const {
return false;
}
-void EmuWindow_SDL2_Hide::RetrieveVulkanHandlers(void*, void*, void*) const {
- UNREACHABLE();
-}
-
class SDLGLContext : public Core::Frontend::GraphicsContext {
public:
explicit SDLGLContext() {
diff --git a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h
index 9f5d04fca..c13a82df2 100644
--- a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h
+++ b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h
@@ -19,10 +19,6 @@ public:
/// Whether the screen is being shown or not.
bool IsShown() const override;
- /// Retrieves Vulkan specific handlers from the window
- void RetrieveVulkanHandlers(void* get_instance_proc_addr, void* instance,
- void* surface) const override;
-
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
private: