Update GLRenderer.cs
This commit is contained in:
parent
daecb1193d
commit
807081541e
1 changed files with 3 additions and 3 deletions
|
@ -337,9 +337,9 @@ namespace Ryujinx.Ui
|
||||||
|
|
||||||
string gpuVendor = "Unknown";
|
string gpuVendor = "Unknown";
|
||||||
|
|
||||||
if (_renderer.GpuVendor.ToLower().Contains("nvidia")) gpuVendor = "NVIDIA";
|
if (_renderer.GpuVendor.ToLower().Contains("nvidia ")) gpuVendor = "NVIDIA";
|
||||||
if (_renderer.GpuVendor.ToLower().Contains("amd") || _renderer.GpuVendor.ToLower().Contains("ati")) gpuVendor = "AMD";
|
if (_renderer.GpuVendor.ToLower().Contains("amd ") || _renderer.GpuVendor.ToLower().Contains("ati ")) gpuVendor = "AMD";
|
||||||
if (_renderer.GpuVendor.ToLower().Contains("intel")) gpuVendor = "Intel";
|
if (_renderer.GpuVendor.ToLower().Contains("intel ")) gpuVendor = "Intel";
|
||||||
|
|
||||||
StatusUpdatedEvent?.Invoke(this, new StatusUpdatedEventArgs(
|
StatusUpdatedEvent?.Invoke(this, new StatusUpdatedEventArgs(
|
||||||
_device.EnableDeviceVsync,
|
_device.EnableDeviceVsync,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue