From 0760ca75732a48dde2a8024eb51755571e11d9b5 Mon Sep 17 00:00:00 2001 From: andriyDev Date: Wed, 4 Jun 2025 14:03:25 -0700 Subject: [PATCH] Make `VertexLayoutCache` private. --- crates/bevy_render/src/render_resource/pipeline_specializer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>, >;