2017-05-22 16:14:38 +00:00
|
|
|
|
using BizHawk.Bizware.BizwareGL;
|
2018-12-22 18:40:30 +00:00
|
|
|
|
using BizHawk.Client.ApiHawk;
|
2013-10-25 01:01:35 +00:00
|
|
|
|
|
2017-05-22 16:14:38 +00:00
|
|
|
|
// ReSharper disable StyleCop.SA1401
|
2013-11-03 03:54:37 +00:00
|
|
|
|
namespace BizHawk.Client.EmuHawk
|
2013-10-25 01:01:35 +00:00
|
|
|
|
{
|
2013-11-03 16:07:58 +00:00
|
|
|
|
public static class GlobalWin
|
2013-10-25 01:01:35 +00:00
|
|
|
|
{
|
|
|
|
|
public static MainForm MainForm;
|
2013-11-02 19:28:45 +00:00
|
|
|
|
public static ToolManager Tools;
|
2018-12-22 18:40:30 +00:00
|
|
|
|
public static BasicApiProvider ApiProvider;
|
2015-08-20 23:35:53 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// the IGL to be used for rendering
|
|
|
|
|
/// </summary>
|
2014-01-27 05:37:04 +00:00
|
|
|
|
public static IGL GL;
|
2015-08-20 23:35:53 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The IGL_TK to be used for specifically opengl operations (accessing textures from opengl-based cores)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static Bizware.BizwareGL.Drivers.OpenTK.IGL_TK IGL_GL;
|
|
|
|
|
|
2013-10-25 01:01:35 +00:00
|
|
|
|
public static Sound Sound;
|
2017-05-22 16:14:38 +00:00
|
|
|
|
public static readonly OSDManager OSD = new OSDManager();
|
2014-01-28 04:39:27 +00:00
|
|
|
|
public static DisplayManager DisplayManager;
|
2014-06-08 23:30:34 +00:00
|
|
|
|
public static GLManager GLManager;
|
2015-12-15 08:22:44 +00:00
|
|
|
|
|
|
|
|
|
public static int ExitCode;
|
2017-12-23 23:24:22 +00:00
|
|
|
|
public static Communication.HttpCommunication httpCommunication = new Communication.HttpCommunication();
|
|
|
|
|
public static Communication.SocketServer socketServer = new Communication.SocketServer();
|
|
|
|
|
public static Communication.MemoryMappedFiles memoryMappedFiles = new Communication.MemoryMappedFiles();
|
2013-10-25 01:01:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|