mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-01 12:38:15 +00:00
Fixed a missing call to Debug.Unindent() during context construction.
This commit is contained in:
parent
dcce9fcf73
commit
fef112ab46
|
@ -57,6 +57,8 @@ namespace OpenTK.Graphics
|
|||
else if (window == null) throw new ArgumentNullException("window", "Must point to a valid window.");
|
||||
|
||||
Debug.Print("Creating GraphicsContext.");
|
||||
try
|
||||
{
|
||||
Debug.Indent();
|
||||
Debug.Print("GraphicsMode: {0}", mode);
|
||||
Debug.Print("IWindowInfo: {0}", window);
|
||||
|
@ -90,6 +92,11 @@ namespace OpenTK.Graphics
|
|||
}
|
||||
//(implementation as IGraphicsContextInternal).LoadAll();
|
||||
}
|
||||
finally
|
||||
{
|
||||
Debug.Unindent();
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
Loading…
Reference in a new issue