Enum lambda_platform::gfx::command::CommandPoolFeatures
source · pub enum CommandPoolFeatures {
ShortLivedBuffers,
ResetBuffersIndividually,
None,
All,
}
Expand description
Command Pool Flag used to define optimizations/properties of the command pool prior to being built.
Variants§
ShortLivedBuffers
Optimizes the command pool for buffers that are expected to have short lifetimes (I.E. command buffers that continuously need to render data to the screen)
ResetBuffersIndividually
Allows for buffers to be reset individually & manually by the owner of the command pool.
None
Enable no features on the CommandPool.
All
Enable all features for a given CommandPool.