Enum VulkanSurfaceTransformFlagKHR

    • Enum Constant Detail

      • VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR
        The image content is presented without being transformed.
      • VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR
        The image content is rotated 90 degrees clockwise.
      • VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR
        The image content is rotated 180 degrees clockwise.
      • VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR
        The image content is rotated 270 degrees clockwise.
      • VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR
        The image content is mirrored horizontally.
      • VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR
        The image content is mirrored horizontally, then rotated 90 degrees clockwise.
      • VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR
        The image content is mirrored horizontally, then rotated 180 degrees clockwise.
      • VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR
        The image content is mirrored horizontally, then rotated 270 degrees clockwise.
      • VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR

        public static final VulkanSurfaceTransformFlagKHR VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR
        The presentation transform is not specified, and is instead determined by platform-specific considerations and mechanisms outside Vulkan.
    • Method Detail

      • values

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

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