Skip to content

Commit fe8902c

Browse files
committed
make texture from sprite pipeline filterable (#3236)
# Objective - Fix #3235 ## Solution - in `sprite_pipeline`, make the texture filterable
1 parent ccee658 commit fe8902c

File tree

1 file changed

+1
-1
lines changed
  • pipelined/bevy_sprite2/src/render

1 file changed

+1
-1
lines changed

pipelined/bevy_sprite2/src/render/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl FromWorld for SpritePipeline {
5858
visibility: ShaderStages::FRAGMENT,
5959
ty: BindingType::Texture {
6060
multisampled: false,
61-
sample_type: TextureSampleType::Float { filterable: false },
61+
sample_type: TextureSampleType::Float { filterable: true },
6262
view_dimension: TextureViewDimension::D2,
6363
},
6464
count: None,

0 commit comments

Comments
 (0)