From 94e2fe2a100e2a9aeb21add9cff7df4b57e710e6 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 27 Jul 2017 22:42:13 -0500 Subject: [PATCH] fix displaymanager crashes when rebooting snes9x (and maybe others) while paused (due to unset virtualsize). --- .../DisplayManager/DisplayManager.cs | 10 +++++++++ BizHawk.Client.EmuHawk/MainForm.cs | 21 ++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs index 8ac5604829..b1fa54ec78 100644 --- a/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs +++ b/BizHawk.Client.EmuHawk/DisplayManager/DisplayManager.cs @@ -722,6 +722,16 @@ namespace BizHawk.Client.EmuHawk return filterProgram; } + public void Blank() + { + GL.BeginScene(); + GL.BindRenderTarget(null); + GL.SetClearColor(Color.Black); + GL.Clear(OpenTK.Graphics.OpenGL.ClearBufferMask.ColorBufferBit); + GL.EndScene(); + presentationPanel.GraphicsControl.SwapBuffers(); + } + void UpdateSourceDrawingWork(JobInfo job) { bool vsync = false; diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 13f72ae46f..3e469b7929 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -1970,14 +1970,32 @@ namespace BizHawk.Client.EmuHawk var video = _currentVideoProvider; Size currVideoSize = new Size(video.BufferWidth, video.BufferHeight); Size currVirtualSize = new Size(video.VirtualWidth, video.VirtualHeight); + + bool resizeFramebuffer = false; if (currVideoSize != _lastVideoSize || currVirtualSize != _lastVirtualSize) + resizeFramebuffer = true; + + bool isZero = false; + if (currVideoSize.Width == 0 || currVideoSize.Height == 0 || currVirtualSize.Width == 0 || currVirtualSize.Height == 0) + isZero = true; + + //don't resize if the new size is 0 somehow; we'll wait until we have a sensible size + if(isZero) + resizeFramebuffer = false; + + if(resizeFramebuffer) { _lastVideoSize = currVideoSize; _lastVirtualSize = currVirtualSize; FrameBufferResized(); } - GlobalWin.DisplayManager.UpdateSource(video); + //rendering flakes out egregiously if we have a zero size + //can we fix it later not to? + if(isZero) + GlobalWin.DisplayManager.Blank(); + else + GlobalWin.DisplayManager.UpdateSource(video); } // sends a simulation of a plain alt key keystroke @@ -3627,6 +3645,7 @@ namespace BizHawk.Client.EmuHawk UpdateDumpIcon(); SetMainformMovieInfo(); CurrentlyOpenRomArgs = args; + GlobalWin.DisplayManager.Blank(); Global.Rewinder.Initialize();