summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-27 16:46:49 +0100
committerGitHub <noreply@github.com>2018-11-27 16:46:49 +0100
commit5bea164a7788b0c3ae33336424914be216eb5405 (patch)
tree4f52900ba8d1be14666aad473798c63fe10a12ab
parentMerge pull request #1806 from ReinUsesLisp/morton-fixup (diff)
parentgl_rasterizer: Fixup for #1723. (diff)
downloadyuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar.gz
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar.bz2
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar.lz
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar.xz
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.tar.zst
yuzu-5bea164a7788b0c3ae33336424914be216eb5405.zip
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index 98fb5a9aa..82b7a0649 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -668,7 +668,7 @@ void RasterizerOpenGL::DrawArrays() {
bool invalidate = buffer_cache.Map(buffer_size);
if (invalidate) {
// As all cached buffers are invalidated, we need to recheck their state.
- gpu.dirty_flags.vertex_attrib_format = 0xFFFFFFFF;
+ gpu.dirty_flags.vertex_array = 0xFFFFFFFF;
}
SetupVertexFormat();