Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Classifies the current state of a surface-treatment consumer.
    ''' The status records ownership only; it does not alter rendering behavior.
    ''' </summary>
    Friend Enum MASSurfaceTreatmentOwnershipStatus
        Unknown = 0
        SurfaceVisualOwned = 1
        DocumentedLegacyPainterSurface = 2
        CurrentVisualCaptureRequired = 3
        BlockedByParallelPath = 4
    End Enum

End Namespace
