[core] Make wgpu_core::command::BakedCommands pub(crate), not pub. (#5526)

This commit is contained in:
Jim Blandy 2024-04-14 00:40:50 -07:00 committed by GitHub
parent f735f57f89
commit 0b7f91c4a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,7 +100,7 @@ impl<A: HalApi> CommandEncoder<A> {
}
}
pub struct BakedCommands<A: HalApi> {
pub(crate) struct BakedCommands<A: HalApi> {
pub(crate) encoder: A::CommandEncoder,
pub(crate) list: Vec<A::CommandBuffer>,
pub(crate) trackers: Tracker<A>,