dont malfunction when compiling retro shaders on systems with bad opengl support. i shouldve been swallowing this error and calling the shader failed instead of throwing an exception. should fix some people with purportedly 'broken' drivers.

This commit is contained in:
zeromus 2014-11-06 19:20:03 +00:00
parent 9f3763409b
commit 480b39ff49
1 changed files with 4 additions and 2 deletions

View File

@ -560,8 +560,10 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK
ErrorCode errcode;
errcode = GL.GetError();
if (errcode != ErrorCode.NoError)
throw new InvalidOperationException("Error compiling shader (from previous operation) " + errcode);
if (errcode != ErrorCode.NoError)
if (required)
throw new InvalidOperationException("Error compiling shader (from previous operation) " + errcode);
else success = false;
GL.ShaderSource(sid, source);