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:
parent
9f3763409b
commit
480b39ff49
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue