summaryrefslogtreecommitdiffstats
path: root/src/citra/emu_window/emu_window_glfw.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-23 04:54:56 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-23 04:54:56 +0200
commit1de7e8cbe4ee9aab3bc920721a90ef63537771b8 (patch)
tree4aae70232dc6d148af003a4d9f1c4f76aff5467b /src/citra/emu_window/emu_window_glfw.cpp
parentMerge pull request #13 from archshift/master (diff)
parentMerge pull request #2 from archshift/issue-7-fix (diff)
downloadyuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar.gz
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar.bz2
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar.lz
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar.xz
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.tar.zst
yuzu-1de7e8cbe4ee9aab3bc920721a90ef63537771b8.zip
Diffstat (limited to 'src/citra/emu_window/emu_window_glfw.cpp')
-rw-r--r--src/citra/emu_window/emu_window_glfw.cpp9
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);