Enum VulkanImageAspectFlag

    • Enum Constant Detail

      • VK_IMAGE_ASPECT_COLOR_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_COLOR_BIT
        Specifies the color aspect
      • VK_IMAGE_ASPECT_DEPTH_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_DEPTH_BIT
        Specifies the depth aspect
      • VK_IMAGE_ASPECT_STENCIL_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_STENCIL_BIT
        Specifies the stencil aspect
      • VK_IMAGE_ASPECT_METADATA_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_METADATA_BIT
        Specifies the metadata aspect, used for sparse sparse resource operations
      • VK_IMAGE_ASPECT_PLANE_0_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_PLANE_0_BIT
        Specifies plane 0
      • VK_IMAGE_ASPECT_PLANE_1_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_PLANE_1_BIT
        Specifies plane 1
      • VK_IMAGE_ASPECT_PLANE_2_BIT

        public static final VulkanImageAspectFlag VK_IMAGE_ASPECT_PLANE_2_BIT
        Specifies plane 2
    • Method Detail

      • values

        public static VulkanImageAspectFlag[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (VulkanImageAspectFlag c : VulkanImageAspectFlag.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VulkanImageAspectFlag valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null