mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 16:05:29 +00:00
Use "IGraphicsContext.ErrorChecking = false|true" inside Begin|End wrappers.
This commit is contained in:
parent
efdaf64476
commit
d07684ca01
|
@ -465,7 +465,7 @@ namespace Bind.Structures
|
|||
f.Body.Add("using (new ErrorHelper(GraphicsContext.CurrentContext))");
|
||||
f.Body.Add("{");
|
||||
if (f.TrimmedName == "Begin")
|
||||
f.Body.Add("GraphicsContext.CurrentContext.EnterBeginRegion();");
|
||||
f.Body.Add("GraphicsContext.CurrentContext.ErrorChecking = false;");
|
||||
f.Body.Add("#endif");
|
||||
}
|
||||
|
||||
|
@ -555,7 +555,7 @@ namespace Bind.Structures
|
|||
{
|
||||
f.Body.Add("#if DEBUG");
|
||||
if (f.TrimmedName == "End")
|
||||
f.Body.Add("GraphicsContext.CurrentContext.ExitBeginRegion();");
|
||||
f.Body.Add("GraphicsContext.CurrentContext.ErrorChecking = true;");
|
||||
f.Body.Add("}");
|
||||
f.Body.Add("#endif");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue