Enum VulkanBlendFactor

    • Enum Constant Detail

      • VK_BLEND_FACTOR_ZERO

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ZERO
        VK_BLEND_FACTOR_ZERO
      • VK_BLEND_FACTOR_ONE

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE
        VK_BLEND_FACTOR_ONE
      • VK_BLEND_FACTOR_SRC_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_SRC_COLOR
        VK_BLEND_FACTOR_SRC_COLOR
      • VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR
        VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR
      • VK_BLEND_FACTOR_DST_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_DST_COLOR
        VK_BLEND_FACTOR_DST_COLOR
      • VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR
        VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR
      • VK_BLEND_FACTOR_SRC_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_SRC_ALPHA
        VK_BLEND_FACTOR_SRC_ALPHA
      • VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA
        VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA
      • VK_BLEND_FACTOR_DST_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_DST_ALPHA
        VK_BLEND_FACTOR_DST_ALPHA
      • VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA
        VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA
      • VK_BLEND_FACTOR_CONSTANT_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_CONSTANT_COLOR
        VK_BLEND_FACTOR_CONSTANT_COLOR
      • VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR
        VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR
      • VK_BLEND_FACTOR_CONSTANT_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_CONSTANT_ALPHA
        VK_BLEND_FACTOR_CONSTANT_ALPHA
      • VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA
        VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA
      • VK_BLEND_FACTOR_SRC_ALPHA_SATURATE

        public static final VulkanBlendFactor VK_BLEND_FACTOR_SRC_ALPHA_SATURATE
        VK_BLEND_FACTOR_SRC_ALPHA_SATURATE
      • VK_BLEND_FACTOR_SRC1_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_SRC1_COLOR
        VK_BLEND_FACTOR_SRC1_COLOR
      • VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR
        VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR
      • VK_BLEND_FACTOR_SRC1_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_SRC1_ALPHA
        VK_BLEND_FACTOR_SRC1_ALPHA
      • VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA

        public static final VulkanBlendFactor VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA
        VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA
    • Method Detail

      • values

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

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