Fixed texture loader

master
Mark 2024-01-22 08:49:42 -08:00
parent d09158a324
commit 8ae584b87e
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
3 changed files with 19 additions and 22 deletions

View File

@ -303,6 +303,11 @@ impl Content {
return &self.sprite_atlas.atlas_list;
}
/// Get sprite atlas metadata
pub fn get_atlas(&self) -> &SpriteAtlas {
return &self.sprite_atlas;
}
/// Get a texture by its index
pub fn get_image(&self, idx: NonZeroU32) -> &SpriteAtlasImage {
&self.sprite_atlas.get_by_idx(idx)

View File

@ -76,6 +76,11 @@ impl SpriteAtlas {
self.path_map.get(path).map(|x| *x)
}
/// Iterate all images in this atlas
pub fn iter_images(&self) -> impl Iterator<Item = &SpriteAtlasImage> {
self.index.iter()
}
/// Get the number of images in this atlas
pub fn len(&self) -> u32 {
self.index.len() as u32

View File

@ -109,18 +109,8 @@ impl TextureArray {
let mut image_locations = AtlasArray::zeroed();
println!("sending to gpu");
for sprite in &ct.sprites {
for section in sprite.iter_sections() {
for idx in &section.frames {
// Some atlas entries may be written twice here,
// but that's not really a problem. They're all the same!
//
// This happens rarely---only when two different sections
// use the same frame.
let idx = NonZeroU32::new(*idx);
if idx.is_some() {
let image = ct.get_image(idx.unwrap());
image_locations.data[idx.unwrap().get() as usize] = AtlasImageLocation {
for image in ct.get_atlas().iter_images() {
image_locations.data[image.idx.get() as usize] = AtlasImageLocation {
xpos: image.x,
ypos: image.y,
width: image.w,
@ -129,9 +119,6 @@ impl TextureArray {
_padding: Default::default(),
};
}
}
}
}
let sampler = device.create_sampler(&wgpu::SamplerDescriptor {
address_mode_u: wgpu::AddressMode::ClampToEdge,