diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-08 04:49:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-08 04:49:24 -0400 |
commit | 9cd79c25ed04bb1bf67192d810791ab39e09ee96 (patch) | |
tree | 2bb26606f2723dc863e8be3c4a161b2adfd189cb /src/yuzu | |
parent | 2515d2433b0ff24667da7d627c4bbb3cb4369496 (diff) | |
parent | 8b08cb925b6832c5d2bb250df6faf9726c3f5d4b (diff) |
Merge pull request #1246 from degasus/instanced_rendering
gl_rasterizer: Use baseInstance instead of moving the buffer points.
Diffstat (limited to 'src/yuzu')
-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 cb8135c42..2cd282a51 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -444,6 +444,8 @@ QStringList GMainWindow::GetUnsupportedGLExtensions() { 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"); + if (!GLAD_GL_ARB_base_instance) + unsupported_ext.append("ARB_base_instance"); // Extensions required to support some texture formats. if (!GLAD_GL_EXT_texture_compression_s3tc) |