mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 21:35:29 +00:00
27 lines
450 B
C#
27 lines
450 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Compute.CL10
|
|
{
|
|
struct ErrorHelper : IDisposable
|
|
{
|
|
#region Constructors
|
|
|
|
public ErrorHelper(IntPtr context)
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region IDisposable Members
|
|
|
|
public void Dispose()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|