An SDL wrapper library for .NET.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
522 B

namespace DotSDL.Graphics {
/// <summary>
/// The scaling (filtering) style that should be used for the application.</summary>
public enum ScalingQuality {
/// <summary>
/// Nearest pixel sampling. This should be used if crisp, square pixels are desired.
/// </summary>
Nearest = 0,
/// <summary>
/// Linear filtering. This will filter the surrounding pixels together, resulting
/// in a blurrier look.
/// </summary>
Linear = 1
}
}