From b6efb0a05690794345d0a6d59ea70bc9ae91793c Mon Sep 17 00:00:00 2001 From: zeromus Date: Sat, 2 Apr 2016 14:33:34 -0500 Subject: [PATCH] fallback to gdi+ in case GuiRenderer can't be created by chosen display method (due to buggy drivers) --- BizHawk.Client.EmuHawk/Program.cs | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.EmuHawk/Program.cs b/BizHawk.Client.EmuHawk/Program.cs index fc77a8dd97..57a24012d3 100644 --- a/BizHawk.Client.EmuHawk/Program.cs +++ b/BizHawk.Client.EmuHawk/Program.cs @@ -106,7 +106,7 @@ namespace BizHawk.Client.EmuHawk Application.SetCompatibleTextRenderingDefault(false); HawkFile.ArchiveHandlerFactory = new SevenZipSharpArchiveHandler(); - + string iniPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "config.ini"); Global.Config = ConfigService.Load(iniPath); Global.Config.ResolveDefaults(); @@ -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(2,0,false); + 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(GlobalWin.IGL_GL); @@ -150,6 +150,27 @@ namespace BizHawk.Client.EmuHawk } } + //try creating a GUI Renderer. If that doesn't succeed. we fallback + //TODO - need a factory for the GUI Renderer, I hate pasting this code + try + { + BizHawk.Bizware.BizwareGL.IGuiRenderer Renderer; + if (GlobalWin.GL is BizHawk.Bizware.BizwareGL.Drivers.OpenTK.IGL_TK) + Renderer = new BizHawk.Bizware.BizwareGL.GuiRenderer(GlobalWin.GL); + else if (GlobalWin.GL is BizHawk.Bizware.BizwareGL.Drivers.SlimDX.IGL_SlimDX9) + Renderer = new BizHawk.Bizware.BizwareGL.GuiRenderer(GlobalWin.GL); + else + Renderer = new BizHawk.Bizware.BizwareGL.Drivers.GdiPlus.GDIPlusGuiRenderer((BizHawk.Bizware.BizwareGL.Drivers.GdiPlus.IGL_GdiPlus)GlobalWin.GL); + } + catch(Exception ex) + { + var e2 = new Exception("Initialization of Display Method failed; falling back to GDI+", ex); + new ExceptionBox(e2).ShowDialog(); + //fallback + Global.Config.DispMethod = Config.EDispMethod.GdiPlus; + goto REDO_DISPMETHOD; + } + //WHY do we have to do this? some intel graphics drivers (ig7icd64.dll 10.18.10.3304 on an unknown chip on win8.1) are calling SetDllDirectory() for the process, which ruins stuff. //The relevant initialization happened just before in "create IGL context". //It isn't clear whether we need the earlier SetDllDirectory(), but I think we do.