mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-27 15:30:08 +02:00
- 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.
19 lines
536 B
C#
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;
|
|
}
|
|
}
|
|
}
|