2022-04-23 01:59:50 -07:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-01-21 11:40:53 -08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-04-01 22:32:58 -07:00
|
|
|
#include <memory>
|
|
|
|
|
2020-01-21 11:40:53 -08:00
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
|
|
|
|
|
2020-04-01 22:32:58 -07:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-08-27 12:16:47 -07:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2020-01-21 11:40:53 -08:00
|
|
|
class EmuWindow_SDL2_VK final : public EmuWindow_SDL2 {
|
|
|
|
public:
|
2022-06-13 12:41:36 -07:00
|
|
|
explicit EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsystem_, Core::System& system,
|
2021-07-30 07:43:58 -07:00
|
|
|
bool fullscreen);
|
2020-09-19 13:15:02 -07:00
|
|
|
~EmuWindow_SDL2_VK() override;
|
2020-01-21 11:40:53 -08:00
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
|
|
|
};
|