{-# language CPP #-}
-- No documentation found for Chapter "FormatFeatureFlags2"
module Vulkan.Core13.Enums.FormatFeatureFlags2  ( FormatFeatureFlags2
                                                , FormatFeatureFlagBits2( FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_IMAGE_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT
                                                                        , FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT
                                                                        , FORMAT_FEATURE_2_VERTEX_BUFFER_BIT
                                                                        , FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT
                                                                        , FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT
                                                                        , FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT
                                                                        , FORMAT_FEATURE_2_BLIT_SRC_BIT
                                                                        , FORMAT_FEATURE_2_BLIT_DST_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT
                                                                        , FORMAT_FEATURE_2_TRANSFER_SRC_BIT
                                                                        , FORMAT_FEATURE_2_TRANSFER_DST_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT
                                                                        , FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT
                                                                        , FORMAT_FEATURE_2_DISJOINT_BIT
                                                                        , FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT
                                                                        , FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT
                                                                        , FORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR
                                                                        , FORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR
                                                                        , FORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR
                                                                        , FORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR
                                                                        , FORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR
                                                                        , FORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM
                                                                        , FORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV
                                                                        , FORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV
                                                                        , FORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV
                                                                        , FORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM
                                                                        , FORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM
                                                                        , FORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM
                                                                        , FORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM
                                                                        , FORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM
                                                                        , FORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM
                                                                        , FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV
                                                                        , FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV
                                                                        , FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR
                                                                        , FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT
                                                                        , FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR
                                                                        , FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT
                                                                        , FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT
                                                                        , ..
                                                                        )
                                                ) where

import Data.Bits (Bits)
import Data.Bits (FiniteBits)
import Vulkan.Internal.Utils (enumReadPrec)
import Vulkan.Internal.Utils (enumShowsPrec)
import GHC.Show (showString)
import Numeric (showHex)
import Vulkan.Zero (Zero)
import Foreign.Storable (Storable)
import GHC.Read (Read(readPrec))
import GHC.Show (Show(showsPrec))
import Vulkan.Core10.FundamentalTypes (Flags64)
type FormatFeatureFlags2 = FormatFeatureFlagBits2

-- | VkFormatFeatureFlagBits2 - Bitmask specifying features supported by a
-- buffer
--
-- = Description
--
-- The following bits /may/ be set in @linearTilingFeatures@ and
-- @optimalTilingFeatures@, specifying that the features are supported by
-- <VkImage.html images> or <VkImageView.html image views> or
-- <VkSamplerYcbcrConversion.html sampler Y′CBCR conversion objects>
-- created with the queried
-- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.getPhysicalDeviceFormatProperties2'::@format@:
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT' specifies that an image view
--     /can/ be
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-sampledimage sampled from>.
--
-- -   'FORMAT_FEATURE_2_STORAGE_IMAGE_BIT' specifies that an image view
--     /can/ be used as a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storageimage storage image>.
--
-- -   'FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT' specifies that an image
--     view /can/ be used as storage image that supports atomic operations.
--
-- -   'FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT' specifies that an image view
--     /can/ be used as a framebuffer color attachment and as an input
--     attachment.
--
-- -   'FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT' specifies that an
--     image view /can/ be used as a framebuffer color attachment that
--     supports blending.
--
-- -   'FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT' specifies that an
--     image view /can/ be used as a framebuffer depth\/stencil attachment
--     and as an input attachment.
--
-- -   'FORMAT_FEATURE_2_BLIT_SRC_BIT' specifies that an image /can/ be
--     used as the @srcImage@ for
--     'Vulkan.Core13.Promoted_From_VK_KHR_copy_commands2.cmdBlitImage2'
--     and 'Vulkan.Core10.CommandBufferBuilding.cmdBlitImage'.
--
-- -   'FORMAT_FEATURE_2_BLIT_DST_BIT' specifies that an image /can/ be
--     used as the @dstImage@ for
--     'Vulkan.Core13.Promoted_From_VK_KHR_copy_commands2.cmdBlitImage2'
--     and 'Vulkan.Core10.CommandBufferBuilding.cmdBlitImage'.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT' specifies that if
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT' is also set, an image view
--     /can/ be used with a sampler that has either of @magFilter@ or
--     @minFilter@ set to 'Vulkan.Core10.Enums.Filter.FILTER_LINEAR', or
--     @mipmapMode@ set to
--     'Vulkan.Core10.Enums.SamplerMipmapMode.SAMPLER_MIPMAP_MODE_LINEAR'.
--     If 'FORMAT_FEATURE_2_BLIT_SRC_BIT' is also set, an image can be used
--     as the @srcImage@ for
--     'Vulkan.Core13.Promoted_From_VK_KHR_copy_commands2.cmdBlitImage2'
--     and 'Vulkan.Core10.CommandBufferBuilding.cmdBlitImage' with a
--     @filter@ of 'Vulkan.Core10.Enums.Filter.FILTER_LINEAR'. This bit
--     /must/ only be exposed for formats that also support the
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT' or
--     'FORMAT_FEATURE_2_BLIT_SRC_BIT'.
--
--     If the format being queried is a depth\/stencil format, this bit
--     only specifies that the depth aspect (not the stencil aspect) of an
--     image of this format supports linear filtering. Where depth
--     comparison is supported it /may/ be linear filtered whether this bit
--     is present or not, but where this bit is not present the filtered
--     value /may/ be computed in an implementation-dependent manner which
--     differs from the normal rules of linear filtering. The resulting
--     value /must/ be in the range [0,1] and /should/ be proportional to,
--     or a weighted average of, the number of comparison passes or
--     failures.
--
-- -   'FORMAT_FEATURE_2_TRANSFER_SRC_BIT' specifies that an image /can/ be
--     used as a source image for
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#copies copy commands>.
--
-- -   'FORMAT_FEATURE_2_TRANSFER_DST_BIT' specifies that an image /can/ be
--     used as a destination image for
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#copies copy commands>
--     and
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#clears clear commands>.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT' specifies
--     'Vulkan.Core10.Handles.Image' /can/ be used as a sampled image with
--     a min or max
--     'Vulkan.Core12.Enums.SamplerReductionMode.SamplerReductionMode'.
--     This bit /must/ only be exposed for formats that also support the
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT'.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT' specifies that
--     'Vulkan.Core10.Handles.Image' /can/ be used with a sampler that has
--     either of @magFilter@ or @minFilter@ set to
--     'Vulkan.Core10.Enums.Filter.FILTER_CUBIC_EXT', or be the source
--     image for a blit with @filter@ set to
--     'Vulkan.Core10.Enums.Filter.FILTER_CUBIC_EXT'. This bit /must/ only
--     be exposed for formats that also support the
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT'. If the format being queried is
--     a depth\/stencil format, this only specifies that the depth aspect
--     is cubic filterable.
--
-- -   'FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT' specifies that an
--     application /can/ define a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#samplers-YCbCr-conversion sampler Y′CBCR conversion>
--     using this format as a source, and that an image of this format
--     /can/ be used with a
--     'Vulkan.Core11.Promoted_From_VK_KHR_sampler_ycbcr_conversion.SamplerYcbcrConversionCreateInfo'
--     @xChromaOffset@ and\/or @yChromaOffset@ of
--     'Vulkan.Core11.Enums.ChromaLocation.CHROMA_LOCATION_MIDPOINT'.
--     Otherwise both @xChromaOffset@ and @yChromaOffset@ /must/ be
--     'Vulkan.Core11.Enums.ChromaLocation.CHROMA_LOCATION_COSITED_EVEN'.
--     If a format does not incorporate chroma downsampling (it is not a
--     “422” or “420” format) but the implementation supports sampler
--     Y′CBCR conversion for this format, the implementation /must/ set
--     'FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT'.
--
-- -   'FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT' specifies that an
--     application /can/ define a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#samplers-YCbCr-conversion sampler Y′CBCR conversion>
--     using this format as a source, and that an image of this format
--     /can/ be used with a
--     'Vulkan.Core11.Promoted_From_VK_KHR_sampler_ycbcr_conversion.SamplerYcbcrConversionCreateInfo'
--     @xChromaOffset@ and\/or @yChromaOffset@ of
--     'Vulkan.Core11.Enums.ChromaLocation.CHROMA_LOCATION_COSITED_EVEN'.
--     Otherwise both @xChromaOffset@ and @yChromaOffset@ /must/ be
--     'Vulkan.Core11.Enums.ChromaLocation.CHROMA_LOCATION_MIDPOINT'. If
--     neither 'FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT' nor
--     'FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT' is set, the
--     application /must/ not define a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#samplers-YCbCr-conversion sampler Y′CBCR conversion>
--     using this format as a source.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT'
--     specifies that an application /can/ define a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#samplers-YCbCr-conversion sampler Y′CBCR conversion>
--     using this format as a source with @chromaFilter@ set to
--     'Vulkan.Core10.Enums.Filter.FILTER_LINEAR'.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT'
--     specifies that the format can have different chroma, min, and mag
--     filters.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT'
--     specifies that reconstruction is explicit, as described in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#textures-chroma-reconstruction>.
--     If this bit is not present, reconstruction is implicit by default.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT'
--     specifies that reconstruction /can/ be forcibly made explicit by
--     setting
--     'Vulkan.Core11.Promoted_From_VK_KHR_sampler_ycbcr_conversion.SamplerYcbcrConversionCreateInfo'::@forceExplicitReconstruction@
--     to 'Vulkan.Core10.FundamentalTypes.TRUE'. If the format being
--     queried supports
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT'
--     it /must/ also support
--     'FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT'.
--
-- -   'FORMAT_FEATURE_2_DISJOINT_BIT' specifies that a multi-planar image
--     /can/ have the
--     'Vulkan.Core10.Enums.ImageCreateFlagBits.IMAGE_CREATE_DISJOINT_BIT'
--     set during image creation. An implementation /must/ not set
--     'FORMAT_FEATURE_2_DISJOINT_BIT' for /single-plane formats/.
--
-- -   'FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT' specifies that an
--     image view /can/ be used as a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#renderpass-fragmentdensitymapattachment fragment density map attachment>.
--
-- -   'FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR'
--     specifies that an image view /can/ be used as a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#primsrast-fragment-shading-rate-attachment fragment shading rate attachment>.
--     An implementation /must/ not set this feature for formats with a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#formats-numericformat numeric format>
--     other than @UINT@, or set it as a buffer feature.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_DECODE_OUTPUT_BIT_KHR>
--     specifies that an image view with this format /can/ be used as a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#decode-output-picture decode output picture>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-decode-operations video decode operations>.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_DECODE_DPB_BIT_KHR>
--     specifies that an image view with this format /can/ be used as an
--     output
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#reconstructed-picture reconstructed picture>
--     or an input
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#reference-picture reference picture>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-decode-operations video decode operations>.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_ENCODE_INPUT_BIT_KHR>
--     specifies that an image view with this format /can/ be used as an
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#encode-input-picture encode input picture>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-encode-operations video encode operations>.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_ENCODE_DPB_BIT_KHR>
--     specifies that an image view with this format /can/ be used as an
--     output
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#reconstructed-picture reconstructed picture>
--     or an input
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#reference-picture reference picture>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-encode-operations video encode operations>.
--
-- -   'FORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR' specifies
--     that the depth aspect of this format can be copied using a queue
--     family that supports
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_COMPUTE_BIT' but does not
--     support 'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_GRAPHICS_BIT'.
--
-- -   'FORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR' specifies
--     that the depth aspect of this format can be copied using a queue
--     family that supports
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_TRANSFER_BIT' but does not
--     support 'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_GRAPHICS_BIT' or
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_COMPUTE_BIT'.
--
-- -   'FORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR' specifies
--     that the stencil aspect of this format can be copied using a queue
--     family that supports
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_COMPUTE_BIT' but does not
--     support 'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_GRAPHICS_BIT'.
--
-- -   'FORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR' specifies
--     that the stencil aspect of this format can be copied using a queue
--     family that supports
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_TRANSFER_BIT' but does not
--     support 'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_GRAPHICS_BIT' or
--     'Vulkan.Core10.Enums.QueueFlagBits.QUEUE_COMPUTE_BIT'.
--
--     Specific
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-profiles video profiles>
--     /may/ have additional restrictions on the format and other image
--     creation parameters corresponding to image views used by video
--     coding operations that /can/ be enumerated using the
--     <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#vkGetPhysicalDeviceVideoFormatPropertiesKHR vkGetPhysicalDeviceVideoFormatPropertiesKHR>
--     command.
--
-- -   'FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT' specifies that
--     image views or buffer views created with this format /can/ be used
--     as
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storageimage storage images>
--     or
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storagetexelbuffer storage texel buffers>
--     respectively for read operations without specifying a format.
--
-- -   'FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT' specifies that
--     image views or buffer views created with this format /can/ be used
--     as
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storageimage storage images>
--     or
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storagetexelbuffer storage texel buffers>
--     respectively for write operations without specifying a format.
--
-- -   'FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT' specifies that
--     image views created with this format /can/ be used for depth
--     comparison performed by @OpImage*Dref*@ instructions.
--
-- -   'FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV' specifies that the
--     format is supported as a renderable
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#glossary-linear-color-attachment Linear Color Attachment>.
--     This bit will be set for renderable color formats in the
--     @linearTilingFeatures@. This /must/ not be set in the
--     @optimalTilingFeatures@ or @bufferFeatures@ members.
--
-- -   'FORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM' specifies that image views
--     created with this format /can/ be used as the
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-weightimage weight image>
--     input to
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#textures-weightimage weight image sampling>
--     operations.
--
-- -   'FORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM' specifies that
--     image views created with this format /can/ be sampled in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#textures-weightimage weight image sampling>
--     operations.
--
-- -   'FORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM' specifies that image
--     views created with this format /can/ be used in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#textures-blockmatch block matching>
--     operations.
--
-- -   'FORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM' specifies that image
--     views created with this format /can/ be sampled in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#textures-boxfilter box filter sampling>
--     operations.
--
-- -   'FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT' specifies that an image
--     /can/ be created with the
--     'Vulkan.Core10.Enums.ImageUsageFlagBits.IMAGE_USAGE_HOST_TRANSFER_BIT'
--     usage flag set.
--
-- -   'FORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR' specifies that a
--     'Vulkan.Core10.Handles.Image' /can/ be used as destination for
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#indirect-copies indirect copies>.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_ENCODE_QUANTIZATION_DELTA_MAP_BIT_KHR>
--     specifies that an image view with this format /can/ be used as a
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#encode-quantization-delta-map quantization delta map>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-encode-operations video encode operations>.
--
-- -   <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VkFormatFeatureFlagBits2KHR VK_FORMAT_FEATURE_2_VIDEO_ENCODE_EMPHASIS_MAP_BIT_KHR>
--     specifies that an image view with this format /can/ be used as an
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#encode-emphasis-map emphasis map>
--     in
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-encode-operations video encode operations>.
--
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#encode-quantization-map Video encode quantization maps>
--     have additional restrictions specific to the
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#video-profiles video profile>
--     they are used with that /can/ be enumerated using the
--     <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#vkGetPhysicalDeviceVideoFormatPropertiesKHR vkGetPhysicalDeviceVideoFormatPropertiesKHR>
--     command.
--
-- The following bits /may/ be set in @bufferFeatures@, specifying that the
-- features are supported by <VkBuffer.html buffers> or
-- <VkBufferView.html buffer views> created with the queried
-- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.getPhysicalDeviceFormatProperties2'::@format@:
--
-- -   'FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT' specifies that the
--     format /can/ be used to create a buffer view that /can/ be bound to
--     a
--     'Vulkan.Core10.Enums.DescriptorType.DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER'
--     descriptor.
--
-- -   'FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT' specifies that the
--     format /can/ be used to create a buffer view that /can/ be bound to
--     a
--     'Vulkan.Core10.Enums.DescriptorType.DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER'
--     descriptor.
--
-- -   'FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT' specifies that
--     atomic operations are supported on
--     'Vulkan.Core10.Enums.DescriptorType.DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER'
--     with this format.
--
-- -   'FORMAT_FEATURE_2_VERTEX_BUFFER_BIT' specifies that the format /can/
--     be used as a vertex attribute format
--     ('Vulkan.Core10.GraphicsPipeline.VertexInputAttributeDescription'::@format@).
--
-- -   'FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR'
--     specifies that the format /can/ be used as the vertex format when
--     creating an
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#acceleration-structure acceleration structure>
--     ('Vulkan.Extensions.VK_KHR_acceleration_structure.AccelerationStructureGeometryTrianglesDataKHR'::@vertexFormat@).
--     This format /can/ also be used as the vertex format in host memory
--     when doing
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#host-acceleration-structure host acceleration structure>
--     builds.
--
-- -   'FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV'
--     specifies that the format /can/ be used as the radius format when
--     creating an
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#acceleration-structure acceleration structure>
--     ('Vulkan.Extensions.VK_NV_ray_tracing_linear_swept_spheres.AccelerationStructureGeometryLinearSweptSpheresDataNV'::@radiusFormat@
--     or
--     'Vulkan.Extensions.VK_NV_ray_tracing_linear_swept_spheres.AccelerationStructureGeometrySpheresDataNV'::@radiusFormat@).
--     This format /can/ also be used as the radius format in host memory
--     when doing
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#host-acceleration-structure host acceleration structure>
--     builds.
--
-- -   'FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT' specifies that
--     buffer views created with this format /can/ be used as
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storagetexelbuffer storage texel buffers>
--     for read operations without specifying a format.
--
-- -   'FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT' specifies that
--     buffer views created with this format /can/ be used as
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#descriptorsets-storagetexelbuffer storage texel buffers>
--     for write operations without specifying a format.
--
-- -   'FORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV' specifies that an image
--     view with this format /can/ be used as an input or reference to
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#opticalflow-operations optical flow operations>
--
-- -   'FORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV' specifies that an
--     image view with this format /can/ be used as a flow vector map
--     (either as hint, output or global flow) for
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#opticalflow-operations optical flow operations>
--
-- -   'FORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV' specifies that an image
--     view with this format /can/ be used as an output cost map for
--     <https://registry.khronos.org/vulkan/specs/latest/html/vkspec.html#opticalflow-operations optical flow operations>
--
-- = See Also
--
-- <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_KHR_format_feature_flags2 VK_KHR_format_feature_flags2>,
-- <https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#VK_VERSION_1_3 VK_VERSION_1_3>,
-- 'FormatFeatureFlags2'
newtype FormatFeatureFlagBits2 = FormatFeatureFlagBits2 Flags64
  deriving newtype (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
(FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> Eq FormatFeatureFlagBits2
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
== :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
$c/= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
/= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
Eq, Eq FormatFeatureFlagBits2
Eq FormatFeatureFlagBits2 =>
(FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Ordering)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2
    -> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2
    -> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> Ord FormatFeatureFlagBits2
FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Ordering
FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
forall a.
Eq a =>
(a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
$ccompare :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Ordering
compare :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Ordering
$c< :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
< :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
$c<= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
<= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
$c> :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
> :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
$c>= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
>= :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> Bool
$cmax :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
max :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
$cmin :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
min :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
Ord, Ptr FormatFeatureFlagBits2 -> IO FormatFeatureFlagBits2
Ptr FormatFeatureFlagBits2 -> Int -> IO FormatFeatureFlagBits2
Ptr FormatFeatureFlagBits2
-> Int -> FormatFeatureFlagBits2 -> IO ()
Ptr FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> IO ()
FormatFeatureFlagBits2 -> Int
(FormatFeatureFlagBits2 -> Int)
-> (FormatFeatureFlagBits2 -> Int)
-> (Ptr FormatFeatureFlagBits2 -> Int -> IO FormatFeatureFlagBits2)
-> (Ptr FormatFeatureFlagBits2
    -> Int -> FormatFeatureFlagBits2 -> IO ())
-> (forall b. Ptr b -> Int -> IO FormatFeatureFlagBits2)
-> (forall b. Ptr b -> Int -> FormatFeatureFlagBits2 -> IO ())
-> (Ptr FormatFeatureFlagBits2 -> IO FormatFeatureFlagBits2)
-> (Ptr FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> IO ())
-> Storable FormatFeatureFlagBits2
forall b. Ptr b -> Int -> IO FormatFeatureFlagBits2
forall b. Ptr b -> Int -> FormatFeatureFlagBits2 -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
$csizeOf :: FormatFeatureFlagBits2 -> Int
sizeOf :: FormatFeatureFlagBits2 -> Int
$calignment :: FormatFeatureFlagBits2 -> Int
alignment :: FormatFeatureFlagBits2 -> Int
$cpeekElemOff :: Ptr FormatFeatureFlagBits2 -> Int -> IO FormatFeatureFlagBits2
peekElemOff :: Ptr FormatFeatureFlagBits2 -> Int -> IO FormatFeatureFlagBits2
$cpokeElemOff :: Ptr FormatFeatureFlagBits2
-> Int -> FormatFeatureFlagBits2 -> IO ()
pokeElemOff :: Ptr FormatFeatureFlagBits2
-> Int -> FormatFeatureFlagBits2 -> IO ()
$cpeekByteOff :: forall b. Ptr b -> Int -> IO FormatFeatureFlagBits2
peekByteOff :: forall b. Ptr b -> Int -> IO FormatFeatureFlagBits2
$cpokeByteOff :: forall b. Ptr b -> Int -> FormatFeatureFlagBits2 -> IO ()
pokeByteOff :: forall b. Ptr b -> Int -> FormatFeatureFlagBits2 -> IO ()
$cpeek :: Ptr FormatFeatureFlagBits2 -> IO FormatFeatureFlagBits2
peek :: Ptr FormatFeatureFlagBits2 -> IO FormatFeatureFlagBits2
$cpoke :: Ptr FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> IO ()
poke :: Ptr FormatFeatureFlagBits2 -> FormatFeatureFlagBits2 -> IO ()
Storable, FormatFeatureFlagBits2
FormatFeatureFlagBits2 -> Zero FormatFeatureFlagBits2
forall a. a -> Zero a
$czero :: FormatFeatureFlagBits2
zero :: FormatFeatureFlagBits2
Zero, Eq FormatFeatureFlagBits2
FormatFeatureFlagBits2
Eq FormatFeatureFlagBits2 =>
(FormatFeatureFlagBits2
 -> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2
    -> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2
    -> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> FormatFeatureFlagBits2
-> (Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> Bool)
-> (FormatFeatureFlagBits2 -> Maybe Int)
-> (FormatFeatureFlagBits2 -> Int)
-> (FormatFeatureFlagBits2 -> Bool)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2)
-> (FormatFeatureFlagBits2 -> Int)
-> Bits FormatFeatureFlagBits2
Int -> FormatFeatureFlagBits2
FormatFeatureFlagBits2 -> Bool
FormatFeatureFlagBits2 -> Int
FormatFeatureFlagBits2 -> Maybe Int
FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
FormatFeatureFlagBits2 -> Int -> Bool
FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
forall a.
Eq a =>
(a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
$c.&. :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
.&. :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
$c.|. :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
.|. :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
$cxor :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
xor :: FormatFeatureFlagBits2
-> FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
$ccomplement :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
complement :: FormatFeatureFlagBits2 -> FormatFeatureFlagBits2
$cshift :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
shift :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$crotate :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
rotate :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$czeroBits :: FormatFeatureFlagBits2
zeroBits :: FormatFeatureFlagBits2
$cbit :: Int -> FormatFeatureFlagBits2
bit :: Int -> FormatFeatureFlagBits2
$csetBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
setBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$cclearBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
clearBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$ccomplementBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
complementBit :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$ctestBit :: FormatFeatureFlagBits2 -> Int -> Bool
testBit :: FormatFeatureFlagBits2 -> Int -> Bool
$cbitSizeMaybe :: FormatFeatureFlagBits2 -> Maybe Int
bitSizeMaybe :: FormatFeatureFlagBits2 -> Maybe Int
$cbitSize :: FormatFeatureFlagBits2 -> Int
bitSize :: FormatFeatureFlagBits2 -> Int
$cisSigned :: FormatFeatureFlagBits2 -> Bool
isSigned :: FormatFeatureFlagBits2 -> Bool
$cshiftL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
shiftL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$cunsafeShiftL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
unsafeShiftL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$cshiftR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
shiftR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$cunsafeShiftR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
unsafeShiftR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$crotateL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
rotateL :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$crotateR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
rotateR :: FormatFeatureFlagBits2 -> Int -> FormatFeatureFlagBits2
$cpopCount :: FormatFeatureFlagBits2 -> Int
popCount :: FormatFeatureFlagBits2 -> Int
Bits, Bits FormatFeatureFlagBits2
Bits FormatFeatureFlagBits2 =>
(FormatFeatureFlagBits2 -> Int)
-> (FormatFeatureFlagBits2 -> Int)
-> (FormatFeatureFlagBits2 -> Int)
-> FiniteBits FormatFeatureFlagBits2
FormatFeatureFlagBits2 -> Int
forall b.
Bits b =>
(b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
$cfiniteBitSize :: FormatFeatureFlagBits2 -> Int
finiteBitSize :: FormatFeatureFlagBits2 -> Int
$ccountLeadingZeros :: FormatFeatureFlagBits2 -> Int
countLeadingZeros :: FormatFeatureFlagBits2 -> Int
$ccountTrailingZeros :: FormatFeatureFlagBits2 -> Int
countTrailingZeros :: FormatFeatureFlagBits2 -> Int
FiniteBits)

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT = FormatFeatureFlagBits2 0x0000000000000001

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_IMAGE_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_IMAGE_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_IMAGE_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_IMAGE_BIT = FormatFeatureFlagBits2 0x0000000000000002

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT = FormatFeatureFlagBits2 0x0000000000000004

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT"
pattern $mFORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT = FormatFeatureFlagBits2 0x0000000000000008

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT = FormatFeatureFlagBits2 0x0000000000000010

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT = FormatFeatureFlagBits2 0x0000000000000020

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_VERTEX_BUFFER_BIT"
pattern $mFORMAT_FEATURE_2_VERTEX_BUFFER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_VERTEX_BUFFER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_VERTEX_BUFFER_BIT = FormatFeatureFlagBits2 0x0000000000000040

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT"
pattern $mFORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT = FormatFeatureFlagBits2 0x0000000000000080

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT"
pattern $mFORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT = FormatFeatureFlagBits2 0x0000000000000100

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT"
pattern $mFORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT = FormatFeatureFlagBits2 0x0000000000000200

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_BLIT_SRC_BIT"
pattern $mFORMAT_FEATURE_2_BLIT_SRC_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_BLIT_SRC_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLIT_SRC_BIT = FormatFeatureFlagBits2 0x0000000000000400

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_BLIT_DST_BIT"
pattern $mFORMAT_FEATURE_2_BLIT_DST_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_BLIT_DST_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLIT_DST_BIT = FormatFeatureFlagBits2 0x0000000000000800

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT = FormatFeatureFlagBits2 0x0000000000001000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_TRANSFER_SRC_BIT"
pattern $mFORMAT_FEATURE_2_TRANSFER_SRC_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_TRANSFER_SRC_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_TRANSFER_SRC_BIT = FormatFeatureFlagBits2 0x0000000000004000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_TRANSFER_DST_BIT"
pattern $mFORMAT_FEATURE_2_TRANSFER_DST_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_TRANSFER_DST_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_TRANSFER_DST_BIT = FormatFeatureFlagBits2 0x0000000000008000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT = FormatFeatureFlagBits2 0x0000000000010000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT"
pattern $mFORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT = FormatFeatureFlagBits2 0x0000000000020000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT = FormatFeatureFlagBits2 0x0000000000040000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT = FormatFeatureFlagBits2 0x0000000000080000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT = FormatFeatureFlagBits2 0x0000000000100000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT = FormatFeatureFlagBits2 0x0000000000200000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_DISJOINT_BIT"
pattern $mFORMAT_FEATURE_2_DISJOINT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_DISJOINT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_DISJOINT_BIT = FormatFeatureFlagBits2 0x0000000000400000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT"
pattern $mFORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT = FormatFeatureFlagBits2 0x0000000000800000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT = FormatFeatureFlagBits2 0x0000000080000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT"
pattern $mFORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT = FormatFeatureFlagBits2 0x0000000100000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT = FormatFeatureFlagBits2 0x0000000200000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR"
pattern $mFORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR = FormatFeatureFlagBits2 0x0080000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR"
pattern $mFORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR = FormatFeatureFlagBits2 0x0040000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR"
pattern $mFORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR = FormatFeatureFlagBits2 0x0020000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR"
pattern $mFORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR = FormatFeatureFlagBits2 0x0010000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR"
pattern $mFORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR = FormatFeatureFlagBits2 0x0800000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM"
pattern $mFORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM = FormatFeatureFlagBits2 0x0001000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV"
pattern $mFORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV = FormatFeatureFlagBits2 0x0000040000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV"
pattern $mFORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV = FormatFeatureFlagBits2 0x0000020000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV"
pattern $mFORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV = FormatFeatureFlagBits2 0x0000010000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM"
pattern $mFORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM = FormatFeatureFlagBits2 0x0000080000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM"
pattern $mFORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM = FormatFeatureFlagBits2 0x0000008000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM"
pattern $mFORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM = FormatFeatureFlagBits2 0x0000002000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM"
pattern $mFORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM = FormatFeatureFlagBits2 0x0000001000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM"
pattern $mFORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM = FormatFeatureFlagBits2 0x0000000800000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM"
pattern $mFORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM = FormatFeatureFlagBits2 0x0000000400000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV"
pattern $mFORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV = FormatFeatureFlagBits2 0x0000004000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV"
pattern $mFORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV = FormatFeatureFlagBits2 0x0008000000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR"
pattern $mFORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR = FormatFeatureFlagBits2 0x0000000040000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT"
pattern $mFORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT = FormatFeatureFlagBits2 0x0000000001000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR"
pattern $mFORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR = FormatFeatureFlagBits2 0x0000000020000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT"
pattern $mFORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT = FormatFeatureFlagBits2 0x0000400000000000

-- No documentation found for Nested "VkFormatFeatureFlagBits2" "VK_FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT"
pattern $mFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT :: forall {r}.
FormatFeatureFlagBits2 -> ((# #) -> r) -> ((# #) -> r) -> r
$bFORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT :: FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT = FormatFeatureFlagBits2 0x0000000000002000

conNameFormatFeatureFlagBits2 :: String
conNameFormatFeatureFlagBits2 :: String
conNameFormatFeatureFlagBits2 = String
"FormatFeatureFlagBits2"

enumPrefixFormatFeatureFlagBits2 :: String
enumPrefixFormatFeatureFlagBits2 :: String
enumPrefixFormatFeatureFlagBits2 = String
"FORMAT_FEATURE_2_"

showTableFormatFeatureFlagBits2 :: [(FormatFeatureFlagBits2, String)]
showTableFormatFeatureFlagBits2 :: [(FormatFeatureFlagBits2, String)]
showTableFormatFeatureFlagBits2 =
  [
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_BIT
    , String
"SAMPLED_IMAGE_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_IMAGE_BIT
    , String
"STORAGE_IMAGE_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_IMAGE_ATOMIC_BIT
    , String
"STORAGE_IMAGE_ATOMIC_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_UNIFORM_TEXEL_BUFFER_BIT
    , String
"UNIFORM_TEXEL_BUFFER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_BIT
    , String
"STORAGE_TEXEL_BUFFER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_TEXEL_BUFFER_ATOMIC_BIT
    , String
"STORAGE_TEXEL_BUFFER_ATOMIC_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_VERTEX_BUFFER_BIT
    , String
"VERTEX_BUFFER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_COLOR_ATTACHMENT_BIT
    , String
"COLOR_ATTACHMENT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_COLOR_ATTACHMENT_BLEND_BIT
    , String
"COLOR_ATTACHMENT_BLEND_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_STENCIL_ATTACHMENT_BIT
    , String
"DEPTH_STENCIL_ATTACHMENT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLIT_SRC_BIT
    , String
"BLIT_SRC_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLIT_DST_BIT
    , String
"BLIT_DST_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_LINEAR_BIT
    , String
"SAMPLED_IMAGE_FILTER_LINEAR_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_TRANSFER_SRC_BIT
    , String
"TRANSFER_SRC_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_TRANSFER_DST_BIT
    , String
"TRANSFER_DST_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_MINMAX_BIT
    , String
"SAMPLED_IMAGE_FILTER_MINMAX_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_MIDPOINT_CHROMA_SAMPLES_BIT
    , String
"MIDPOINT_CHROMA_SAMPLES_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT
    , String
"SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT
    , String
"SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT
    , String
"SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT
    , String
"SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_DISJOINT_BIT
    , String
"DISJOINT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_COSITED_CHROMA_SAMPLES_BIT
    , String
"COSITED_CHROMA_SAMPLES_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_READ_WITHOUT_FORMAT_BIT
    , String
"STORAGE_READ_WITHOUT_FORMAT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STORAGE_WRITE_WITHOUT_FORMAT_BIT
    , String
"STORAGE_WRITE_WITHOUT_FORMAT_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_DEPTH_COMPARISON_BIT
    , String
"SAMPLED_IMAGE_DEPTH_COMPARISON_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR
    , String
"STENCIL_COPY_ON_TRANSFER_QUEUE_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR
    , String
"STENCIL_COPY_ON_COMPUTE_QUEUE_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR
    , String
"DEPTH_COPY_ON_TRANSFER_QUEUE_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR
    , String
"DEPTH_COPY_ON_COMPUTE_QUEUE_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_COPY_IMAGE_INDIRECT_DST_BIT_KHR
    , String
"COPY_IMAGE_INDIRECT_DST_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_DATA_GRAPH_BIT_ARM
    , String
"TENSOR_DATA_GRAPH_BIT_ARM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_COST_BIT_NV
    , String
"OPTICAL_FLOW_COST_BIT_NV"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_VECTOR_BIT_NV
    , String
"OPTICAL_FLOW_VECTOR_BIT_NV"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_OPTICAL_FLOW_IMAGE_BIT_NV
    , String
"OPTICAL_FLOW_IMAGE_BIT_NV"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_IMAGE_ALIASING_BIT_ARM
    , String
"TENSOR_IMAGE_ALIASING_BIT_ARM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_TENSOR_SHADER_BIT_ARM
    , String
"TENSOR_SHADER_BIT_ARM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_BOX_FILTER_SAMPLED_BIT_QCOM
    , String
"BOX_FILTER_SAMPLED_BIT_QCOM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_BLOCK_MATCHING_BIT_QCOM
    , String
"BLOCK_MATCHING_BIT_QCOM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_WEIGHT_SAMPLED_IMAGE_BIT_QCOM
    , String
"WEIGHT_SAMPLED_IMAGE_BIT_QCOM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_WEIGHT_IMAGE_BIT_QCOM
    , String
"WEIGHT_IMAGE_BIT_QCOM"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_LINEAR_COLOR_ATTACHMENT_BIT_NV
    , String
"LINEAR_COLOR_ATTACHMENT_BIT_NV"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV
    , String
"ACCELERATION_STRUCTURE_RADIUS_BUFFER_BIT_NV"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR
    , String
"FRAGMENT_SHADING_RATE_ATTACHMENT_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_FRAGMENT_DENSITY_MAP_BIT_EXT
    , String
"FRAGMENT_DENSITY_MAP_BIT_EXT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR
    , String
"ACCELERATION_STRUCTURE_VERTEX_BUFFER_BIT_KHR"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_HOST_IMAGE_TRANSFER_BIT
    , String
"HOST_IMAGE_TRANSFER_BIT"
    )
  ,
    ( FormatFeatureFlagBits2
FORMAT_FEATURE_2_SAMPLED_IMAGE_FILTER_CUBIC_BIT
    , String
"SAMPLED_IMAGE_FILTER_CUBIC_BIT"
    )
  ]

instance Show FormatFeatureFlagBits2 where
  showsPrec :: Int -> FormatFeatureFlagBits2 -> ShowS
showsPrec =
    String
-> [(FormatFeatureFlagBits2, String)]
-> String
-> (FormatFeatureFlagBits2 -> Word64)
-> (Word64 -> ShowS)
-> Int
-> FormatFeatureFlagBits2
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec
      String
enumPrefixFormatFeatureFlagBits2
      [(FormatFeatureFlagBits2, String)]
showTableFormatFeatureFlagBits2
      String
conNameFormatFeatureFlagBits2
      (\(FormatFeatureFlagBits2 Word64
x) -> Word64
x)
      (\Word64
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Word64 -> ShowS
forall a. Integral a => a -> ShowS
showHex Word64
x)

instance Read FormatFeatureFlagBits2 where
  readPrec :: ReadPrec FormatFeatureFlagBits2
readPrec =
    String
-> [(FormatFeatureFlagBits2, String)]
-> String
-> (Word64 -> FormatFeatureFlagBits2)
-> ReadPrec FormatFeatureFlagBits2
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec
      String
enumPrefixFormatFeatureFlagBits2
      [(FormatFeatureFlagBits2, String)]
showTableFormatFeatureFlagBits2
      String
conNameFormatFeatureFlagBits2
      Word64 -> FormatFeatureFlagBits2
FormatFeatureFlagBits2