From d771f7cf8fc8f246fdabf731142d6aa4bb475941 Mon Sep 17 00:00:00 2001 From: Robin Kertels Date: Mon, 24 Oct 2022 20:17:35 +0200 Subject: [PATCH] [d3d9] Remove dead fields --- src/d3d9/d3d9_common_buffer.h | 1 - src/d3d9/d3d9_common_texture.h | 4 ---- 2 files changed, 5 deletions(-) diff --git a/src/d3d9/d3d9_common_buffer.h b/src/d3d9/d3d9_common_buffer.h index d2f7f7458..cf6726924 100644 --- a/src/d3d9/d3d9_common_buffer.h +++ b/src/d3d9/d3d9_common_buffer.h @@ -229,7 +229,6 @@ namespace dxvk { const D3D9_BUFFER_DESC m_desc; DWORD m_mapFlags; bool m_needsReadback = false; - bool m_uploadUsingStaging = false; D3D9_COMMON_BUFFER_MAP_MODE m_mapMode; Rc m_buffer; diff --git a/src/d3d9/d3d9_common_texture.h b/src/d3d9/d3d9_common_texture.h index b727c8725..fea9263c5 100644 --- a/src/d3d9/d3d9_common_texture.h +++ b/src/d3d9/d3d9_common_texture.h @@ -512,8 +512,6 @@ namespace dxvk { int64_t m_size = 0; - bool m_systemmemModified = false; - bool m_hazardous = false; D3D9ColorView m_sampleView; @@ -526,8 +524,6 @@ namespace dxvk { D3D9SubresourceBitset m_needsUpload = { }; - D3D9SubresourceBitset m_uploadUsingStaging = { }; - DWORD m_exposedMipLevels = 0; bool m_needsMipGen = false;