mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-08 10:10:00 +00:00
Fixed XML documentation warnings.
This commit is contained in:
parent
997f57c1f7
commit
f020cfce33
|
@ -211,7 +211,7 @@ namespace OpenTK
|
||||||
/// <param name="height">The new height of the DisplayDevice.</param>
|
/// <param name="height">The new height of the DisplayDevice.</param>
|
||||||
/// <param name="bitsPerPixel">The new bits per pixel of the DisplayDevice.</param>
|
/// <param name="bitsPerPixel">The new bits per pixel of the DisplayDevice.</param>
|
||||||
/// <param name="refreshRate">The new refresh rate of the DisplayDevice.</param>
|
/// <param name="refreshRate">The new refresh rate of the DisplayDevice.</param>
|
||||||
/// <exception cref="GraphicsModeException">Thrown if the requested resolution could not be set.</exception>
|
/// <exception cref="Graphics.GraphicsModeException">Thrown if the requested resolution could not be set.</exception>
|
||||||
public void ChangeResolution(int width, int height, int bitsPerPixel, float refreshRate)
|
public void ChangeResolution(int width, int height, int bitsPerPixel, float refreshRate)
|
||||||
{
|
{
|
||||||
this.ChangeResolution(this.SelectResolution(width, height, bitsPerPixel, refreshRate));
|
this.ChangeResolution(this.SelectResolution(width, height, bitsPerPixel, refreshRate));
|
||||||
|
@ -222,7 +222,7 @@ namespace OpenTK
|
||||||
#region public void RestoreResolution()
|
#region public void RestoreResolution()
|
||||||
|
|
||||||
/// <summary>Restores the original resolution of the DisplayDevice.</summary>
|
/// <summary>Restores the original resolution of the DisplayDevice.</summary>
|
||||||
/// <exception cref="GraphicsModeException">Thrown if the original resolution could not be restored.</exception>
|
/// <exception cref="Graphics.GraphicsModeException">Thrown if the original resolution could not be restored.</exception>
|
||||||
public void RestoreResolution()
|
public void RestoreResolution()
|
||||||
{
|
{
|
||||||
if (original_resolution != null)
|
if (original_resolution != null)
|
||||||
|
|
Loading…
Reference in a new issue