Skip to content

Commit

Permalink
fix references to old types
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsDoot committed Sep 4, 2024
1 parent e86db69 commit c543aca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/bevy_reflect/src/impls/std.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1029,7 +1029,7 @@ macro_rules! impl_reflect_for_hashset {
}

impl_type_path!(::bevy_utils::NoOpHash);
impl_type_path!(::bevy_utils::EntityHash);
impl_type_path!(::bevy_ecs::entity::EntityHash);
impl_type_path!(::bevy_utils::FixedState);

impl_reflect_for_hashset!(::std::collections::HashSet<V,S>);
Expand Down
5 changes: 2 additions & 3 deletions crates/bevy_render/src/batching/gpu_preprocessing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
use bevy_app::{App, Plugin};
use bevy_derive::{Deref, DerefMut};
use bevy_ecs::{
entity::Entity,
entity::{Entity, EntityHashMap},
query::{Has, With},
schedule::IntoSystemConfigs as _,
system::{Query, Res, ResMut, Resource, StaticSystemParam},
world::{FromWorld, World},
};
use bevy_encase_derive::ShaderType;
use bevy_utils::EntityHashMap;
use bytemuck::{Pod, Zeroable};
use nonmax::NonMaxU32;
use smallvec::smallvec;
Expand Down Expand Up @@ -99,7 +98,7 @@ where
/// corresponds to each instance.
///
/// This is keyed off each view. Each view has a separate buffer.
pub work_item_buffers: EntityHashMap<Entity, PreprocessWorkItemBuffer>,
pub work_item_buffers: EntityHashMap<PreprocessWorkItemBuffer>,

/// The uniform data inputs for the current frame.
///
Expand Down

0 comments on commit c543aca

Please sign in to comment.