diff options
author | bunnei <bunneidev@gmail.com> | 2018-11-27 16:46:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 16:46:49 +0100 |
commit | 5bea164a7788b0c3ae33336424914be216eb5405 (patch) | |
tree | 4f52900ba8d1be14666aad473798c63fe10a12ab /src | |
parent | Merge pull request #1806 from ReinUsesLisp/morton-fixup (diff) | |
parent | gl_rasterizer: Fixup for #1723. (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 2 |
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(); |