using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DesktopMagicPluginAPI.Drawing
{
///
/// Specifies which render quality is used to display the bitmap images.
///
public enum RenderQuality
{
///
/// Slower then but produces higher quality output.
///
High,
///
/// Faster then but produces lower quality output.
///
Low,
///
/// Provides performance benefits over
///
Performance
}
}