2019-05-25 20:47:13 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <string>
|
2021-04-18 04:40:31 +00:00
|
|
|
|
2019-05-25 20:47:13 +00:00
|
|
|
#define SDL_MAIN_HANDLED
|
2021-04-18 04:40:31 +00:00
|
|
|
// Ignore -Wimplicit-fallthrough due to https://github.com/libsdl-org/SDL/issues/4307
|
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wimplicit-fallthrough"
|
|
|
|
#endif
|
2019-05-25 20:47:13 +00:00
|
|
|
#include <SDL.h>
|
2021-04-18 04:40:31 +00:00
|
|
|
#ifdef __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
2019-05-25 20:47:13 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <glad/glad.h>
|
2020-01-21 19:40:53 +00:00
|
|
|
#include "common/assert.h"
|
2019-05-25 20:47:13 +00:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/scm_rev.h"
|
2021-04-14 23:07:40 +00:00
|
|
|
#include "common/settings.h"
|
2019-05-25 20:47:13 +00:00
|
|
|
#include "common/string_util.h"
|
2020-02-17 20:35:14 +00:00
|
|
|
#include "core/core.h"
|
2019-05-25 20:47:13 +00:00
|
|
|
#include "input_common/keyboard.h"
|
|
|
|
#include "input_common/main.h"
|
2020-02-17 20:35:14 +00:00
|
|
|
#include "video_core/renderer_base.h"
|
2019-05-25 20:47:13 +00:00
|
|
|
#include "yuzu_cmd/emu_window/emu_window_sdl2_gl.h"
|
|
|
|
|
|
|
|
class SDLGLContext : public Core::Frontend::GraphicsContext {
|
|
|
|
public:
|
2021-06-04 09:39:04 +00:00
|
|
|
explicit SDLGLContext(SDL_Window* window) : window(window) {
|
2019-05-25 20:47:13 +00:00
|
|
|
context = SDL_GL_CreateContext(window);
|
|
|
|
}
|
|
|
|
|
|
|
|
~SDLGLContext() {
|
2020-02-17 20:35:14 +00:00
|
|
|
DoneCurrent();
|
2019-05-25 20:47:13 +00:00
|
|
|
SDL_GL_DeleteContext(context);
|
2021-06-04 09:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwapBuffers() override {
|
|
|
|
SDL_GL_SwapWindow(window);
|
2019-05-25 20:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MakeCurrent() override {
|
2020-03-30 20:52:46 +00:00
|
|
|
if (is_current) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
is_current = SDL_GL_MakeCurrent(window, context) == 0;
|
2019-05-25 20:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DoneCurrent() override {
|
2020-03-30 20:52:46 +00:00
|
|
|
if (!is_current) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-25 20:47:13 +00:00
|
|
|
SDL_GL_MakeCurrent(window, nullptr);
|
2020-03-30 20:52:46 +00:00
|
|
|
is_current = false;
|
2019-05-25 20:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SDL_Window* window;
|
|
|
|
SDL_GLContext context;
|
2020-03-30 20:52:46 +00:00
|
|
|
bool is_current = false;
|
2019-05-25 20:47:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool EmuWindow_SDL2_GL::SupportsRequiredGLExtensions() {
|
2019-10-30 03:32:05 +00:00
|
|
|
std::vector<std::string_view> unsupported_ext;
|
2019-05-25 20:47:13 +00:00
|
|
|
|
|
|
|
// Extensions required to support some texture formats.
|
2021-02-07 21:32:21 +00:00
|
|
|
if (!GLAD_GL_EXT_texture_compression_s3tc) {
|
2019-05-25 20:47:13 +00:00
|
|
|
unsupported_ext.push_back("EXT_texture_compression_s3tc");
|
2021-02-07 21:32:21 +00:00
|
|
|
}
|
|
|
|
if (!GLAD_GL_ARB_texture_compression_rgtc) {
|
2019-05-25 20:47:13 +00:00
|
|
|
unsupported_ext.push_back("ARB_texture_compression_rgtc");
|
2021-02-07 21:32:21 +00:00
|
|
|
}
|
2019-05-25 20:47:13 +00:00
|
|
|
|
2021-02-07 21:32:21 +00:00
|
|
|
for (const auto& extension : unsupported_ext) {
|
2019-10-30 03:32:05 +00:00
|
|
|
LOG_CRITICAL(Frontend, "Unsupported GL extension: {}", extension);
|
2021-02-07 21:32:21 +00:00
|
|
|
}
|
2019-05-25 20:47:13 +00:00
|
|
|
|
|
|
|
return unsupported_ext.empty();
|
|
|
|
}
|
|
|
|
|
2020-09-19 20:15:02 +00:00
|
|
|
EmuWindow_SDL2_GL::EmuWindow_SDL2_GL(InputCommon::InputSubsystem* input_subsystem, bool fullscreen)
|
|
|
|
: EmuWindow_SDL2{input_subsystem} {
|
2019-05-25 20:47:13 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4);
|
2021-02-07 21:32:21 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 6);
|
2019-05-21 22:11:06 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_COMPATIBILITY);
|
2019-05-25 20:47:13 +00:00
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0);
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_SHARE_WITH_CURRENT_CONTEXT, 1);
|
2020-05-18 01:24:44 +00:00
|
|
|
if (Settings::values.renderer_debug) {
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG);
|
|
|
|
}
|
2020-02-17 20:35:14 +00:00
|
|
|
SDL_GL_SetSwapInterval(0);
|
2019-05-25 20:47:13 +00:00
|
|
|
|
|
|
|
std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_fullname,
|
|
|
|
Common::g_scm_branch, Common::g_scm_desc);
|
|
|
|
render_window =
|
|
|
|
SDL_CreateWindow(window_title.c_str(),
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, // x position
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, // y position
|
|
|
|
Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height,
|
|
|
|
SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE | SDL_WINDOW_ALLOW_HIGHDPI);
|
|
|
|
|
|
|
|
if (render_window == nullptr) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to create SDL2 window! {}", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2021-02-14 08:20:41 +00:00
|
|
|
SetWindowIcon();
|
|
|
|
|
2019-05-25 20:47:13 +00:00
|
|
|
if (fullscreen) {
|
|
|
|
Fullscreen();
|
|
|
|
}
|
|
|
|
|
2020-02-17 20:35:14 +00:00
|
|
|
window_context = SDL_GL_CreateContext(render_window);
|
|
|
|
core_context = CreateSharedContext();
|
|
|
|
|
|
|
|
if (window_context == nullptr) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to create SDL2 GL context: {}", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (core_context == nullptr) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to create shared SDL2 GL context: {}", SDL_GetError());
|
2019-05-25 20:47:13 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!gladLoadGLLoader(static_cast<GLADloadproc>(SDL_GL_GetProcAddress))) {
|
|
|
|
LOG_CRITICAL(Frontend, "Failed to initialize GL functions! {}", SDL_GetError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SupportsRequiredGLExtensions()) {
|
|
|
|
LOG_CRITICAL(Frontend, "GPU does not support all required OpenGL extensions! Exiting...");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
OnResize();
|
|
|
|
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
|
|
|
|
SDL_PumpEvents();
|
|
|
|
LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch,
|
|
|
|
Common::g_scm_desc);
|
|
|
|
Settings::LogSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
EmuWindow_SDL2_GL::~EmuWindow_SDL2_GL() {
|
2020-02-17 20:35:14 +00:00
|
|
|
core_context.reset();
|
|
|
|
SDL_GL_DeleteContext(window_context);
|
2019-05-25 20:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> EmuWindow_SDL2_GL::CreateSharedContext() const {
|
2021-06-04 09:39:04 +00:00
|
|
|
return std::make_unique<SDLGLContext>(render_window);
|
2019-05-25 20:47:13 +00:00
|
|
|
}
|