mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-08 07:40:42 +00:00
Allow exact function name overrides for extension functions.
This commit is contained in:
parent
ef97233198
commit
a55102ef2f
|
@ -119,7 +119,8 @@ namespace Bind
|
||||||
|
|
||||||
var function_override =
|
var function_override =
|
||||||
nav.SelectSingleNode(String.Format(Path, name, ext)) ??
|
nav.SelectSingleNode(String.Format(Path, name, ext)) ??
|
||||||
nav.SelectSingleNode(String.Format(Path, d.Name, ext));
|
nav.SelectSingleNode(String.Format(Path, d.Name, ext)) ??
|
||||||
|
nav.SelectSingleNode(String.Format(Path, Utilities.StripGL2Extension(d.Name), ext));
|
||||||
return function_override;
|
return function_override;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue