1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-13 19:29:14 +01:00

[dxvk] Disable VrInstance and DxvkXrProvider on native builds

If/when we want to support VR on native builds, we can deal with that then.
This commit is contained in:
Joshua Ashton 2022-08-21 17:54:28 +00:00 committed by Philip Rebohle
parent 8b7e0bc2fd
commit a5db9d22f1

View File

@ -20,8 +20,10 @@ namespace dxvk {
m_options = DxvkOptions(m_config);
m_extProviders.push_back(&DxvkPlatformExts::s_instance);
#ifdef _WIN32
m_extProviders.push_back(&VrInstance::s_instance);
m_extProviders.push_back(&DxvkXrProvider::s_instance);
#endif
Logger::info("Built-in extension providers:");
for (const auto& provider : m_extProviders)