mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 20:35:37 +00:00
033d4722af
Fixed a regression where the GLControl would try to instantiate a normal context inside the VS designer, instead of a dummy one.
18 lines
283 B
C#
18 lines
283 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.Dummy
|
|
{
|
|
class DummyWindowInfo : IWindowInfo
|
|
{
|
|
#region IDisposable Members
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|