Package apple.metal.enums
Class MTLCommandEncoderErrorState
- java.lang.Object
-
- apple.metal.enums.MTLCommandEncoderErrorState
-
public final class MTLCommandEncoderErrorState extends java.lang.ObjectThe error states for a Metal command encoder after command buffer execution. [@constant] MTLCommandEncoderErrorStateUnknown The state of the commands associated with the encoder is unknown (the error information was likely not requested). [@constant] MTLCommandEncoderErrorStateCompleted The commands associated with the encoder were completed. [@constant] MTLCommandEncoderErrorStateAffected The commands associated with the encoder were affected by an error, which may or may not have been caused by the commands themselves, and failed to execute in full. [@constant] MTLCommandEncoderErrorStatePending The commands associated with the encoder never started execution. [@constant] MTLCommandEncoderErrorStateFaulted The commands associated with the encoder caused an error.
-
-
Field Detail
-
Unknown
public static final long Unknown
- See Also:
- Constant Field Values
-
Completed
public static final long Completed
- See Also:
- Constant Field Values
-
Affected
public static final long Affected
- See Also:
- Constant Field Values
-
Pending
public static final long Pending
- See Also:
- Constant Field Values
-
Faulted
public static final long Faulted
- See Also:
- Constant Field Values
-
-