render: suppress clippy::uninit_vec for now

This commit is contained in:
ice_iix 2022-03-06 13:38:52 -08:00
parent d16c24b8fe
commit 9486bf817b
1 changed files with 1 additions and 0 deletions

View File

@ -588,6 +588,7 @@ impl Renderer {
info.count = count;
}
#[allow(clippy::uninit_vec)] // TODO: fix uninitialized memory, use MaybeUninit on Vec below
fn do_pending_textures(&mut self) {
let len = {
let tex = self.textures.read().unwrap();