如何在 vulkano-rs“0.23.0”中创建 AutoCommandBufferBuilder?

How do I create an AutoCommandBufferBuilder in vulkano-rs "0.23.0"?

我正在按照 vulkano-rs 网站中的示例进行操作,在它说要创建 AutoCommandBufferBuilder 的部分,它说要使用 AutoCommandBufferBuilder::new() 来创建它。

但是,在最新版本 vulkano-rs - 0.23.0 - 此方法已丢失。

如果我降级到版本 0.22.0,该方法存在。

那么,如何在最新版本的 vulkano-rs 中创建一个 AutoCommandBuffer

来自vulkano-rs/vulkano#1527

AutoCommandBufferBuilder::new renamed to AutoCommandBufferBuilder::primary/secondary. For primary form there is a new additional 3rd parameter. Use CommandBufferUsage::MultipleSubmit for this parameter to fulfill the same behavior you previously had with old new constructor.