Merged fix for [#1098] from branches/1.0.
This commit is contained in:
parent
f12cbf1cd5
commit
35956701ae
5 changed files with 28105 additions and 28044 deletions
|
@ -608,9 +608,9 @@ namespace Bind.Structures
|
||||||
{
|
{
|
||||||
int ret = Name.CompareTo(other.Name);
|
int ret = Name.CompareTo(other.Name);
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
ret = Parameters.ToString().CompareTo(other.Parameters.ToString());
|
ret = Parameters.CompareTo(other.Parameters);
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
ret = ReturnType.ToString().CompareTo(other.ReturnType.ToString());
|
ret = ReturnType.CompareTo(other.ReturnType);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace Bind.Structures
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a single parameter of an opengl function.
|
/// Represents a single parameter of an opengl function.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class Parameter : Type
|
public class Parameter : Type, IComparable<Parameter>
|
||||||
{
|
{
|
||||||
string cache;
|
string cache;
|
||||||
bool rebuild;
|
bool rebuild;
|
||||||
|
@ -350,12 +350,24 @@ namespace Bind.Structures
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IComparable<Parameter> Members
|
||||||
|
|
||||||
|
public int CompareTo(Parameter other)
|
||||||
|
{
|
||||||
|
int result = base.CompareTo(other);
|
||||||
|
if (result == 0)
|
||||||
|
result = Name.CompareTo(other.Name);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Holds the parameter list of an opengl function.
|
/// Holds the parameter list of an opengl function.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ParameterCollection : List<Parameter>
|
public class ParameterCollection : List<Parameter>, IComparable<ParameterCollection>
|
||||||
{
|
{
|
||||||
string cache = String.Empty;
|
string cache = String.Empty;
|
||||||
string callStringCache = String.Empty;
|
string callStringCache = String.Empty;
|
||||||
|
@ -642,5 +654,31 @@ namespace Bind.Structures
|
||||||
return true;
|
return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#region IComparable<ParameterCollection> Members
|
||||||
|
|
||||||
|
public int CompareTo(ParameterCollection other)
|
||||||
|
{
|
||||||
|
if (Count < other.Count)
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
else if (Count > other.Count)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
for (int i = 0; i < Count; i++)
|
||||||
|
{
|
||||||
|
int result = this[i].CompareTo(other[i]);
|
||||||
|
if (result != 0)
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ using System.Xml.XPath;
|
||||||
|
|
||||||
namespace Bind.Structures
|
namespace Bind.Structures
|
||||||
{
|
{
|
||||||
public class Type
|
public class Type : IComparable<Type>
|
||||||
{
|
{
|
||||||
internal static Dictionary<string, string> GLTypes;
|
internal static Dictionary<string, string> GLTypes;
|
||||||
internal static Dictionary<string, string> CSTypes;
|
internal static Dictionary<string, string> CSTypes;
|
||||||
|
@ -461,5 +461,28 @@ namespace Bind.Structures
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
#region IComparable<Type> Members
|
||||||
|
|
||||||
|
public int CompareTo(Type other)
|
||||||
|
{
|
||||||
|
// Make sure that Pointer parameters are sorted last to avoid bug [#1098].
|
||||||
|
// The rest of the comparisons are not important, but they are there to
|
||||||
|
// guarantee a stable order between program executions.
|
||||||
|
int result = this.CurrentType.CompareTo(other.CurrentType);
|
||||||
|
if (result == 0)
|
||||||
|
result = Pointer.CompareTo(other.Pointer);
|
||||||
|
if (result == 0)
|
||||||
|
result = Reference.CompareTo(other.Reference);
|
||||||
|
if (result == 0)
|
||||||
|
result = Array.CompareTo(other.Array);
|
||||||
|
if (result == 0)
|
||||||
|
result = CLSCompliant.CompareTo(other.CLSCompliant);
|
||||||
|
if (result == 0)
|
||||||
|
result = ElementCount.CompareTo(other.ElementCount);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue