Show More
Commit Description:
Add timers for Simulation and various engines...
Commit Description:
Add timers for Simulation and various engines Starting to add additional timers for different stages of the process of updating in order to get more insight into what is slowing it down. The update takes 9ms, which is much longer than it used to. Engine-specific timers are coming later.
File last commit:
Show/Diff file:
Action:
FNA/src/Graphics/DisplayMode.cs
117 lines | 2.0 KiB | text/x-csharp | CSharpLexer
#region License
/* FNA - XNA4 Reimplementation for Desktop Platforms
* Copyright 2009-2020 Ethan Lee and the MonoGame Team
*
* Released under the Microsoft Public License.
* See LICENSE for details.
*/
/* Derived from code by the Mono.Xna Team (Copyright 2006).
* Released under the MIT License. See monoxna.LICENSE for details.
*/
#endregion License
#region Using Statements
using System;
using System.Globalization;
#endregion
namespace Microsoft.Xna.Framework.Graphics
{
[Serializable]
public class DisplayMode
{
#region Public Properties
public float AspectRatio
{
get
{
return (float) Width / (float) Height;
}
}
public SurfaceFormat Format
{
get;
private set;
}
public int Height
{
get;
private set;
}
public int Width
{
get;
private set;
}
public Rectangle TitleSafeArea
{
get
{
return new Rectangle(0, 0, Width, Height);
}
}
#endregion
#region Internal Constructor
internal DisplayMode(int width, int height, SurfaceFormat format)
{
Width = width;
Height = height;
Format = format;
}
#endregion
#region Public Static Operators and Override Methods
public static bool operator !=(DisplayMode left, DisplayMode right)
{
return !(left == right);
}
public static bool operator ==(DisplayMode left, DisplayMode right)
{
if (ReferenceEquals(left, right)) // Same object or both are null
{
return true;
}
if (ReferenceEquals(left, null) || ReferenceEquals(right, null))
{
return false;
}
return ( (left.Format == right.Format) &&
(left.Height == right.Height) &&
(left.Width == right.Width) );
}
public override bool Equals(object obj)
{
return (obj as DisplayMode) == this;
}
public override int GetHashCode()
{
return (Width.GetHashCode() ^ Height.GetHashCode() ^ Format.GetHashCode());
}
public override string ToString()
{
return (
"{{Width:" + Width.ToString() +
" Height:" + Height.ToString() +
" Format:" + Format.ToString() +
"}}"
);
}
#endregion
}
}