enum const class vaseGraphics::Composite

sys::Obj
  sys::Enum
    vaseGraphics::Composite

@Js
@Serializable { simple=true }

Composite mode combines a shape, text, or an image being rendered with the colors that have already been rendered according to pre-defined rules.

clear

const static Composite clear := ...

copy

const static Composite copy := ...

dstAtop

const static Composite dstAtop := ...

dstIn

const static Composite dstIn := ...

dstOut

const static Composite dstOut := ...

dstOver

const static Composite dstOver := ...

fromStr

static new fromStr(Str name, Bool checked := true)

Return the Composite instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.

lighter

const static Composite lighter := ...

srcAtop

const static Composite srcAtop := ...

srcIn

const static Composite srcIn := ...

srcOut

const static Composite srcOut := ...

srcOver

const static Composite srcOver := ...

vals

const static List<Composite> vals := ...

List of Composite values indexed by ordinal

xor

const static Composite xor := ...