Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jp7677/dxvk-nvapi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Peters <jp7677@gmail.com>2021-10-05 23:39:11 +0300
committerJens Peters <jp7677@gmail.com>2021-10-05 23:39:11 +0300
commit5f4ad8ff618f8dba9e0cfbbae10846295102452a (patch)
treecc4ecf8c6b6725bd6860e64275a5bba69ccf8793
parentd4e9f29c71aae3ede95a77fb0ae167ffd5abc118 (diff)
nvapi-d3d11: Remove unused declarations
-rw-r--r--src/d3d11/nvapi_d3d11_device.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/d3d11/nvapi_d3d11_device.h b/src/d3d11/nvapi_d3d11_device.h
index 744081d..7a9275e 100644
--- a/src/d3d11/nvapi_d3d11_device.h
+++ b/src/d3d11/nvapi_d3d11_device.h
@@ -29,19 +29,16 @@ namespace dxvk {
inline static std::unordered_map<IUnknown*, ID3D11VkExtContext*> m_barrierControlDeviceOrContextMap;
inline static std::unordered_map<IUnknown*, ID3D11VkExtContext*> m_multiDrawIndirectContextMap;
inline static std::unordered_map<IUnknown*, ID3D11VkExtContext*> m_binaryImportContextMap;
- inline static std::unordered_map<IUnknown*, ID3D11VkExtContext*> m_imageViewHandleContextMap;
inline static std::mutex m_depthBoundsDeviceOrContextMutex;
inline static std::mutex m_barrierControlDeviceOrContextMutex;
inline static std::mutex m_multiDrawIndirectContextMutex;
inline static std::mutex m_binaryImportContextMutex;
- inline static std::mutex m_imageViewHandleContextMutex;
[[nodiscard]] static Com<ID3D11VkExtContext> GetSdbtDeviceContext(IUnknown* deviceOrContext);
[[nodiscard]] static Com<ID3D11VkExtContext> GetBarrierControlDeviceContext(IUnknown* deviceOrContext);
[[nodiscard]] static Com<ID3D11VkExtContext> GetMultiDrawDeviceContext(ID3D11DeviceContext* deviceContext);
[[nodiscard]] static Com<ID3D11VkExtContext1> GetBinaryImportDeviceContext(IUnknown* deviceOrContext);
- [[nodiscard]] static Com<ID3D11VkExtContext1> GetImageViewHandleDeviceContext(ID3D11DeviceContext* deviceContext);
[[nodiscard]] static Com<ID3D11VkExtContext> GetCachedDeviceContextExt(IUnknown* deviceOrContext, std::unordered_map<IUnknown*, ID3D11VkExtContext*>& cacheMap, D3D11_VK_EXTENSION extension);
[[nodiscard]] static Com<ID3D11VkExtContext> GetDeviceContextExt(IUnknown* deviceOrContext, D3D11_VK_EXTENSION extension);
[[nodiscard]] static Com<ID3D11VkExtContext> GetDeviceContextExt(ID3D11DeviceContext* deviceContext, D3D11_VK_EXTENSION extension);