From 0eb6e83384e1e11e7ece9a2c265b3e2e263e06af Mon Sep 17 00:00:00 2001 From: zeromus Date: Sun, 21 Feb 2016 17:19:20 -0600 Subject: [PATCH] glcontexts can specify versions and clean themselves up --- BizHawk.Client.EmuHawk/GLManager.cs | 14 ++++++++++---- BizHawk.Client.EmuHawk/MainForm.cs | 3 ++- BizHawk.Client.EmuHawk/Program.cs | 2 +- BizHawk.Emulation.Common/CoreComms.cs | 3 ++- .../Consoles/Sega/Saturn/Yabause.cs | 3 ++- Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs | 4 ++-- 6 files changed, 19 insertions(+), 10 deletions(-) diff --git a/BizHawk.Client.EmuHawk/GLManager.cs b/BizHawk.Client.EmuHawk/GLManager.cs index 4a3cefc64d..19787c2af4 100644 --- a/BizHawk.Client.EmuHawk/GLManager.cs +++ b/BizHawk.Client.EmuHawk/GLManager.cs @@ -24,13 +24,19 @@ namespace BizHawk.Client.EmuHawk { if (Instance != null) throw new InvalidOperationException("Attempt to create more than one GLManager"); Instance = new GLManager(); - } - - public ContextRef CreateGLContext() + } + + public void ReleaseGLContext(object o) + { + ContextRef cr = (ContextRef)o; + cr.gl.Dispose(); + } + + public ContextRef CreateGLContext(int major_version, int minor_version, bool forward_compatible) { var ret = new ContextRef { - gl = new Bizware.BizwareGL.Drivers.OpenTK.IGL_TK() + gl = new Bizware.BizwareGL.Drivers.OpenTK.IGL_TK(major_version, minor_version, forward_compatible) }; return ret; } diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 70a5921c86..822bc34c6c 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -84,7 +84,8 @@ namespace BizHawk.Client.EmuHawk CoreComm CreateCoreComm() { CoreComm ret = new CoreComm(ShowMessageCoreComm, NotifyCoreComm); - ret.RequestGLContext = () => GlobalWin.GLManager.CreateGLContext(); + ret.ReleaseGLContext = (o) => GlobalWin.GLManager.ReleaseGLContext(o); + ret.RequestGLContext = (major,minor,forward) => GlobalWin.GLManager.CreateGLContext(major,minor,forward); ret.ActivateGLContext = (gl) => GlobalWin.GLManager.Activate((GLManager.ContextRef)gl); ret.DeactivateGLContext = () => GlobalWin.GLManager.Deactivate(); return ret; diff --git a/BizHawk.Client.EmuHawk/Program.cs b/BizHawk.Client.EmuHawk/Program.cs index 25760e4c0c..80121e0043 100644 --- a/BizHawk.Client.EmuHawk/Program.cs +++ b/BizHawk.Client.EmuHawk/Program.cs @@ -124,7 +124,7 @@ namespace BizHawk.Client.EmuHawk } //create IGL context. we do this whether or not the user has selected OpenGL, so that we can run opengl-based emulator cores - GlobalWin.IGL_GL = new Bizware.BizwareGL.Drivers.OpenTK.IGL_TK(); + GlobalWin.IGL_GL = new Bizware.BizwareGL.Drivers.OpenTK.IGL_TK(2,0,false); //setup the GL context manager, needed for coping with multiple opengl cores vs opengl display method GLManager.CreateInstance(); diff --git a/BizHawk.Emulation.Common/CoreComms.cs b/BizHawk.Emulation.Common/CoreComms.cs index d963c81ec8..88719a89b2 100644 --- a/BizHawk.Emulation.Common/CoreComms.cs +++ b/BizHawk.Emulation.Common/CoreComms.cs @@ -51,7 +51,8 @@ namespace BizHawk.Emulation.Common /// public Action Notify { get; private set; } - public Func RequestGLContext; + public Func RequestGLContext; + public Action ReleaseGLContext; public Action ActivateGLContext; public Action DeactivateGLContext; //this shouldnt be necessary.. frontend should be changing context before it does anything.. but for now.. } diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs index a7b066c049..7e74dc3453 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Yabause.cs @@ -69,7 +69,7 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn if (this.SyncSettings.UseGL && glContext == null) { - glContext = CoreComm.RequestGLContext(); + glContext = CoreComm.RequestGLContext(2,0,false); } ResetCounters(); @@ -322,6 +322,7 @@ namespace BizHawk.Emulation.Cores.Sega.Saturn CD.Dispose(); Disposed = true; DeactivateGL(); + CoreComm.ReleaseGLContext(glContext); } } diff --git a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs index dc15f2b654..e86353152f 100644 --- a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs +++ b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs @@ -67,12 +67,12 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK } } - public IGL_TK() + public IGL_TK(int major_version, int minor_version, bool forward_compatible) { //make an 'offscreen context' so we can at least do things without having to create a window OffscreenNativeWindow = new NativeWindow(); OffscreenNativeWindow.ClientSize = new sd.Size(8, 8); - this.GraphicsContext = new GraphicsContext(GraphicsMode.Default, OffscreenNativeWindow.WindowInfo, 2, 0, GraphicsContextFlags.Default); + this.GraphicsContext = new GraphicsContext(GraphicsMode.Default, OffscreenNativeWindow.WindowInfo, major_version, minor_version, forward_compatible ? GraphicsContextFlags.ForwardCompatible : GraphicsContextFlags.Default); MakeDefaultCurrent(); //this is important for reasons unknown