drawing_api/common/display_list/paint/
texture_sampling.rs

1#[derive(Debug, Clone)]
2pub enum TextureSampling {
3    NearestNeighbor,
4    Linear,
5}