Skip to content

Commit

Permalink
Add twilio.rs (forgot to add it before)
Browse files Browse the repository at this point in the history
  • Loading branch information
CaspianA1 committed Dec 10, 2024
1 parent c0812db commit 1fcce6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dashboard_defs/twilio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ impl TextureSubpoolManager {
if !*is_used {
// println!("(request) doing re-request, and setting {texture:?} to used");
*is_used = true;
texture_pool.remake_texture(texture_creation_info, texture)?;
texture_pool.remake_texture(texture_creation_info, texture, None)?;
return Ok(texture.clone());
}
}
Expand Down Expand Up @@ -81,7 +81,7 @@ impl TextureSubpoolManager {
// println!("(re-request) checking {incoming_texture:?} for being used before");
assert!(is_used);
// println!("(re-request) doing re-request for {incoming_texture:?}");
texture_pool.remake_texture(texture_creation_info, incoming_texture)
texture_pool.remake_texture(texture_creation_info, incoming_texture, None)
}
else {
panic!("Slot was not previously allocated in subpool!");
Expand Down

0 comments on commit 1fcce6b

Please sign in to comment.