Enum VulkanQueueFamilyPropertyFlag

    • Enum Constant Detail

      • VK_QUEUE_GRAPHICS_BIT

        public static final VulkanQueueFamilyPropertyFlag VK_QUEUE_GRAPHICS_BIT
        Queues in this queue family support graphics operations.
      • VK_QUEUE_COMPUTE_BIT

        public static final VulkanQueueFamilyPropertyFlag VK_QUEUE_COMPUTE_BIT
        Queues in this queue family support compute operations.
      • VK_QUEUE_TRANSFER_BIT

        public static final VulkanQueueFamilyPropertyFlag VK_QUEUE_TRANSFER_BIT
        Queues in this queue family support transfer operations.
      • VK_QUEUE_SPARSE_BINDING_BIT

        public static final VulkanQueueFamilyPropertyFlag VK_QUEUE_SPARSE_BINDING_BIT
        Queues in this queue family support sparse memory management operations.
      • VK_QUEUE_PROTECTED_BIT

        public static final VulkanQueueFamilyPropertyFlag VK_QUEUE_PROTECTED_BIT
        Queues in this queue family support the VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT bit.
    • Method Detail

      • values

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

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