mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 17:06:12 +02:00
29 lines
724 B
C#
29 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DesktopMagicPluginAPI.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Specifies which render quality is used to display the bitmap images.
|
|
/// </summary>
|
|
public enum RenderQuality
|
|
{
|
|
/// <summary>
|
|
/// Slower then <see cref="Low"/> but produces higher quality output.
|
|
/// </summary>
|
|
High,
|
|
|
|
/// <summary>
|
|
/// Faster then <see cref="High"/> but produces lower quality output.
|
|
/// </summary>
|
|
Low,
|
|
|
|
/// <summary>
|
|
/// Provides performance benefits over <see cref="Low"/>
|
|
/// </summary>
|
|
Performance
|
|
}
|
|
} |