Enum VulkanImageUsageFlag

    • Enum Constant Detail

      • VK_IMAGE_USAGE_TRANSFER_SRC_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_TRANSFER_SRC_BIT
        Can be used as a source of transfer operations
      • VK_IMAGE_USAGE_TRANSFER_DST_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_TRANSFER_DST_BIT
        Can be used as a destination of transfer operations
      • VK_IMAGE_USAGE_SAMPLED_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_SAMPLED_BIT
        Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)
      • VK_IMAGE_USAGE_STORAGE_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_STORAGE_BIT
        Can be used as storage image (STORAGE_IMAGE descriptor type)
      • VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT
        Can be used as framebuffer color attachment
      • VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT
        Can be used as framebuffer depth/stencil attachment
      • VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT
        Image data not needed outside of rendering
      • VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT

        public static final VulkanImageUsageFlag VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT
        Can be used as framebuffer input attachment
    • Method Detail

      • values

        public static VulkanImageUsageFlag[] 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 (VulkanImageUsageFlag c : VulkanImageUsageFlag.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VulkanImageUsageFlag 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