diff options
author | 2023-11-11 07:02:01 +0100 | |
---|---|---|
committer | 2023-11-11 07:22:51 +0100 | |
commit | a5125d6fea824df1191777fe3eb53a2f748208b9 (patch) | |
tree | 4c854e4367af13bf02ae0e052a28a95f79437f3a /graphics/src/primitive.rs | |
parent | 75c9afc608a4a9ff44d60a8fb6f4a5819f05bf79 (diff) | |
download | iced-a5125d6fea824df1191777fe3eb53a2f748208b9.tar.gz iced-a5125d6fea824df1191777fe3eb53a2f748208b9.tar.bz2 iced-a5125d6fea824df1191777fe3eb53a2f748208b9.zip |
Refactor texture image filtering
- Support only `Linear` or `Nearest`
- Simplify `Layer` groups
- Move `FilterMethod` to `Image` and `image::Viewer`
Diffstat (limited to 'graphics/src/primitive.rs')
-rw-r--r-- | graphics/src/primitive.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/graphics/src/primitive.rs b/graphics/src/primitive.rs index ce0b734b..4ed512c1 100644 --- a/graphics/src/primitive.rs +++ b/graphics/src/primitive.rs @@ -68,6 +68,8 @@ pub enum Primitive<T> { Image { /// The handle of the image handle: image::Handle, + /// The filter method of the image + filter_method: image::FilterMethod, /// The bounds of the image bounds: Rectangle, }, |