Enum CommandBuffer.CommandBufferState
Available states for a command buffer.
Namespace: Evergine.Common.Graphics
Assembly: Evergine.Common.dll
Syntax
public enum CommandBuffer.CommandBufferState
Fields
Name | Description |
---|---|
Commited | After commit, the command buffer is in a state where it is waiting to be execute by the commandqueue. |
Executable | After End, the command buffer is in a state where it has finished recording commands and can be committed. |
Initial | Before Begin has been called or after the reset method. |
Recording | Between Begin and End. The command buffer is in a state where it can record commands. |