aboutsummaryrefslogtreecommitdiff
path: root/src/yuzu/main.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-12-01 23:46:18 -0500
committerGitHub <noreply@github.com>2018-12-01 23:46:18 -0500
commita6805e58ce4ace50a053b705df39d4eb26a76f84 (patch)
treedc4534238ea89732e57121372a41bf6a604a2ad2 /src/yuzu/main.cpp
parent0e9be7be373ff25ea31aedc2b0082496ca590faf (diff)
parent037449668e4d3f7921fc4bbbf4ace1d2526fb378 (diff)
Merge pull request #1795 from ReinUsesLisp/vc-cleanup
video_core: Minor style changes
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 93bf117c8..d4010001d 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -518,6 +518,8 @@ void GMainWindow::OnDisplayTitleBars(bool show) {
QStringList GMainWindow::GetUnsupportedGLExtensions() {
QStringList unsupported_ext;
+ if (!GLAD_GL_ARB_direct_state_access)
+ unsupported_ext.append("ARB_direct_state_access");
if (!GLAD_GL_ARB_vertex_type_10f_11f_11f_rev)
unsupported_ext.append("ARB_vertex_type_10f_11f_11f_rev");
if (!GLAD_GL_ARB_texture_mirror_clamp_to_edge)