Enum Class VulkanSurfaceTransformFlagKHR
java.lang.Object
java.lang.Enum<VulkanSurfaceTransformFlagKHR>
com.io7m.jcoronado.extensions.khr_surface.api.VulkanSurfaceTransformFlagKHR
- All Implemented Interfaces:
VulkanEnumBitmaskType,Serializable,Comparable<VulkanSurfaceTransformFlagKHR>,Constable
public enum VulkanSurfaceTransformFlagKHR
extends Enum<VulkanSurfaceTransformFlagKHR>
implements VulkanEnumBitmaskType
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe image content is mirrored horizontally.The image content is mirrored horizontally, then rotated 180 degrees clockwise.The image content is mirrored horizontally, then rotated 270 degrees clockwise.The image content is mirrored horizontally, then rotated 90 degrees clockwise.The image content is presented without being transformed.The presentation transform is not specified, and is instead determined by platform-specific considerations and mechanisms outside Vulkan.The image content is rotated 180 degrees clockwise.The image content is rotated 270 degrees clockwise.The image content is rotated 90 degrees clockwise. -
Method Summary
Modifier and TypeMethodDescriptionintvalue()Returns the enum constant of this class with the specified name.static VulkanSurfaceTransformFlagKHR[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR
The image content is presented without being transformed. -
VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR
The image content is rotated 90 degrees clockwise. -
VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR
The image content is rotated 180 degrees clockwise. -
VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR
The image content is rotated 270 degrees clockwise. -
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_KHRThe 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_KHRThe 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_KHRThe image content is mirrored horizontally, then rotated 270 degrees clockwise. -
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 Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
value
public int value()- Specified by:
valuein interfaceVulkanEnumBitmaskType- Returns:
- The integer value of the constant
-