Enum RenderOp

    Definition

    Namespace:
    ElmSharp
    Assembly:
    ElmSharp.dll

    How the object should be rendered to output.

    [Obsolete("This has been deprecated in API12")]
    public enum RenderOp

    Fields

    Name Description
    Add

    d = d + s

    AddRel

    d = d + s*da

    Blend

    default op: d = d * (1 - sa) + s

    BlendRel

    d = d*(1 - sa) + s*da

    Copy

    d = s

    CopyRel

    d = s*da

    Mask

    d = d*sa

    Mul

    d = d*s

    Sub

    d = d - s

    SubRel

    d = d - s*da

    Tint

    d = ds + d(1 - sa) + s*(1 - da)

    TintRel

    d = d*(1 - sa + s)

    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX