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:
Diffstat (limited to 'src/sysinfo/nvapi_adapter.cpp')
-rw-r--r--src/sysinfo/nvapi_adapter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysinfo/nvapi_adapter.cpp b/src/sysinfo/nvapi_adapter.cpp
index 569d110..fc56da5 100644
--- a/src/sysinfo/nvapi_adapter.cpp
+++ b/src/sysinfo/nvapi_adapter.cpp
@@ -274,6 +274,10 @@ namespace dxvk {
return m_nvml.DeviceGetVbiosVersion(m_nvmlDevice, version, length);
}
+ nvmlReturn_t NvapiAdapter::GetNvmlDeviceGetCurrPcieLinkWidth(unsigned int* width) const {
+ return m_nvml.DeviceGetCurrPcieLinkWidth(m_nvmlDevice, width);
+ }
+
nvmlReturn_t NvapiAdapter::GetNvmlDeviceNumGpuCores(unsigned int* numCores) const {
return m_nvml.DeviceGetNumGpuCores(m_nvmlDevice, numCores);
}