S or /

SourceEnum TileMode

from skia import TileMode
TileMode.CLAMP
TileMode.MIRROR
TileMode.REPEAT

Describes how a shader draws outside of its original bounds: TileMode.CLAMP replicates the edge color, TileMode.REPEAT repeats the image horizontally and vertically, TileMode.MIRROR repeats the image with alternating mirror images so adjacent images always seam, and TileMode.Decal draws only within the original domain, returning transparent-black everywhere else.

Variants§

TileMode.CLAMP Enum value§

TileMode.MIRROR Enum value§

TileMode.REPEAT Enum value§