mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 16:35:36 +00:00
Added regions to conform to naming conventions.
This commit is contained in:
parent
0c159a0f26
commit
74d9f5a0af
|
@ -436,7 +436,7 @@ namespace OpenTK
|
|||
|
||||
#endif
|
||||
|
||||
#region void Run()
|
||||
#region public void Run()
|
||||
|
||||
/// <summary>
|
||||
/// Enters the game loop of the GameWindow updating and rendering at the maximum possible frequency.
|
||||
|
@ -448,6 +448,10 @@ namespace OpenTK
|
|||
Run(0.0, 0.0);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public void Run(double updateFrequency)
|
||||
|
||||
/// <summary>
|
||||
/// Enters the game loop of the GameWindow updating the specified update frequency, while maintaining the
|
||||
/// maximum possible render frequency.
|
||||
|
@ -459,6 +463,10 @@ namespace OpenTK
|
|||
Run(updateFrequency, 0.0);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public void Run(double updates_per_second, double frames_per_second)
|
||||
|
||||
/// <summary>
|
||||
/// Enters the game loop of the GameWindow updating and rendering at the specified frequency.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in a new issue