2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-01-21 16:40:53 -03:00
|
|
|
|
|
|
|
#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:
|
2022-06-13 15:41:36 -04:00
|
|
|
explicit EmuWindow_SDL2_VK(InputCommon::InputSubsystem* input_subsystem_, Core::System& system,
|
2021-07-30 10:43:58 -04:00
|
|
|
bool fullscreen);
|
2020-09-19 17:15:02 -03:00
|
|
|
~EmuWindow_SDL2_VK() override;
|
2020-01-21 16:40:53 -03:00
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
|
|
|
};
|