2020-01-21 19:40:53 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-04-02 05:32:58 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
|
|
|
|
|
2020-04-02 05:32:58 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
class EmuWindow_SDL2_VK final : public EmuWindow_SDL2 {
|
|
|
|
public:
|
2020-08-27 19:16:47 +00:00
|
|
|
explicit EmuWindow_SDL2_VK(Core::System& system, bool fullscreen,
|
|
|
|
InputCommon::InputSubsystem* input_subsystem);
|
2020-01-21 19:40:53 +00:00
|
|
|
~EmuWindow_SDL2_VK();
|
|
|
|
|
2020-02-17 20:35:14 +00:00
|
|
|
void Present() override;
|
2020-01-21 19:40:53 +00:00
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
|
|
|
};
|
2020-04-22 05:47:21 +00:00
|
|
|
|
|
|
|
class DummyContext : public Core::Frontend::GraphicsContext {};
|