mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
This was only half-implemented (e.g. OpenXR was still calling GetModuleHandle), broke compilation with Vulkan due to mismatched ABI, and wouldn't have worked anyways with winelib builds because we still need access to wine's implementation of the Vulkan win32 winsys integration. Perhaps this is still useful for dxvk-native but if so it should be re-added under a DXVK_NATIVE flag.
70 lines
1.3 KiB
C++
70 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
#include <vector>
|
|
|
|
#include "dxvk_extension_provider.h"
|
|
|
|
namespace dxvk {
|
|
|
|
class DxvkInstance;
|
|
|
|
/**
|
|
* \brief OpenXR instance
|
|
*
|
|
* Loads OpenXR to provide access to Vulkan extension queries.
|
|
*/
|
|
class DxvkXrProvider : public DxvkExtensionProvider {
|
|
|
|
public:
|
|
|
|
DxvkXrProvider();
|
|
~DxvkXrProvider();
|
|
|
|
std::string_view getName();
|
|
|
|
DxvkNameSet getInstanceExtensions();
|
|
|
|
DxvkNameSet getDeviceExtensions(
|
|
uint32_t adapterId);
|
|
|
|
void initInstanceExtensions();
|
|
|
|
void initDeviceExtensions(
|
|
const DxvkInstance* instance);
|
|
|
|
static DxvkXrProvider s_instance;
|
|
|
|
private:
|
|
|
|
dxvk::mutex m_mutex;
|
|
HMODULE m_wineOxr = nullptr;
|
|
|
|
bool m_loadedOxrApi = false;
|
|
bool m_initializedInsExt = false;
|
|
bool m_initializedDevExt = false;
|
|
|
|
DxvkNameSet m_insExtensions;
|
|
DxvkNameSet m_devExtensions;
|
|
|
|
DxvkNameSet queryInstanceExtensions() const;
|
|
|
|
DxvkNameSet queryDeviceExtensions() const;
|
|
|
|
DxvkNameSet parseExtensionList(
|
|
const std::string& str) const;
|
|
|
|
bool loadFunctions();
|
|
|
|
void shutdown();
|
|
|
|
HMODULE loadLibrary();
|
|
|
|
void freeLibrary();
|
|
|
|
void* getSym(const char* sym);
|
|
|
|
};
|
|
|
|
}
|