From 04397e5a7b9b39cc8c051d7841c04a62d667cc49 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Sat, 6 Jun 2020 20:17:32 +0100 Subject: [PATCH] [d3d9] Mark mips as dirty when the filter changes --- src/d3d9/d3d9_texture.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/d3d9/d3d9_texture.h b/src/d3d9/d3d9_texture.h index 4b070a3c5..1eaa5b239 100644 --- a/src/d3d9/d3d9_texture.h +++ b/src/d3d9/d3d9_texture.h @@ -80,6 +80,7 @@ namespace dxvk { auto lock = this->m_parent->LockDevice(); m_texture.SetMipFilter(FilterType); + this->m_parent->MarkTextureMipsDirty(&m_texture); return D3D_OK; }