SourceEnum TileMode
from skia import TileModeTileMode.CLAMP
TileMode.MIRROR
TileMode.REPEATDescribes 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.