Removed evil tabs and no longer used include

This commit is contained in:
Andy Adshead 2019-03-01 18:23:03 +00:00
parent 3789c24885
commit 29047802f0
2 changed files with 5 additions and 6 deletions

View file

@ -17,7 +17,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL
public static bool EnhancedLayouts => s_EnhancedLayouts.Value;
public static bool TextureMirrorClamp => s_TextureMirrorClamp.Value;
public static bool ViewportArray => s_ViewportArray.Value;
public static bool NvidiaDrvier => s_NvidiaDriver.Value;
private static bool HasExtension(string Name)
@ -36,9 +36,9 @@ namespace Ryujinx.Graphics.Gal.OpenGL
return false;
}
private static bool IsNvidiaDriver()
{
private static bool IsNvidiaDriver()
{
return GL.GetString(StringName.Vendor).Equals("NVIDIA Corporation");
}
@ -67,4 +67,4 @@ namespace Ryujinx.Graphics.Gal.OpenGL
}
}
}
}
}

View file

@ -2,7 +2,6 @@ using LibHac.IO;
using OpenTK.Input;
using Ryujinx.Common;
using Ryujinx.Common.Logging;
using Ryujinx.Graphics.Gal.OpenGL;
using Ryujinx.HLE;
using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Input;