diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-08 04:05:56 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-09-08 04:05:56 -0400 |
commit | 8b08cb925b6832c5d2bb250df6faf9726c3f5d4b (patch) | |
tree | 0efe12786b4fdc94f62938ed89fb2eae2a65aba8 /src/yuzu/main.cpp | |
parent | a8974f0556885857e2c0cd7509de0a80d5525983 (diff) |
gl_rasterizer: Use baseInstance instead of moving the buffer points.
This hopefully helps our cache not to redundant upload the vertex buffer.
# Conflicts:
# src/video_core/renderer_opengl/gl_rasterizer.cpp
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 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) |