mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-08-05 02:51:06 +00:00
Removed redundant field initializers.
This commit is contained in:
parent
f240a75208
commit
5abcfedf11
|
@ -49,7 +49,7 @@ namespace OpenTK
|
||||||
#region Static attrs.
|
#region Static attrs.
|
||||||
|
|
||||||
private static int _GraphicsContextCount;
|
private static int _GraphicsContextCount;
|
||||||
private static bool _SharedContextInitialized = false;
|
private static bool _SharedContextInitialized;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ namespace OpenTK
|
||||||
private IGraphicsContext _GraphicsContext;
|
private IGraphicsContext _GraphicsContext;
|
||||||
private IWindowInfo _WindowInfo;
|
private IWindowInfo _WindowInfo;
|
||||||
private GraphicsContextFlags _GraphicsContextFlags;
|
private GraphicsContextFlags _GraphicsContextFlags;
|
||||||
private bool _Initialized = false;
|
private bool _Initialized;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue