Enum Class VulkanDebugUtilsMessageTypeFlag
java.lang.Object
java.lang.Enum<VulkanDebugUtilsMessageTypeFlag>
com.io7m.jcoronado.extensions.ext_debug_utils.api.VulkanDebugUtilsMessageTypeFlag
- All Implemented Interfaces:
VulkanEnumBitmaskType, Serializable, Comparable<VulkanDebugUtilsMessageTypeFlag>, Constable
public enum VulkanDebugUtilsMessageTypeFlag
extends Enum<VulkanDebugUtilsMessageTypeFlag>
implements VulkanEnumBitmaskType
Bitmask specifying which types of events cause a debug messenger callback.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies that some general event has occurred.Specifies a potentially non-optimal use of Vulkan, e.g.Specifies that something has occurred during validation against the Vulkan specification that may indicate invalid behavior. -
Method Summary
Modifier and TypeMethodDescriptionintvalue()Returns the enum constant of this class with the specified name.static VulkanDebugUtilsMessageTypeFlag[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT
Specifies that some general event has occurred. -
VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT
Specifies that something has occurred during validation against the Vulkan specification that may indicate invalid behavior. -
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT
Specifies a potentially non-optimal use of Vulkan, e.g. using vkCmdClearColorImage when setting VkAttachmentDescription::loadOp to VK_ATTACHMENT_LOAD_OP_CLEAR would have worked.
-
-
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
-
value
public int value()- Specified by:
valuein interfaceVulkanEnumBitmaskType- Returns:
- The integer value of the constant
-