Struct vulkano::command_buffer::StateCacher [] [src]

pub struct StateCacher { /* fields omitted */ }

Keep track of the state of a command buffer builder, so that you don't need to bind objects that were already bound.

Important: Executing a secondary command buffer invalidates the state of a command buffer builder. When you do so, you need to call invalidate().

Methods

impl StateCacher
[src]

[src]

Builds a new StateCacher.

[src]

Resets the cache to its default state. You must call this after executing a secondary command buffer.

[src]

Compares the current state with incoming, and returns a new state that contains the states that differ and that need to be actually set in the command buffer builder.

This function also updates the state cacher. The state cacher assumes that the state changes are going to be performed after this function returns.

[src]

Starts the process of comparing a list of descriptor sets to the descriptor sets currently in cache.

After calling this function, call add for each set one by one. Then call compare in order to get the index of the first set to bind, or None if the sets were identical to what is in cache.

This process also updates the state cacher. The state cacher assumes that the state changes are going to be performed after the compare function returns.

[src]

Checks whether we need to bind a graphics pipeline. Returns StateCacherOutcome::AlreadyOk if the pipeline was already bound earlier, and StateCacherOutcome::NeedChange if you need to actually bind the pipeline.

This function also updates the state cacher. The state cacher assumes that the state changes are going to be performed after this function returns.

[src]

Checks whether we need to bind a compute pipeline. Returns StateCacherOutcome::AlreadyOk if the pipeline was already bound earlier, and StateCacherOutcome::NeedChange if you need to actually bind the pipeline.

This function also updates the state cacher. The state cacher assumes that the state changes are going to be performed after this function returns.

[src]

Starts the process of comparing a list of vertex buffers to the vertex buffers currently in cache.

After calling this function, call add for each set one by one. Then call compare in order to get the range of the vertex buffers to bind, or None if the sets were identical to what is in cache.

This process also updates the state cacher. The state cacher assumes that the state changes are going to be performed after the compare function returns.

[src]

Checks whether we need to bind an index buffer. Returns StateCacherOutcome::AlreadyOk if the index buffer was already bound earlier, and StateCacherOutcome::NeedChange if you need to actually bind the buffer.

This function also updates the state cacher. The state cacher assumes that the state changes are going to be performed after this function returns.