mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 02:15:29 +00:00
* Utilities.cs: Added AMD to extension list.
This commit is contained in:
parent
276675fd9c
commit
34613184b8
|
@ -199,6 +199,7 @@ namespace Bind
|
|||
if (name.EndsWith("3DFX")) { return "3dfx"; }
|
||||
if (name.EndsWith("APPLE")) { return "Apple"; }
|
||||
if (name.EndsWith("ARB")) { return "Arb"; }
|
||||
if (name.EndsWith("AMD")) { return "Amd"; }
|
||||
if (name.EndsWith("ATI")) { return "Ati"; }
|
||||
if (name.EndsWith("ATIX")) { return "Atix"; }
|
||||
if (name.EndsWith("EXT")) { return "Ext"; }
|
||||
|
@ -238,7 +239,7 @@ namespace Bind
|
|||
{
|
||||
return p.Substring(0, p.Length - GetGL2Extension(p).Length);
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue