diff options
author | Liam <byteslice@airmail.cc> | 2022-03-11 14:47:01 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-03-11 14:51:22 +0100 |
commit | 70e632f1537d2e087af0b055c80e9124e0aa7c85 (patch) | |
tree | 303fb9c7aba65ed73452e578da24629993d51de3 /src/video_core | |
parent | TextureCacheRuntime: allow converting D24S8 to ABGR8 (diff) | |
download | yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar.gz yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar.bz2 yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar.lz yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar.xz yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.tar.zst yuzu-70e632f1537d2e087af0b055c80e9124e0aa7c85.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 2d640bd43..94711ad6b 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -7,6 +7,7 @@ #include "common/assert.h" #include "core/core.h" #include "core/core_timing.h" +#include "video_core/dirty_flags.h" #include "video_core/engines/maxwell_3d.h" #include "video_core/gpu.h" #include "video_core/memory_manager.h" @@ -211,6 +212,7 @@ void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argume case MAXWELL3D_REG_INDEX(small_index): regs.index_array.count = regs.small_index.count; regs.index_array.first = regs.small_index.first; + dirty.flags[VideoCommon::Dirty::IndexBuffer] = true; return DrawArrays(); case MAXWELL3D_REG_INDEX(clear_buffers): return ProcessClearBuffers(); |