Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Removed unused formats.
Browse files Browse the repository at this point in the history
  • Loading branch information
jessefreeman committed May 21, 2020
1 parent b21c6c5 commit a6b3c0a
Show file tree
Hide file tree
Showing 14 changed files with 1,343 additions and 1,342 deletions.
4 changes: 2 additions & 2 deletions MonoGame/MonoGame.Framework/Graphics/ClearOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public enum ClearOptions
/// <summary>
/// Depth buffer.
/// </summary>
DepthBuffer = 2,
// DepthBuffer = 2,
/// <summary>
/// Stencil buffer.
/// </summary>
Stencil = 4
// Stencil = 4
}
}

54 changes: 27 additions & 27 deletions MonoGame/MonoGame.Framework/Graphics/DeviceLostException.cs
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
using System;
using System.Runtime.Serialization;

namespace Microsoft.Xna.Framework.Graphics
{
[DataContract]
public sealed class DeviceLostException : Exception
{
public DeviceLostException()
: base()
{

}

public DeviceLostException(string message)
: base(message)
{

}

public DeviceLostException(string message, Exception inner)
: base(message, inner)
{

}
}
}
// using System;
// using System.Runtime.Serialization;
//
// namespace Microsoft.Xna.Framework.Graphics
// {
// [DataContract]
// public sealed class DeviceLostException : Exception
// {
// public DeviceLostException()
// : base()
// {
//
// }
//
// public DeviceLostException(string message)
// : base(message)
// {
//
// }
//
// public DeviceLostException(string message, Exception inner)
// : base(message, inner)
// {
//
// }
// }
// }
54 changes: 27 additions & 27 deletions MonoGame/MonoGame.Framework/Graphics/DeviceNotResetException.cs
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
using System;
using System.Runtime.Serialization;

namespace Microsoft.Xna.Framework.Graphics
{
[DataContract]
public sealed class DeviceNotResetException : Exception
{
public DeviceNotResetException()
: base()
{

}

public DeviceNotResetException(string message)
: base(message)
{

}

public DeviceNotResetException(string message, Exception inner)
: base(message, inner)
{

}
}
}
// using System;
// using System.Runtime.Serialization;
//
// namespace Microsoft.Xna.Framework.Graphics
// {
// [DataContract]
// public sealed class DeviceNotResetException : Exception
// {
// public DeviceNotResetException()
// : base()
// {
//
// }
//
// public DeviceNotResetException(string message)
// : base(message)
// {
//
// }
//
// public DeviceNotResetException(string message, Exception inner)
// : base(message, inner)
// {
//
// }
// }
// }

0 comments on commit a6b3c0a

Please sign in to comment.