// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) 2020 OxyPlot contributors
//
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot.SkiaSharp
{
///
/// Defines a render target for .
///
public enum RenderTarget
{
///
/// Indicates that the renders to a screen.
///
///
/// The render context may try to snap shapes to device pixels and will use sub-pixel text rendering.
///
Screen,
///
/// Indicates that the renders to a pixel graphic.
///
///
/// The render context may try to snap shapes to pixels, but will not use sub-pixel text rendering.
///
PixelGraphic,
///
/// Indicates that the renders to a vector graphic.
///
///
/// The render context will not use any rendering enhancements that are specific to pixel graphics.
///
VectorGraphic
}
}