mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-25 04:11:10 +00:00
Removed unused code files. Changed endings to CRLF.
This commit is contained in:
parent
164876a723
commit
f9fc027bb4
|
@ -1,59 +0,0 @@
|
||||||
#region --- License ---
|
|
||||||
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
||||||
* See license.txt for license info
|
|
||||||
*/
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
using Bind.Structures;
|
|
||||||
using System.Diagnostics;
|
|
||||||
|
|
||||||
namespace Bind.GL2
|
|
||||||
{
|
|
||||||
class SpecReader : ISpecReader
|
|
||||||
{
|
|
||||||
#region --- ISpecReader Members ---
|
|
||||||
|
|
||||||
#region public virtual DelegateCollection ReadDelegates(System.IO.StreamReader specFile)
|
|
||||||
|
|
||||||
public virtual DelegateCollection ReadDelegates(System.IO.StreamReader specFile)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region public virtual EnumCollection ReadEnums(System.IO.StreamReader specFile)
|
|
||||||
|
|
||||||
public virtual EnumCollection ReadEnums(System.IO.StreamReader specfile)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region public virtual Dictionary<string, string> ReadTypeMap(System.IO.StreamReader sr)
|
|
||||||
|
|
||||||
public virtual Dictionary<string, string> ReadTypeMap(System.IO.StreamReader sr)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region public virtual Dictionary<string, string> ReadCSTypeMap(System.IO.StreamReader sr)
|
|
||||||
|
|
||||||
public virtual Dictionary<string, string> ReadCSTypeMap(System.IO.StreamReader sr)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
#region --- License ---
|
|
||||||
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
||||||
* See license.txt for license info
|
|
||||||
*/
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
using Bind.Structures;
|
|
||||||
using System.Diagnostics;
|
|
||||||
|
|
||||||
namespace Bind.GL2
|
|
||||||
{
|
|
||||||
class SpecWriter : ISpecWriter
|
|
||||||
{
|
|
||||||
#region --- ISpecWriter Members ---
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -8,6 +8,7 @@
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
namespace OpenTK.OpenGL
|
namespace OpenTK.OpenGL
|
||||||
{
|
{
|
||||||
|
@ -41,7 +42,7 @@ namespace OpenTK.OpenGL
|
||||||
|
|
||||||
public static Delegate Load(string function, Type signature)
|
public static Delegate Load(string function, Type signature)
|
||||||
{
|
{
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue