1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-27 13:54:16 +01:00

[d3d9] Hold a private reference to FVF-generated vertex decls

Otherwise the device will never be able to be destroyed as there will be a circular dependency.

Closes #1417
This commit is contained in:
Joshua Ashton 2020-02-13 18:37:25 +00:00
parent 313d46984d
commit acb3cda1dc

View File

@ -1004,7 +1004,8 @@ namespace dxvk {
std::unordered_map<
DWORD,
Com<D3D9VertexDecl>> m_fvfTable;
Com<D3D9VertexDecl,
false>> m_fvfTable;
D3D9InputAssemblyState m_iaState;