diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-19 12:00:33 +1000 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-19 12:00:33 +1000 |
commit | 706fc5d2d6d4beadfcdd3fedd64d451ef7595384 (patch) | |
tree | a18556b0543d4a39306d7b8307040ca79ad672ee /src/yuzu/main.cpp | |
parent | 71cc482bbdc2f7340937423c4ac83a13b609e9d7 (diff) |
Added check to see if ARB_texture_mirror_clamp_to_edge is supported
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 2df65023a..11d2331df 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -377,6 +377,8 @@ bool GMainWindow::SupportsRequiredGLExtensions() { unsupported_ext.append("ARB_vertex_attrib_binding"); 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) + unsupported_ext.append("ARB_texture_mirror_clamp_to_edge"); // Extensions required to support some texture formats. if (!GLAD_GL_EXT_texture_compression_s3tc) |