summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-30 09:29:03 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-30 13:45:57 +0200
commit68eb19749456ba653c8286080f5be99ffc1ce5e7 (patch)
treefa73927175f3f970a67975ff0519464495d96fca /src
parentReplace the previous OpenGL loader with a glad-generated 3.3 one (diff)
downloadyuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar.gz
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar.bz2
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar.lz
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar.xz
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.tar.zst
yuzu-68eb19749456ba653c8286080f5be99ffc1ce5e7.zip
Diffstat (limited to 'src')
-rw-r--r--src/citra/emu_window/emu_window_glfw.cpp2
-rw-r--r--src/citra_qt/bootmanager.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/citra/emu_window/emu_window_glfw.cpp b/src/citra/emu_window/emu_window_glfw.cpp
index 096efc4a2..9453b1f48 100644
--- a/src/citra/emu_window/emu_window_glfw.cpp
+++ b/src/citra/emu_window/emu_window_glfw.cpp
@@ -89,7 +89,7 @@ EmuWindow_GLFW::EmuWindow_GLFW() {
exit(1);
}
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
- glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
+ glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
// GLFW on OSX requires these window hints to be set to create a 3.2+ GL context.
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp
index f8aacb527..d9bacfc3d 100644
--- a/src/citra_qt/bootmanager.cpp
+++ b/src/citra_qt/bootmanager.cpp
@@ -109,7 +109,7 @@ GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) :
// TODO: One of these flags might be interesting: WA_OpaquePaintEvent, WA_NoBackground, WA_DontShowOnScreen, WA_DeleteOnClose
QGLFormat fmt;
- fmt.setVersion(3,2);
+ fmt.setVersion(3,3);
fmt.setProfile(QGLFormat::CoreProfile);
// Requests a forward-compatible context, which is required to get a 3.2+ context on OS X
fmt.setOption(QGL::NoDeprecatedFunctions);