Files
Kenji-NX/src/Ryujinx.Graphics.GAL/HardwareInfo.cs
T
Babib3l ed70f7921e feature: Add GpuDriverVersion to GPU info logging
- The Vulkan backend now reports the driver name and version using VK_KHR_driver_properties when available, with fallbacks for raw Vulkan driverVersion parsing. Intel Windows drivers also get the full package-style version from the driver UUID when exposed by the driver.
  OpenGL now carries its existing OpenGL version string through HardwareInfo.GpuDriverVersion.
2026-08-21 12:05:42 -05:00

19 lines
536 B
C#

namespace Ryujinx.Graphics.GAL
{
public readonly struct HardwareInfo
{
public string GpuVendor { get; }
public string GpuModel { get; }
public string GpuDriver { get; }
public string GpuDriverVersion { get; }
public HardwareInfo(string gpuVendor, string gpuModel, string gpuDriver, string gpuDriverVersion)
{
GpuVendor = gpuVendor;
GpuModel = gpuModel;
GpuDriver = gpuDriver;
GpuDriverVersion = gpuDriverVersion;
}
}
}