mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
make texture from sprite pipeline filterable (#3236)
# Objective - Fix #3235 ## Solution - in `sprite_pipeline`, make the texture filterable
This commit is contained in:
parent
c6fec1f0c2
commit
4423a2fa2d
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ impl FromWorld for SpritePipeline {
|
|||
visibility: ShaderStages::FRAGMENT,
|
||||
ty: BindingType::Texture {
|
||||
multisampled: false,
|
||||
sample_type: TextureSampleType::Float { filterable: false },
|
||||
sample_type: TextureSampleType::Float { filterable: true },
|
||||
view_dimension: TextureViewDimension::D2,
|
||||
},
|
||||
count: None,
|
||||
|
|
Loading…
Reference in a new issue