2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-05-25 20:47:13 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "yuzu_cmd/emu_window/emu_window_sdl2.h"
|
|
|
|
|
2021-07-30 14:43:58 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2019-05-25 20:47:13 +00:00
|
|
|
class EmuWindow_SDL2_GL final : public EmuWindow_SDL2 {
|
|
|
|
public:
|
2022-06-13 19:41:36 +00:00
|
|
|
explicit EmuWindow_SDL2_GL(InputCommon::InputSubsystem* input_subsystem_, Core::System& system_,
|
2021-07-30 14:43:58 +00:00
|
|
|
bool fullscreen);
|
2019-05-25 20:47:13 +00:00
|
|
|
~EmuWindow_SDL2_GL();
|
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Whether the GPU and driver supports the OpenGL extension required
|
|
|
|
bool SupportsRequiredGLExtensions();
|
|
|
|
|
|
|
|
using SDL_GLContext = void*;
|
2020-02-17 20:35:14 +00:00
|
|
|
|
2019-05-25 20:47:13 +00:00
|
|
|
/// The OpenGL context associated with the window
|
2020-02-17 20:35:14 +00:00
|
|
|
SDL_GLContext window_context;
|
|
|
|
|
|
|
|
/// The OpenGL context associated with the core
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> core_context;
|
2019-05-25 20:47:13 +00:00
|
|
|
};
|