diff --git a/crates/bevy_render/src/render_resource/pipeline_specializer.rs b/crates/bevy_render/src/render_resource/pipeline_specializer.rs index a072da642e..1a84c1e28e 100644 --- a/crates/bevy_render/src/render_resource/pipeline_specializer.rs +++ b/crates/bevy_render/src/render_resource/pipeline_specializer.rs @@ -143,7 +143,7 @@ pub struct SpecializedMeshPipelines { vertex_layout_cache: VertexLayoutCache, } -pub type VertexLayoutCache = HashMap< +type VertexLayoutCache = HashMap< VertexBufferLayout, HashMap<::Key, CachedRenderPipelineId>, >;