DeviceInfo.cs 451 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public readonly struct DeviceInfo
  4. {
  5. public readonly string Id;
  6. public readonly string Vendor;
  7. public readonly string Name;
  8. public readonly bool IsDiscrete;
  9. public DeviceInfo(string id, string vendor, string name, bool isDiscrete)
  10. {
  11. Id = id;
  12. Vendor = vendor;
  13. Name = name;
  14. IsDiscrete = isDiscrete;
  15. }
  16. }
  17. }