mirror of
https://github.com/Stone-Red-Code/DesktopMagic.git
synced 2026-09-04 23:39:29 +02:00
- Rename src to _src
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user