enum Filter : Enum<Filter>
| Member | Description |
|---|---|
NEAREST |
Nearest-neighbor filtering.
This mode takes the value of the pixel closest to the address being sampled. It does not perform any interpolation, resulting in a more pixelated appearance.
|
LINEAR |
Linear filtering.
This mode linearly interpolates the values of the pixels closest to the address being sampled. It provides a smoother appearance than nearest-neighbor filtering.
|
filter
:
Int
[Get] |
Signature
val filter: Int |