Show / Hide Table of Contents

    Enum RenderOp

    Definition

    Namespace:
    ElmSharp
    Assembly:
    ElmSharp.dll
    API Level:
    5

    How the object should be rendered to output.

    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) + sda

    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-2020 Samsung
    Generated by DocFX