mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-25 00:46:53 +00:00
Actually sort wrapper methods in GL.cs.
This commit is contained in:
parent
8bafa218e6
commit
2b6928da66
|
@ -462,8 +462,13 @@ namespace Bind.GL2
|
||||||
if (!Directory.Exists(Settings.OutputPath))
|
if (!Directory.Exists(Settings.OutputPath))
|
||||||
Directory.CreateDirectory(Settings.OutputPath);
|
Directory.CreateDirectory(Settings.OutputPath);
|
||||||
|
|
||||||
|
string temp_enums_file = Path.GetTempFileName();
|
||||||
|
string temp_delegates_file = Path.GetTempFileName();
|
||||||
|
string temp_core_file = Path.GetTempFileName();
|
||||||
|
string temp_wrappers_file = Path.GetTempFileName();
|
||||||
|
|
||||||
// Enums
|
// Enums
|
||||||
using (BindStreamWriter sw = new BindStreamWriter(Path.Combine(Settings.OutputPath, enumsFile)))
|
using (BindStreamWriter sw = new BindStreamWriter(temp_enums_file))
|
||||||
{
|
{
|
||||||
WriteLicense(sw);
|
WriteLicense(sw);
|
||||||
|
|
||||||
|
@ -496,7 +501,7 @@ namespace Bind.GL2
|
||||||
}
|
}
|
||||||
|
|
||||||
// Delegates
|
// Delegates
|
||||||
using (BindStreamWriter sw = new BindStreamWriter(Path.Combine(Settings.OutputPath, delegatesFile)))
|
using (BindStreamWriter sw = new BindStreamWriter(temp_delegates_file))
|
||||||
{
|
{
|
||||||
WriteLicense(sw);
|
WriteLicense(sw);
|
||||||
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
||||||
|
@ -514,7 +519,7 @@ namespace Bind.GL2
|
||||||
}
|
}
|
||||||
|
|
||||||
// Core
|
// Core
|
||||||
using (BindStreamWriter sw = new BindStreamWriter(Path.Combine(Settings.OutputPath, importsFile)))
|
using (BindStreamWriter sw = new BindStreamWriter(temp_core_file))
|
||||||
{
|
{
|
||||||
WriteLicense(sw);
|
WriteLicense(sw);
|
||||||
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
||||||
|
@ -531,7 +536,7 @@ namespace Bind.GL2
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wrappers
|
// Wrappers
|
||||||
using (BindStreamWriter sw = new BindStreamWriter(Path.Combine(Settings.OutputPath, wrappersFile)))
|
using (BindStreamWriter sw = new BindStreamWriter(temp_wrappers_file))
|
||||||
{
|
{
|
||||||
WriteLicense(sw);
|
WriteLicense(sw);
|
||||||
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
sw.WriteLine("namespace {0}", Settings.OutputNamespace);
|
||||||
|
@ -546,6 +551,11 @@ namespace Bind.GL2
|
||||||
sw.Unindent();
|
sw.Unindent();
|
||||||
sw.WriteLine("}");
|
sw.WriteLine("}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
File.Replace(temp_enums_file, Path.Combine(Settings.OutputPath, enumsFile), null);
|
||||||
|
File.Replace(temp_delegates_file, Path.Combine(Settings.OutputPath, delegatesFile), null);
|
||||||
|
File.Replace(temp_core_file, Path.Combine(Settings.OutputPath, importsFile), null);
|
||||||
|
File.Replace(temp_wrappers_file, Path.Combine(Settings.OutputPath, wrappersFile), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -667,6 +677,7 @@ namespace Bind.GL2
|
||||||
sw.Indent();
|
sw.Indent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wrappers[key].Sort();
|
||||||
foreach (Function f in wrappers[key])
|
foreach (Function f in wrappers[key])
|
||||||
{
|
{
|
||||||
if ((Settings.Compatibility & Settings.Legacy.NoDocumentation) == 0)
|
if ((Settings.Compatibility & Settings.Legacy.NoDocumentation) == 0)
|
||||||
|
|
|
@ -20,7 +20,7 @@ namespace Bind.Structures
|
||||||
/// Represents an opengl function.
|
/// Represents an opengl function.
|
||||||
/// The return value, function name, function parameters and opengl version can be retrieved or set.
|
/// The return value, function name, function parameters and opengl version can be retrieved or set.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Delegate
|
public class Delegate : IComparable<Delegate>
|
||||||
{
|
{
|
||||||
internal static DelegateCollection Delegates;
|
internal static DelegateCollection Delegates;
|
||||||
|
|
||||||
|
@ -624,6 +624,15 @@ namespace Bind.Structures
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IComparable<Delegate> Members
|
||||||
|
|
||||||
|
public int CompareTo(Delegate other)
|
||||||
|
{
|
||||||
|
return Name.CompareTo(other.Name);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
#region class DelegateCollection : SortedDictionary<string, Delegate>
|
#region class DelegateCollection : SortedDictionary<string, Delegate>
|
||||||
|
|
|
@ -12,7 +12,7 @@ using System.Diagnostics;
|
||||||
|
|
||||||
namespace Bind.Structures
|
namespace Bind.Structures
|
||||||
{
|
{
|
||||||
public class Function : Delegate, IEquatable<Function>
|
public class Function : Delegate, IEquatable<Function>, IComparable<Function>
|
||||||
{
|
{
|
||||||
#region Static Members
|
#region Static Members
|
||||||
|
|
||||||
|
@ -564,6 +564,15 @@ namespace Bind.Structures
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IComparable<Function> Members
|
||||||
|
|
||||||
|
public int CompareTo(Function other)
|
||||||
|
{
|
||||||
|
return Name.CompareTo(other.Name);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
#region class FunctionBody : List<string>
|
#region class FunctionBody : List<string>
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue