From ca6f993b7cf3d951f10afcd1d7f48c2185afb920 Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 26 Apr 2014 21:55:04 +0000 Subject: [PATCH] workarounds for lousy intel gpus --- BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs | 6 ++++-- BizHawk.Client.EmuHawk/MainForm.cs | 6 ++++-- BizHawk.Client.EmuHawk/PresentationPanel.cs | 3 +++ .../GraphicsControl_TK.cs | 8 ++++---- Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs | 5 +++-- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs index d3f6f20f55..682fe1bbcc 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs @@ -359,11 +359,13 @@ TESTEROO: //apply the vsync setting (should probably try to avoid repeating this) bool vsync = Global.Config.VSyncThrottle || Global.Config.VSync; - presentationPanel.GraphicsControl.SetVsync(vsync); + //presentationPanel.GraphicsControl.SetVsync(vsync); //present and conclude drawing presentationPanel.GraphicsControl.SwapBuffers(); - presentationPanel.GraphicsControl.End(); + + //nope. dont do this. workaround for slow context switching on intel GPUs. just switch to another context when necessary before doing anything + //presentationPanel.GraphicsControl.End(); //cleanup: if(bb != null) bb.Dispose(); diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 5f7c800dc9..98d4dbfda0 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -474,13 +474,14 @@ namespace BizHawk.Client.EmuHawk /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { + //NOTE: this gets called twice sometimes. once by using() in Program.cs and once from winforms internals when the form is closed... + if (GlobalWin.DisplayManager != null) { GlobalWin.DisplayManager.Dispose(); + GlobalWin.DisplayManager = null; } - GlobalWin.DisplayManager = null; - if (disposing && (components != null)) { components.Dispose(); @@ -2520,6 +2521,7 @@ namespace BizHawk.Client.EmuHawk } GlobalWin.OSD.FPS = fps_string; + Text = fps_string; } if (!suppressCaptureRewind && Global.Rewinder.RewindActive) diff --git a/BizHawk.Client.EmuHawk/PresentationPanel.cs b/BizHawk.Client.EmuHawk/PresentationPanel.cs index 6ce908d741..ce83b7f0f3 100644 --- a/BizHawk.Client.EmuHawk/PresentationPanel.cs +++ b/BizHawk.Client.EmuHawk/PresentationPanel.cs @@ -36,8 +36,11 @@ namespace BizHawk.Client.EmuHawk GraphicsControl.MouseClick += (o, e) => GlobalWin.MainForm.MainForm_MouseClick(o, e); } + bool IsDisposed = false; public void Dispose() { + if (IsDisposed) return; + IsDisposed = true; GraphicsControl.Dispose(); } diff --git a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/GraphicsControl_TK.cs b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/GraphicsControl_TK.cs index 32b74697cc..58132ab581 100644 --- a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/GraphicsControl_TK.cs +++ b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/GraphicsControl_TK.cs @@ -41,7 +41,8 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK public void Begin() { - Owner.MakeContextCurrent(GLControl.Context, GLControl.WindowInfo); + if (!GLControl.Context.IsCurrent) + Owner.MakeContextCurrent(GLControl.Context, GLControl.WindowInfo); } public void End() @@ -51,10 +52,9 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK public new void SwapBuffers() { - //IGraphicsContext curr = global::OpenTK.Graphics.GraphicsContext.CurrentContext; - base.MakeCurrent(); + if (!GLControl.Context.IsCurrent) + MakeCurrent(); base.SwapBuffers(); - //Owner.MakeContextCurrent(curr, Owner.NativeWindowsForContexts[curr]); } } } \ No newline at end of file diff --git a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs index 3e8ceb616a..0e4b279e2d 100644 --- a/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs +++ b/Bizware/BizHawk.Bizware.BizwareGL.OpenTK/IGL_TK.cs @@ -506,11 +506,12 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK public void SetViewport(int x, int y, int width, int height) { GL.Viewport(x, y, width, height); + GL.Scissor(x, y, width, height); //hack for mupen[rice]+intel: at least the rice plugin leaves the scissor rectangle scrambled, and we're trying to run it in the main graphics context for intel } public void SetViewport(int width, int height) { - GL.Viewport(0, 0, width, height); + SetViewport(0, 0, width, height); } public void SetViewport(sd.Size size) @@ -521,7 +522,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK public void SetViewport(swf.Control control) { var r = control.ClientRectangle; - GL.Viewport(r.Left, r.Top, r.Width, r.Height); + SetViewport(r.Left, r.Top, r.Width, r.Height); } //------------------