diff options
author | bunnei <bunneidev@gmail.com> | 2014-05-20 03:46:57 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-05-20 03:46:57 +0200 |
commit | 204c6bfeca2d3bccfe6602699c0b3420f88aaf07 (patch) | |
tree | 4ece05e69f90f50e3390eb93a0790180aafcdbc6 /src/citra/emu_window | |
parent | updated Travis-CI image/link in readme for new project repo (diff) | |
parent | common_types: Changed BasicRect back to Rect, in the common namespace (diff) | |
download | yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.gz yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.bz2 yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.lz yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.xz yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.tar.zst yuzu-204c6bfeca2d3bccfe6602699c0b3420f88aaf07.zip |
Diffstat (limited to 'src/citra/emu_window')
-rw-r--r-- | src/citra/emu_window/emu_window_glfw.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/citra/emu_window/emu_window_glfw.cpp b/src/citra/emu_window/emu_window_glfw.cpp index e6943f146..73c116373 100644 --- a/src/citra/emu_window/emu_window_glfw.cpp +++ b/src/citra/emu_window/emu_window_glfw.cpp @@ -27,11 +27,18 @@ EmuWindow_GLFW::EmuWindow_GLFW() { exit(1); } glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1); + glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2); + glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE); + glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE); m_render_window = glfwCreateWindow(VideoCore::kScreenTopWidth, (VideoCore::kScreenTopHeight + VideoCore::kScreenBottomHeight), m_window_title.c_str(), NULL, NULL); + if (m_render_window == NULL) { + printf("Failed to create GLFW window! Exiting..."); + exit(1); + } + // Setup callbacks glfwSetWindowUserPointer(m_render_window, this); //glfwSetKeyCallback(m_render_window, OnKeyEvent); |