Documentation
¶
Overview ¶
Package blend provides color blending operations.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Mode ¶
type Mode int
Mode represents a blending mode.
const ( // ModeSourceOver is the default alpha blending mode. ModeSourceOver Mode = iota // ModeSourceCopy replaces the destination with the source. ModeSourceCopy // ModeDestinationOver draws destination over source. ModeDestinationOver // ModeDestinationIn keeps destination where source is opaque. ModeDestinationIn // ModeDestinationOut keeps destination where source is transparent. ModeDestinationOut )
Click to show internal directories.
Click to hide internal directories.