Enum Class VulkanValidationGPUBased
java.lang.Object
java.lang.Enum<VulkanValidationGPUBased>
com.io7m.jcoronado.layers.khronos_validation.api.VulkanValidationGPUBased
- All Implemented Interfaces:
Serializable, Comparable<VulkanValidationGPUBased>, Constable
Enable/disable parts of GPU validation.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnables processing of debug printf instructions in shaders and sending debug strings to the debug callback.Check for API usage errors at shader execution time.No GPU-based validation. -
Method Summary
Modifier and TypeMethodDescriptionstatic VulkanValidationGPUBasedReturns the enum constant of this class with the specified name.static VulkanValidationGPUBased[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GPU_BASED_NONE
No GPU-based validation. -
GPU_BASED_DEBUG_PRINTF
Enables processing of debug printf instructions in shaders and sending debug strings to the debug callback. -
GPU_BASED_GPU_ASSISTED
Check for API usage errors at shader execution time.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-