mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 07:40:46 -07:00
Move solution and projects to src
This commit is contained in:
18
src/Ryujinx.Graphics.GAL/DeviceInfo.cs
Normal file
18
src/Ryujinx.Graphics.GAL/DeviceInfo.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public readonly struct DeviceInfo
|
||||
{
|
||||
public readonly string Id;
|
||||
public readonly string Vendor;
|
||||
public readonly string Name;
|
||||
public readonly bool IsDiscrete;
|
||||
|
||||
public DeviceInfo(string id, string vendor, string name, bool isDiscrete)
|
||||
{
|
||||
Id = id;
|
||||
Vendor = vendor;
|
||||
Name = name;
|
||||
IsDiscrete = isDiscrete;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user