Make VertexLayoutCache private.

This commit is contained in:
andriyDev 2025-06-04 14:03:25 -07:00
parent d102ce8a1e
commit 0760ca7573

View File

@ -143,7 +143,7 @@ pub struct SpecializedMeshPipelines<S: SpecializedMeshPipeline> {
vertex_layout_cache: VertexLayoutCache<S>, vertex_layout_cache: VertexLayoutCache<S>,
} }
pub type VertexLayoutCache<S> = HashMap< type VertexLayoutCache<S> = HashMap<
VertexBufferLayout, VertexBufferLayout,
HashMap<<S as SpecializedMeshPipeline>::Key, CachedRenderPipelineId>, HashMap<<S as SpecializedMeshPipeline>::Key, CachedRenderPipelineId>,
>; >;