2020-01-21 16:40:53 -03: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 02:32:58 -03:00
|
|
|
#include <memory>
|
|
|
|
|
2020-01-21 16:40:53 -03:00
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
|
|
|
|
|
2020-04-02 02:32:58 -03:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-08-27 15:16:47 -04:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2020-01-21 16:40:53 -03:00
|
|
|
class EmuWindow_SDL2_VK final : public EmuWindow_SDL2 {
|
|
|
|
public:
|
2020-09-19 17:15:02 -03:00
|
|
|
explicit EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsystem);
|
|
|
|
~EmuWindow_SDL2_VK() override;
|
2020-01-21 16:40:53 -03:00
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
|
|
|
};
|
2020-04-22 07:47:21 +02:00
|
|
|
|
|
|
|
class DummyContext : public Core::Frontend::GraphicsContext {};
|