From 31c0edb3d1e33deb9d143420951576dd0274f89a Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Sun, 13 Sep 2020 19:17:14 +0200 Subject: [PATCH] [d3d9] Mark generated mip maps as dirty --- src/d3d9/d3d9_device.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/d3d9/d3d9_device.cpp b/src/d3d9/d3d9_device.cpp index d033478d886a..27a344c47d21 100644 --- a/src/d3d9/d3d9_device.cpp +++ b/src/d3d9/d3d9_device.cpp @@ -5016,6 +5016,7 @@ namespace dxvk { void D3D9DeviceEx::MarkTextureMipsDirty(D3D9CommonTexture* pResource) { pResource->SetNeedsMipGen(true); + pResource->MarkAllDirty(); for (uint32_t tex = m_activeTextures; tex; tex &= tex - 1) { // Guaranteed to not be nullptr...