namespace Rive.Components
{
///
/// Controls how often a widget requests a redraw from its panel.
///
public enum DrawOptimizationOptions
{
///
/// The widget will request a redraw every frame.
///
AlwaysDraw = 0,
///
/// The widget will only request redraws when its underlying content changes.
///
DrawWhenChanged = 1
}
}