diff --git a/src/Graphics/Vertices/IndexBuffer.cs b/src/Graphics/Vertices/IndexBuffer.cs index 2e81ec8..407c98f 100644 --- a/src/Graphics/Vertices/IndexBuffer.cs +++ b/src/Graphics/Vertices/IndexBuffer.cs @@ -296,13 +296,6 @@ namespace Microsoft.Xna.Framework.Graphics } if (sizeInBytes == 4) { - if (graphicsDevice.GraphicsProfile == GraphicsProfile.Reach) - { - throw new NotSupportedException( - "The profile does not support an elementSize of IndexElementSize.ThirtyTwoBits; " + - "use IndexElementSize.SixteenBits or a type that has a size of two bytes." - ); - } return IndexElementSize.ThirtyTwoBits; }