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.
  • Enum Constant Details

    • VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT

      public static final VulkanDebugUtilsMessageTypeFlag VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT
      Specifies that some general event has occurred.
    • VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT

      public static final VulkanDebugUtilsMessageTypeFlag 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

      public static final VulkanDebugUtilsMessageTypeFlag 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

      public static VulkanDebugUtilsMessageTypeFlag[] 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

      public static VulkanDebugUtilsMessageTypeFlag valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • value

      public int value()
      Specified by:
      value in interface VulkanEnumBitmaskType
      Returns:
      The integer value of the constant