TaskDebugState#

Fully qualified name: carb::tasking::TaskDebugState

Defined in carb/tasking/TaskingTypes.h

enum class carb::tasking::TaskDebugState#

Debug state of a task.

Values:

enumerator Pending#

The task has unmet pre-requisites and cannot be started yet.

enumerator New#

The task has passed all pre-requisites and is waiting to be assigned to a task thread.

enumerator Running#

The task is actively running on a task thread.

enumerator Waiting#

The task has been started but is currently waiting and is not running on a task thread.

enumerator Finished#

The task has finished or has been canceled.