mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-22 01:55:10 +00:00
398fa1c238
* Update Silk.NET version * fix: add MoltenVK resolver workaround fix: add MoltenVK resolver workaround * Cleanup * Readonly ref warnings * Remove driver id todo
100 lines
3.4 KiB
C#
100 lines
3.4 KiB
C#
using Silk.NET.Vulkan;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
enum Vendor
|
|
{
|
|
Amd,
|
|
ImgTec,
|
|
Intel,
|
|
Nvidia,
|
|
ARM,
|
|
Broadcom,
|
|
Qualcomm,
|
|
Apple,
|
|
Unknown,
|
|
}
|
|
|
|
static partial class VendorUtils
|
|
{
|
|
[GeneratedRegex("Radeon (((HD|R(5|7|9|X)) )?((M?[2-6]\\d{2}(\\D|$))|([7-8]\\d{3}(\\D|$))|Fury|Nano))|(Pro Duo)")]
|
|
public static partial Regex AmdGcnRegex();
|
|
|
|
[GeneratedRegex("NVIDIA GeForce (R|G)?TX? (\\d{3}\\d?)M?")]
|
|
public static partial Regex NvidiaConsumerClassRegex();
|
|
|
|
public static Vendor FromId(uint id)
|
|
{
|
|
return id switch
|
|
{
|
|
0x1002 => Vendor.Amd,
|
|
0x1010 => Vendor.ImgTec,
|
|
0x106B => Vendor.Apple,
|
|
0x10DE => Vendor.Nvidia,
|
|
0x13B5 => Vendor.ARM,
|
|
0x14E4 => Vendor.Broadcom,
|
|
0x8086 => Vendor.Intel,
|
|
0x5143 => Vendor.Qualcomm,
|
|
_ => Vendor.Unknown,
|
|
};
|
|
}
|
|
|
|
public static string GetNameFromId(uint id)
|
|
{
|
|
return id switch
|
|
{
|
|
0x1002 => "AMD",
|
|
0x1010 => "ImgTec",
|
|
0x106B => "Apple",
|
|
0x10DE => "NVIDIA",
|
|
0x13B5 => "ARM",
|
|
0x14E4 => "Broadcom",
|
|
0x1AE0 => "Google",
|
|
0x5143 => "Qualcomm",
|
|
0x8086 => "Intel",
|
|
0x10001 => "Vivante",
|
|
0x10002 => "VeriSilicon",
|
|
0x10003 => "Kazan",
|
|
0x10004 => "Codeplay Software Ltd.",
|
|
0x10005 => "Mesa",
|
|
0x10006 => "PoCL",
|
|
_ => $"0x{id:X}",
|
|
};
|
|
}
|
|
|
|
public static string GetFriendlyDriverName(DriverId id)
|
|
{
|
|
return id switch
|
|
{
|
|
DriverId.AmdProprietary => "AMD",
|
|
DriverId.AmdOpenSource => "AMD (Open)",
|
|
DriverId.MesaRadv => "RADV",
|
|
DriverId.NvidiaProprietary => "NVIDIA",
|
|
DriverId.IntelProprietaryWindows => "Intel",
|
|
DriverId.IntelOpenSourceMesa => "Intel (Open)",
|
|
DriverId.ImaginationProprietary => "Imagination",
|
|
DriverId.QualcommProprietary => "Qualcomm",
|
|
DriverId.ArmProprietary => "ARM",
|
|
DriverId.GoogleSwiftshader => "SwiftShader",
|
|
DriverId.GgpProprietary => "GGP",
|
|
DriverId.BroadcomProprietary => "Broadcom",
|
|
DriverId.MesaLlvmpipe => "LLVMpipe",
|
|
DriverId.Moltenvk => "MoltenVK",
|
|
DriverId.CoreaviProprietary => "CoreAVI",
|
|
DriverId.JuiceProprietary => "Juice",
|
|
DriverId.VerisiliconProprietary => "Verisilicon",
|
|
DriverId.MesaTurnip => "Turnip",
|
|
DriverId.MesaV3DV => "V3DV",
|
|
DriverId.MesaPanvk => "PanVK",
|
|
DriverId.SamsungProprietary => "Samsung",
|
|
DriverId.MesaVenus => "Venus",
|
|
DriverId.MesaDozen => "Dozen",
|
|
DriverId.MesaNvk => "NVK",
|
|
DriverId.ImaginationOpenSourceMesa => "Imagination (Open)",
|
|
DriverId.MesaAgxv => "Honeykrisp",
|
|
_ => id.ToString(),
|
|
};
|
|
}
|
|
}
|
|
}
|