error check against gl context being failed to be set to current

in practice this should only throw when someone has a broken driver
This commit is contained in:
CasualPokePlayer 2023-11-01 08:02:16 -07:00
parent fe2cd58bee
commit ebaafe2658
1 changed files with 8 additions and 2 deletions

View File

@ -167,13 +167,19 @@ namespace BizHawk.Bizware.Graphics
public void MakeContextCurrent()
{
// no-op if already current
_ = SDL_GL_MakeCurrent(_sdlWindow, _glContext);
if (SDL_GL_MakeCurrent(_sdlWindow, _glContext) != 0)
{
throw new($"Failed to set context to current! SDL error: {SDL_GetError()}");
}
}
public static void MakeNoneCurrent()
{
// no-op if nothing is current
_ = SDL_GL_MakeCurrent(IntPtr.Zero, IntPtr.Zero);
if (SDL_GL_MakeCurrent(IntPtr.Zero, IntPtr.Zero) != 0)
{
throw new($"Failed to clear current context! SDL error: {SDL_GetError()}");
}
}
public static IntPtr GetGLProcAddress(string proc)