ChannelMask

data class ChannelMask(val red: Boolean, val green: Boolean, val blue: Boolean, val alpha: Boolean)(source)

Represents a mask for RGBA color channels.

This data class is used to specify the inclusion or exclusion of the red, green, blue, and alpha channels.

Constructors

Link copied to clipboard
constructor(red: Boolean, green: Boolean, blue: Boolean, alpha: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Indicates whether the alpha channel is included in the mask.

Link copied to clipboard

Indicates whether the blue channel is included in the mask.

Link copied to clipboard

Indicates whether the green channel is included in the mask.

Link copied to clipboard

Indicates whether the red channel is included in the mask.