Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
org.skia.jetski.TileMode Enum Reference

Public Member Functions

 TileMode (int nativeInt)
 

Public Attributes

 CLAMP =(0)
 
 REPEAT =(1)
 
 MIRROR =(2)
 
 DECAL =(3)
 
final int nativeInt
 

Detailed Description

Definition at line 10 of file TileMode.java.

Constructor & Destructor Documentation

◆ TileMode()

org.skia.jetski.TileMode.TileMode ( int  nativeInt)
inline

Definition at line 34 of file TileMode.java.

34 {
35 this.nativeInt = nativeInt;
36 }

Member Data Documentation

◆ CLAMP

org.skia.jetski.TileMode.CLAMP =(0)

Replicate the edge color if the shader draws outside of its original bounds.

Definition at line 15 of file TileMode.java.

◆ DECAL

org.skia.jetski.TileMode.DECAL =(3)

Only draw within the original domain, return transparent-black everywhere else.

Definition at line 32 of file TileMode.java.

◆ MIRROR

org.skia.jetski.TileMode.MIRROR =(2)

Repeat the shader's image horizontally and vertically, alternating mirror images so that adjacent images always seam.

Definition at line 26 of file TileMode.java.

◆ nativeInt

final int org.skia.jetski.TileMode.nativeInt

Definition at line 37 of file TileMode.java.

◆ REPEAT

org.skia.jetski.TileMode.REPEAT =(1)

Repeat the shader's image horizontally and vertically.

Definition at line 20 of file TileMode.java.


The documentation for this enum was generated from the following file: