Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
JMS55 committed Dec 23, 2024
1 parent 44c5f1e commit 5f305a2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/bevy_pbr/src/meshlet/from_mesh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use bevy_render::{
};
use bevy_utils::HashMap;
use bitvec::{order::Lsb0, vec::BitVec, view::BitView};
use core::iter;
use core::{iter, ops::Range};
use half::f16;
use itertools::Itertools;
use meshopt::{
Expand All @@ -18,7 +18,6 @@ use meshopt::{
};
use metis::Graph;
use smallvec::SmallVec;
use std::ops::Range;
use thiserror::Error;

// Aim to have 8 meshlets per group
Expand Down

0 comments on commit 5f305a2

Please sign in to comment.