summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-14 21:00:37 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-07-17 23:29:54 +0200
commit8cdbfe69b1211431536414e375f0fd49222d9a29 (patch)
treedac0320358b55acc6a431c07e38d7da4fb156ec2 /src/video_core/engines
parentMaxwell3D: Correct marking dirtiness on CB upload (diff)
downloadyuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar.gz
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar.bz2
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar.lz
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar.xz
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.tar.zst
yuzu-8cdbfe69b1211431536414e375f0fd49222d9a29.zip
Diffstat (limited to 'src/video_core/engines')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 0c4e72dfe..97422e700 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -568,7 +568,7 @@ void Maxwell3D::FinishCBData() {
const u32 id = cb_data_state.id;
memory_manager.WriteBlock(address, cb_data_state.buff[id].data(), size);
- dirty.ResetVertexArrays();
+ dirty.OnMemoryWrite();
cb_data_state.id = null_cb_data;
cb_data_state.current = null_cb_data;