remove useless glGetError calls

This commit is contained in:
zeromus 2014-01-29 02:17:34 +00:00
parent ed9d8e2e69
commit 42eca164cb
1 changed files with 0 additions and 6 deletions

View File

@ -425,9 +425,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK
void IGL.SetViewport(swf.Control control)
{
ErrorCode errcode;
var r = control.ClientRectangle;
errcode = GL.GetError();
GL.Viewport(r.Left, r.Top, r.Width, r.Height);
}
@ -490,8 +488,6 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK
unsafe void MyBindArrayData(VertexLayout layout, void* pData)
{
ErrorCode errcode;
UnbindVertexAttributes();
//HAMNUTS (continued)
@ -501,9 +497,7 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK
foreach (var kvp in layout.Items)
{
GL.VertexAttribPointer(kvp.Key, kvp.Value.Components, (VertexAttribPointerType)kvp.Value.AttribType, kvp.Value.Normalized, kvp.Value.Stride, new IntPtr(pData) + kvp.Value.Offset);
errcode = GL.GetError();
GL.EnableVertexAttribArray(kvp.Key);
errcode = GL.GetError();
currBindings.Add(kvp.Key);
}
}