summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-15 18:09:19 +0100
committerGitHub <noreply@github.com>2019-11-15 18:09:19 +0100
commita8295d2c533d1628887bd45d3bfd8adb66281834 (patch)
treeddfd5d15ff0a055cdd4b4aa5df85c0b2bfc56713 /src/yuzu
parentMerge pull request #3091 from lioncash/core-conversion (diff)
parentgl_rasterizer: Remove front facing hack (diff)
downloadyuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar.gz
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar.bz2
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar.lz
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar.xz
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.tar.zst
yuzu-a8295d2c533d1628887bd45d3bfd8adb66281834.zip
Diffstat (limited to 'src/yuzu')
-rw-r--r--src/yuzu/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 160613ee1..867f8e913 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -817,6 +817,9 @@ QStringList GMainWindow::GetUnsupportedGLExtensions() {
if (!GLAD_GL_ARB_multi_bind) {
unsupported_ext.append(QStringLiteral("ARB_multi_bind"));
}
+ if (!GLAD_GL_ARB_clip_control) {
+ unsupported_ext.append(QStringLiteral("ARB_clip_control"));
+ }
// Extensions required to support some texture formats.
if (!GLAD_GL_EXT_texture_compression_s3tc) {