-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Low-level low-overhead vulkan api bindings -- -- Haskell bindings for vulkan api as described in vk.xml. -- -- You can find some simple examples at vulkan-examples page or a -- more complete triangle rendering program at vulkan-triangles -- page. -- -- For further information, please refer to README.md. @package vulkan-api @version 1.3.0.0 -- | This module is not part of auto-generated code based on vk.xml. -- Instead, it is hand-written to provide common types and classes. -- -- DANGER! This is an internal module; it can change a lot between -- package versions; it provides low-level functions, most of which have -- user-friendly analogues. module Graphics.Vulkan.Marshal.Internal -- | Internal representation of all Vulkan structures: a pinned byte array -- and an address pointing to an area in this array. data VkStruct a VkStruct :: Addr# -> ByteArray# -> VkStruct a -- | Get address of vulkan structure. Note, the address is only valid as -- long as a given vulkan structure exists. Structures created with -- newVkData are stored in pinned byte arrays, so their memory is -- maintained by Haskell GC. [unsafeAddr] :: VkStruct a -> Addr# -- | Get a ByteArray# that keeps the data. -- -- Note, the data structure does not necessarily starts at zero offset. [unsafeByteArray] :: VkStruct a -> ByteArray# -- | Combine a vulkan structure from ByteArray and an offset in this array. unsafeFromByteArrayOffset :: Int# -> ByteArray# -> VkStruct a -- | All Vulkan structures are stored as-is in byte arrays to avoid any -- overheads for wrapping and unwrapping haskell values. VulkanMarshal -- provides an interfaces to write and read these structures in an -- imperative way. class (VulkanStruct (StructRep a), IsVkStruct a) => VulkanMarshal a where { type family StructRep a :: StructMeta; } -- | Allocate a pinned aligned byte array to keep vulkan data structure and -- fill it using a foreign function. -- -- Note, the function is supposed to use -- newAlignedPinnedByteArray# and does not guarantee to fill -- memory with zeroes. Use clearStorable to make sure all bytes -- are set to zero. -- -- Note, the memory is managed by GHC, thus no need for freeing it -- manually. newVkData :: forall a. VulkanMarshal a => (Ptr a -> IO ()) -> IO a -- | Allocate a pinned aligned byte array to keep vulkan data structure. -- -- Note, the function is supposed to use -- newAlignedPinnedByteArray# and does not guarantee to fill -- memory with zeroes. Use clearStorable to make sure all bytes -- are set to zero. -- -- Note, the memory is managed by GHC, thus no need for freeing it -- manually. mallocVkData :: forall a. VulkanMarshal a => IO a -- | Allocate a pinned aligned byte array to keep vulkan data structures. -- Returned `Ptr a` points to the first element in the contiguous array -- of returned structures. Returned list elements point to the same -- memory area. This function is unsafe in two ways: -- --
-- #if !defined(VK_DEFINE_NON_DISPATCHABLE_HANDLE) -- #if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) -- #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; -- #else -- #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; -- #endif -- #endif --newtype VkPtr a VkPtr :: Word64 -> VkPtr a -- | A synonym for zeroBits pattern VK_ZERO_FLAGS :: Bits a => a -- |
-- #define VK_NULL_HANDLE 0 --pattern VK_NULL_HANDLE :: (Eq (ptr a), VulkanPtr ptr) => ptr a -- | Null pointer (either dispatchable or non-dispatchable) pattern VK_NULL :: (Eq (ptr a), VulkanPtr ptr) => ptr a -- | Fill all bytes to zero getting data size from Storable -- instance. clearStorable :: Storable a => Ptr a -> IO () -- | Run some operation with a pointer to vulkan structure. -- -- Should be used with care: the structure pretends to be immutable, so -- it is better to only read from the pointed memory area, not to write. -- If an action needs to write something to the pointer, use -- newVkData. withPtr :: VulkanMarshal a => a -> (Ptr a -> IO b) -> IO b -- | Descriptions of all fields of a vulkan struct type StructFields a = SFields (StructRep a) -- | Whether this type is a C union. Otherwise this is a C structure. type CUnionType a = SIsUnion (StructRep a) -- | Notes that this struct or union is going to be filled in by the API, -- rather than an application filling it out and passing it to the API. type ReturnedOnly a = SIsReturnedOnly (StructRep a) -- | Comma-separated list of structures whose "pNext" can include this -- type. type StructExtends a = SStructExtends (StructRep a) type StructFieldNames (a :: Type) = FieldNames (StructFields a) -- | A Constraint: a vulkan struct must have a field with a given name. type HasField (fname :: Symbol) (a :: Type) = (VulkanMarshal a, VulkanField (FieldRep fname a)) -- | Type-level description of a Vulkan structure field. type FieldRep (fname :: Symbol) (a :: Type) = GetFieldMeta (ErrorNoSuchField fname a) fname (StructFields a) -- | Type of a field in a vulkan structure or union. type FieldType (fname :: Symbol) (a :: Type) = FType (FieldRep fname a) -- | Whether this field marked optional in vulkan specification. Usually, -- this means that VK_NULL can be written in place of this -- field. type FieldOptional (fname :: Symbol) (a :: Type) = FOptional (FieldRep fname a) -- | Offset of a field in bytes. type FieldOffset (fname :: Symbol) (a :: Type) = FByteOffset (FieldRep fname a) -- | Whether this field is a fixed-length array stored directly in a -- struct. type FieldIsArray (fname :: Symbol) (a :: Type) = IsArrayLen (FLength (FieldRep fname a)) -- | Length of an array that is a field of a structure or union type FieldArrayLength (fname :: Symbol) (a :: Type) = FLength (FieldRep fname a) type CanReadField (fname :: Symbol) (a :: Type) = (HasField fname a, IsTrue (ErrorNotReadableField fname a) (FCanRead (FieldRep fname a)), Storable (FieldType fname a)) type CanWriteField (fname :: Symbol) (a :: Type) = (HasField fname a, IsTrue (ErrorNotWritableField fname a) (FCanWrite (FieldRep fname a)), Storable (FieldType fname a)) type CanReadFieldArray (fname :: Symbol) (a :: Type) = CanReadField fname a type CanWriteFieldArray (fname :: Symbol) (a :: Type) = CanWriteField fname a -- | Whether this field marked optional in vulkan specification. Usually, -- this means that VK_NULL can be written in place of this -- field. fieldOptional :: forall (fname :: Symbol) (a :: Type). HasField fname a => Bool -- | Offset of a field in bytes. fieldOffset :: forall (fname :: Symbol) (a :: Type). HasField fname a => Int -- | Length of an array that is a field of a structure or union. -- -- Returns 1 if this field is not an array. fieldArrayLength :: forall (fname :: Symbol) (a :: Type). HasField fname a => Int getField :: forall (fname :: Symbol) (a :: Type). CanReadField fname a => a -> FieldType fname a readField :: forall (fname :: Symbol) (a :: Type). CanReadField fname a => Ptr a -> IO (FieldType fname a) writeField :: forall (fname :: Symbol) (a :: Type). CanWriteField fname a => Ptr a -> FieldType fname a -> IO () -- | Index an array-type field. No bound checks. getFieldArrayUnsafe :: forall (fname :: Symbol) (a :: Type). CanReadFieldArray fname a => Int -> a -> FieldType fname a -- | Read from an array-type field. No bound checks. readFieldArrayUnsafe :: forall (fname :: Symbol) (a :: Type). CanReadFieldArray fname a => Int -> Ptr a -> IO (FieldType fname a) -- | Write to an array-type field. No bound checks. writeFieldArrayUnsafe :: forall (fname :: Symbol) (a :: Type). CanWriteFieldArray fname a => Int -> Ptr a -> FieldType fname a -> IO () getFieldArray :: forall fname idx a. (CanReadFieldArray fname a, IndexInBounds fname idx a, KnownNat idx) => a -> FieldType fname a readFieldArray :: forall fname idx a. (CanReadFieldArray fname a, IndexInBounds fname idx a, KnownNat idx) => Ptr a -> IO (FieldType fname a) writeFieldArray :: forall fname idx a. (CanWriteFieldArray fname a, IndexInBounds fname idx a, KnownNat idx) => Ptr a -> FieldType fname a -> IO () type IndexInBounds (s :: Symbol) (i :: Nat) (a :: Type) = IndexInBounds' s i a (CmpNat i (FieldArrayLength s a)) class VulkanFields (SFields m) => VulkanStruct (m :: StructMeta) where { type family SName m :: Symbol; type family SType m :: Type; type family SSize m :: Nat; type family SAlign m :: Nat; type family SFields m :: [FieldMeta]; type family SIsUnion m :: Bool; type family SIsReturnedOnly m :: Bool; type family SStructExtends m :: [Type]; } sName :: VulkanStruct m => String sSize :: VulkanStruct m => Int sAlign :: VulkanStruct m => Int sIsUnion :: VulkanStruct m => Bool sIsReturnedOnly :: VulkanStruct m => Bool class (Show (FType m), Storable (FType m)) => VulkanField (m :: FieldMeta) where { type family FName m :: Symbol; type family FType m :: Type; type family FOptional m :: Bool; type family FByteOffset m :: Nat; type family FLength m :: Nat; type family FCanRead m :: Bool; type family FCanWrite m :: Bool; } fName :: VulkanField m => String fOptional :: VulkanField m => Bool fByteOffset :: VulkanField m => Int fLength :: VulkanField m => Int fCanRead :: VulkanField m => Bool fCanWrite :: VulkanField m => Bool class VulkanFields (ms :: [FieldMeta]) withField :: forall (fname :: Symbol) (r :: Type) (errMsg :: ErrorMessage). (VulkanFields ms, KnownSymbol fname) => Proxy# fname -> Proxy# errMsg -> (VulkanField (GetFieldMeta errMsg fname ms) => r) -> r enumerateFields :: forall (a :: Type). VulkanFields ms => (forall (m :: FieldMeta). VulkanField m => Proxy# m -> a -> a) -> a -> a -- | This class give a term-level boolean associated with a type-level -- boolean. -- -- The same as KnownNat for integers. class KnownBool (b :: Bool) boolSing :: KnownBool b => Bool -- | FieldMeta fieldName fieldType optional byteOffset length canRead -- canWrite represents a Vulkan structure field at the type level. data FieldMeta FieldMeta :: Symbol -> Type -> Bool -> Nat -> Nat -> Bool -> Bool -> FieldMeta -- | StructMeta structName structType size alignment fields isUnion -- isReturnedOnly structExtends represents a Vulkan structure at the -- type level. data StructMeta StructMeta :: Symbol -> Type -> Nat -> Nat -> [FieldMeta] -> Bool -> Bool -> [Type] -> StructMeta -- | Allocate some memory and return a ForeignPtr to it. The memory -- will be released automatically when the ForeignPtr is -- discarded. -- -- mallocForeignPtr is equivalent to -- --
-- do { p <- malloc; newForeignPtr finalizerFree p }
--
--
-- although it may be implemented differently internally: you may not
-- assume that the memory returned by mallocForeignPtr has been
-- allocated with malloc.
--
-- GHC notes: mallocForeignPtr has a heavily optimised
-- implementation in GHC. It uses pinned memory in the garbage collected
-- heap, so the ForeignPtr does not require a finalizer to free
-- the memory. Use of mallocForeignPtr and associated functions is
-- strongly recommended in preference to newForeignPtr with a
-- finalizer.
mallocForeignPtr :: Storable a => IO (ForeignPtr a)
-- | This is a way to look at the pointer living inside a foreign object.
-- This function takes a function which is applied to that pointer. The
-- resulting IO action is then executed. The foreign object is
-- kept alive at least during the whole action, even if it is not used
-- directly inside. Note that it is not safe to return the pointer from
-- the action and use it after the action completes. All uses of the
-- pointer should be inside the withForeignPtr bracket. The reason
-- for this unsafeness is the same as for unsafeForeignPtrToPtr
-- below: the finalizer may run earlier than expected, because the
-- compiler can only track usage of the ForeignPtr object, not a
-- Ptr object made from it.
--
-- This function is normally used for marshalling data to or from the
-- object pointed to by the ForeignPtr, using the operations from
-- the Storable class.
withForeignPtr :: () => ForeignPtr a -> (Ptr a -> IO b) -> IO b
-- | This function adds a finalizer to the given foreign object. The
-- finalizer will run before all other finalizers for the same
-- object which have already been registered.
addForeignPtrFinalizer :: () => FinalizerPtr a -> ForeignPtr a -> IO ()
-- | 8-bit signed integer type
data Int8
-- | 16-bit signed integer type
data Int16
-- | 32-bit signed integer type
data Int32
-- | 64-bit signed integer type
data Int64
-- | 8-bit unsigned integer type
data Word8
-- | 16-bit unsigned integer type
data Word16
-- | 32-bit unsigned integer type
data Word32
-- | 64-bit unsigned integer type
data Word64
-- | A value of type Ptr a represents a pointer to an
-- object, or an array of objects, which may be marshalled to or from
-- Haskell values of type a.
--
-- The type a will often be an instance of class Storable
-- which provides the marshalling operations. However this is not
-- essential, and you can provide your own operations to access the
-- pointer. For example you might write small foreign functions to get or
-- set the fields of a C struct.
data Ptr a
-- | A value of type FunPtr a is a pointer to a function
-- callable from foreign code. The type a will normally be a
-- foreign type, a function type with zero or more arguments where
--
-- -- foreign import ccall "stdlib.h &free" -- p_free :: FunPtr (Ptr a -> IO ()) ---- -- or a pointer to a Haskell function created using a wrapper stub -- declared to produce a FunPtr of the correct type. For example: -- --
-- type Compare = Int -> Int -> Bool -- foreign import ccall "wrapper" -- mkCompare :: Compare -> IO (FunPtr Compare) ---- -- Calls to wrapper stubs like mkCompare allocate storage, which -- should be released with freeHaskellFunPtr when no longer -- required. -- -- To convert FunPtr values to corresponding Haskell functions, -- one can define a dynamic stub for the specific foreign type, -- e.g. -- --
-- type IntFunction = CInt -> IO () -- foreign import ccall "dynamic" -- mkFun :: FunPtr IntFunction -> IntFunction --data FunPtr a -- | Uninhabited data type data Void -- | A C string is a reference to an array of C characters terminated by -- NUL. type CString = Ptr CChar -- | Haskell type representing the C int type. newtype CInt CInt :: Int32 -> CInt -- | Haskell type representing the C size_t type. newtype CSize CSize :: Word64 -> CSize -- | Haskell type representing the C char type. newtype CChar CChar :: Int8 -> CChar -- | Haskell type representing the C wchar_t type. newtype CWchar CWchar :: Int32 -> CWchar -- | Haskell type representing the C unsigned long type. newtype CULong CULong :: Word64 -> CULong -- | Perform an action on a C string field. The string pointers should not -- be used outside the callback. It will point to a correct location only -- as long as the struct is alive. withCStringField :: forall fname a b. (CanReadFieldArray fname a, FieldType fname a ~ CChar, VulkanMarshal a) => a -> (CString -> IO b) -> IO b -- | Get pointer to a memory location of the C string field in a structure. unsafeCStringField :: forall fname a. (CanReadFieldArray fname a, FieldType fname a ~ CChar, VulkanMarshal a) => a -> CString getStringField :: forall fname a. (CanReadFieldArray fname a, FieldType fname a ~ CChar, VulkanMarshal a) => a -> String readStringField :: forall fname a. (CanReadFieldArray fname a, FieldType fname a ~ CChar, VulkanMarshal a) => Ptr a -> IO String writeStringField :: forall fname a. (CanWriteFieldArray fname a, FieldType fname a ~ CChar, VulkanMarshal a) => Ptr a -> String -> IO () -- | Check first if two CString point to the same memory location. -- Otherwise, compare them using C strcmp function. cmpCStrings :: CString -> CString -> Ordering -- | Check first if two CString point to the same memory location. -- Otherwise, compare them using C strncmp function. It may be -- useful to provide maximum number of characters to compare. cmpCStringsN :: CString -> CString -> Int -> Ordering instance Foreign.Storable.Storable (Graphics.Vulkan.Marshal.VkPtr a) instance GHC.Show.Show (Graphics.Vulkan.Marshal.VkPtr a) instance GHC.Classes.Ord (Graphics.Vulkan.Marshal.VkPtr a) instance GHC.Classes.Eq (Graphics.Vulkan.Marshal.VkPtr a) instance Graphics.Vulkan.Marshal.VulkanPtr GHC.Ptr.Ptr instance Graphics.Vulkan.Marshal.VulkanPtr Graphics.Vulkan.Marshal.VkPtr module Graphics.Vulkan.Ext.VK_NV_viewport_array2 type VK_NV_VIEWPORT_ARRAY2_SPEC_VERSION = 1 pattern VK_NV_VIEWPORT_ARRAY2_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_VIEWPORT_ARRAY2_EXTENSION_NAME = "VK_NV_viewport_array2" pattern VK_NV_VIEWPORT_ARRAY2_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_NV_sample_mask_override_coverage type VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_SPEC_VERSION = 1 pattern VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_EXTENSION_NAME = "VK_NV_sample_mask_override_coverage" pattern VK_NV_SAMPLE_MASK_OVERRIDE_COVERAGE_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_NV_geometry_shader_passthrough type VK_NV_GEOMETRY_SHADER_PASSTHROUGH_SPEC_VERSION = 1 pattern VK_NV_GEOMETRY_SHADER_PASSTHROUGH_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_GEOMETRY_SHADER_PASSTHROUGH_EXTENSION_NAME = "VK_NV_geometry_shader_passthrough" pattern VK_NV_GEOMETRY_SHADER_PASSTHROUGH_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_KHR_storage_buffer_storage_class type VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_SPEC_VERSION = 1 pattern VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME = "VK_KHR_storage_buffer_storage_class" pattern VK_KHR_STORAGE_BUFFER_STORAGE_CLASS_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_KHR_shader_draw_parameters type VK_KHR_SHADER_DRAW_PARAMETERS_SPEC_VERSION = 1 pattern VK_KHR_SHADER_DRAW_PARAMETERS_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME = "VK_KHR_shader_draw_parameters" pattern VK_KHR_SHADER_DRAW_PARAMETERS_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_KHR_relaxed_block_layout type VK_KHR_RELAXED_BLOCK_LAYOUT_SPEC_VERSION = 1 pattern VK_KHR_RELAXED_BLOCK_LAYOUT_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_RELAXED_BLOCK_LAYOUT_EXTENSION_NAME = "VK_KHR_relaxed_block_layout" pattern VK_KHR_RELAXED_BLOCK_LAYOUT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_shader_viewport_index_layer type VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_SPEC_VERSION = 1 pattern VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_EXTENSION_NAME = "VK_EXT_shader_viewport_index_layer" pattern VK_EXT_SHADER_VIEWPORT_INDEX_LAYER_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_shader_subgroup_vote type VK_EXT_SHADER_SUBGROUP_VOTE_SPEC_VERSION = 1 pattern VK_EXT_SHADER_SUBGROUP_VOTE_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_SHADER_SUBGROUP_VOTE_EXTENSION_NAME = "VK_EXT_shader_subgroup_vote" pattern VK_EXT_SHADER_SUBGROUP_VOTE_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_shader_subgroup_ballot type VK_EXT_SHADER_SUBGROUP_BALLOT_SPEC_VERSION = 1 pattern VK_EXT_SHADER_SUBGROUP_BALLOT_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_SHADER_SUBGROUP_BALLOT_EXTENSION_NAME = "VK_EXT_shader_subgroup_ballot" pattern VK_EXT_SHADER_SUBGROUP_BALLOT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_shader_stencil_export type VK_EXT_SHADER_STENCIL_EXPORT_SPEC_VERSION = 1 pattern VK_EXT_SHADER_STENCIL_EXPORT_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_SHADER_STENCIL_EXPORT_EXTENSION_NAME = "VK_EXT_shader_stencil_export" pattern VK_EXT_SHADER_STENCIL_EXPORT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_post_depth_coverage type VK_EXT_POST_DEPTH_COVERAGE_SPEC_VERSION = 1 pattern VK_EXT_POST_DEPTH_COVERAGE_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_POST_DEPTH_COVERAGE_EXTENSION_NAME = "VK_EXT_post_depth_coverage" pattern VK_EXT_POST_DEPTH_COVERAGE_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_EXT_depth_range_unrestricted type VK_EXT_DEPTH_RANGE_UNRESTRICTED_SPEC_VERSION = 1 pattern VK_EXT_DEPTH_RANGE_UNRESTRICTED_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_DEPTH_RANGE_UNRESTRICTED_EXTENSION_NAME = "VK_EXT_depth_range_unrestricted" pattern VK_EXT_DEPTH_RANGE_UNRESTRICTED_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_shader_trinary_minmax type VK_AMD_SHADER_TRINARY_MINMAX_SPEC_VERSION = 1 pattern VK_AMD_SHADER_TRINARY_MINMAX_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_TRINARY_MINMAX_EXTENSION_NAME = "VK_AMD_shader_trinary_minmax" pattern VK_AMD_SHADER_TRINARY_MINMAX_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_shader_image_load_store_lod type VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_SPEC_VERSION = 1 pattern VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_EXTENSION_NAME = "VK_AMD_shader_image_load_store_lod" pattern VK_AMD_SHADER_IMAGE_LOAD_STORE_LOD_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_shader_fragment_mask type VK_AMD_SHADER_FRAGMENT_MASK_SPEC_VERSION = 1 pattern VK_AMD_SHADER_FRAGMENT_MASK_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_FRAGMENT_MASK_EXTENSION_NAME = "VK_AMD_shader_fragment_mask" pattern VK_AMD_SHADER_FRAGMENT_MASK_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_shader_explicit_vertex_parameter type VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_SPEC_VERSION = 1 pattern VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_EXTENSION_NAME = "VK_AMD_shader_explicit_vertex_parameter" pattern VK_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_shader_ballot type VK_AMD_SHADER_BALLOT_SPEC_VERSION = 1 pattern VK_AMD_SHADER_BALLOT_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_BALLOT_EXTENSION_NAME = "VK_AMD_shader_ballot" pattern VK_AMD_SHADER_BALLOT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_negative_viewport_height type VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_SPEC_VERSION = 1 pattern VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_EXTENSION_NAME = "VK_AMD_negative_viewport_height" pattern VK_AMD_NEGATIVE_VIEWPORT_HEIGHT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_mixed_attachment_samples type VK_AMD_MIXED_ATTACHMENT_SAMPLES_SPEC_VERSION = 1 pattern VK_AMD_MIXED_ATTACHMENT_SAMPLES_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_MIXED_ATTACHMENT_SAMPLES_EXTENSION_NAME = "VK_AMD_mixed_attachment_samples" pattern VK_AMD_MIXED_ATTACHMENT_SAMPLES_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_gpu_shader_int16 type VK_AMD_GPU_SHADER_INT16_SPEC_VERSION = 1 pattern VK_AMD_GPU_SHADER_INT16_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_GPU_SHADER_INT16_EXTENSION_NAME = "VK_AMD_gpu_shader_int16" pattern VK_AMD_GPU_SHADER_INT16_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_gpu_shader_half_float type VK_AMD_GPU_SHADER_HALF_FLOAT_SPEC_VERSION = 1 pattern VK_AMD_GPU_SHADER_HALF_FLOAT_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_GPU_SHADER_HALF_FLOAT_EXTENSION_NAME = "VK_AMD_gpu_shader_half_float" pattern VK_AMD_GPU_SHADER_HALF_FLOAT_EXTENSION_NAME :: CString module Graphics.Vulkan.Ext.VK_AMD_gcn_shader type VK_AMD_GCN_SHADER_SPEC_VERSION = 1 pattern VK_AMD_GCN_SHADER_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_GCN_SHADER_EXTENSION_NAME = "VK_AMD_gcn_shader" pattern VK_AMD_GCN_SHADER_EXTENSION_NAME :: CString module Graphics.Vulkan.Constants type VK_MAX_PHYSICAL_DEVICE_NAME_SIZE = 256 pattern VK_MAX_PHYSICAL_DEVICE_NAME_SIZE :: (Num a, Eq a) => a type VK_UUID_SIZE = 16 pattern VK_UUID_SIZE :: (Num a, Eq a) => a type VK_LUID_SIZE = 8 pattern VK_LUID_SIZE :: (Num a, Eq a) => a pattern VK_LUID_SIZE_KHR :: forall a. (Num a, Eq a) => () => a type VK_MAX_EXTENSION_NAME_SIZE = 256 pattern VK_MAX_EXTENSION_NAME_SIZE :: (Num a, Eq a) => a type VK_MAX_DESCRIPTION_SIZE = 256 pattern VK_MAX_DESCRIPTION_SIZE :: (Num a, Eq a) => a type VK_MAX_MEMORY_TYPES = 32 pattern VK_MAX_MEMORY_TYPES :: (Num a, Eq a) => a type VK_MAX_MEMORY_HEAPS = 16 -- | The maximum number of unique memory heaps, each of which supporting 1 -- or more memory types pattern VK_MAX_MEMORY_HEAPS :: (Num a, Eq a) => a pattern VK_LOD_CLAMP_NONE :: (Fractional a, Eq a) => a type VK_REMAINING_MIP_LEVELS = 4294967295 pattern VK_REMAINING_MIP_LEVELS :: Word32 type VK_REMAINING_ARRAY_LAYERS = 4294967295 pattern VK_REMAINING_ARRAY_LAYERS :: Word32 type VK_WHOLE_SIZE = 18446744073709551615 pattern VK_WHOLE_SIZE :: Word64 type VK_ATTACHMENT_UNUSED = 4294967295 pattern VK_ATTACHMENT_UNUSED :: Word32 type VK_TRUE = 1 pattern VK_TRUE :: (Num a, Eq a) => a type VK_FALSE = 0 pattern VK_FALSE :: (Num a, Eq a) => a type VK_QUEUE_FAMILY_IGNORED = 4294967295 pattern VK_QUEUE_FAMILY_IGNORED :: Word32 type VK_QUEUE_FAMILY_EXTERNAL = 4294967294 pattern VK_QUEUE_FAMILY_EXTERNAL :: Word32 pattern VK_QUEUE_FAMILY_EXTERNAL_KHR :: () => () => Word32 type VK_QUEUE_FAMILY_FOREIGN_EXT = 4294967293 pattern VK_QUEUE_FAMILY_FOREIGN_EXT :: Word32 type VK_SUBPASS_EXTERNAL = 4294967295 pattern VK_SUBPASS_EXTERNAL :: Word32 type VK_MAX_DEVICE_GROUP_SIZE = 32 pattern VK_MAX_DEVICE_GROUP_SIZE :: (Num a, Eq a) => a pattern VK_MAX_DEVICE_GROUP_SIZE_KHR :: forall a. (Num a, Eq a) => () => a module Graphics.Vulkan.Ext.VK_EXT_queue_family_foreign type VK_EXT_QUEUE_FAMILY_FOREIGN_SPEC_VERSION = 1 pattern VK_EXT_QUEUE_FAMILY_FOREIGN_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME = "VK_EXT_queue_family_foreign" pattern VK_EXT_QUEUE_FAMILY_FOREIGN_EXTENSION_NAME :: CString pattern VK_QUEUE_FAMILY_FOREIGN_EXT :: Word32 -- | This module is not part of auto-generated code based on vk.xml. It is -- also not included into Vulkan. It just provides convenient -- helpers for creation of vulkan structures. module Graphics.Vulkan.Marshal.Create -- | Safely fill-in a new vulkan structure data CreateVkStruct x (fs :: [Symbol]) a -- | Create a vulkan structure. -- -- Use smart creation functions like setVk, setStrRef, -- setListRef, etc to keep GC aware of references between -- dependent structures. -- -- createVk produces at most one weak reference to a created -- structure with a set of haskell and C finalizers. These finalizers -- make sure all malloced memory is released and no managed -- memory gets purged too early. createVk :: forall a fs. (VulkanMarshal a, HandleRemFields a fs) => CreateVkStruct a fs () -> a -- | Combine multiple field writes. (&*) :: CreateVkStruct x as () -> CreateVkStruct x bs () -> CreateVkStruct x (Union x as bs) () infixl 1 &* -- | writeField wrapped into CreateVkStruct monad. set :: forall fname x. CanWriteField fname x => FieldType fname x -> CreateVkStruct x '[fname] () -- | writeFieldArray wrapped into CreateVkStruct monad. setAt :: forall fname i x. (CanWriteFieldArray fname x, IndexInBounds fname i x, KnownNat i) => FieldType fname x -> CreateVkStruct x '[fname] () -- | Write fields of a member struct. setVk :: forall fname x afs a. (CanWriteField fname x, a ~ FieldType fname x, VulkanMarshal a, HandleRemFields a afs) => CreateVkStruct a afs () -> CreateVkStruct x '[fname] () -- | Write a pointer to a vulkan structure - member of current structure -- and make sure the member exists as long as this structure exists. -- -- Prefer this function to using unsafePtr a, because the latter -- does not keep the dependency information in GC, which results in -- member structure being garbage-collected and the reference being -- invalid. setVkRef :: forall fname x a. (CanWriteField fname x, FieldType fname x ~ Ptr a, VulkanMarshal a) => a -> CreateVkStruct x '[fname] () -- | Write a String into a vulkan struct in-place. setStr :: forall fname x. (CanWriteFieldArray fname x, FieldType fname x ~ CChar) => String -> CreateVkStruct x '[fname] () -- | Allocate memory for a CString, store it, and write a pointer to it -- into vulkan structure. -- -- This function also attaches a reliable finalizer to the vulkan struct, -- so that the allocated memory is freed when the structure is GCed. setStrRef :: forall fname x. (CanWriteField fname x, FieldType fname x ~ CString) => String -> CreateVkStruct x '[fname] () -- | Allocate memory for an array of elements, store them, and write a -- pointer to the array into vulkan structure. -- -- This function also attaches a reliable finalizer to the vulkan struct, -- so that the array memory is freed when the structure is GCed. -- -- This function writes null pointer if used with an empty list. setStrListRef :: forall fname x. (CanWriteField fname x, FieldType fname x ~ Ptr CString) => [String] -> CreateVkStruct x '[fname] () -- | Equivalent to set on a count field and setStrListRef on -- a corresponding list field, where the count is set to the length of -- the list. setStrListCountAndRef :: forall countfname listfname x. (CanWriteField countfname x, CanWriteField listfname x, FieldType countfname x ~ Word32, FieldType listfname x ~ Ptr CString) => [String] -> CreateVkStruct x (Union x '[countfname] '[listfname]) () -- | Allocate memory for an array of elements, store them, and write a -- pointer to the array into vulkan structure. -- -- This function also attaches a reliable finalizer to the vulkan struct, -- so that the array memory is freed when the structure is GCed. -- -- This function writes null pointer if used with an empty list. setListRef :: forall fname x a. (CanWriteField fname x, FieldType fname x ~ Ptr a, Storable a) => [a] -> CreateVkStruct x '[fname] () -- | Equivalent to set on a count field and setListRef on a -- corresponding list field, where the count is set to the length of the -- list. setListCountAndRef :: forall countfname listfname x a. (CanWriteField countfname x, CanWriteField listfname x, FieldType countfname x ~ Word32, FieldType listfname x ~ Ptr a, Storable a) => [a] -> CreateVkStruct x (Union x '[countfname] '[listfname]) () class SetOptionalFields (x :: Type) (fs :: [Symbol]) setOptionalFields :: SetOptionalFields x fs => CreateVkStruct x fs () -- | Notify user if some required fields are missing and fill in optional -- fields. class CUnionType x ~ isUnion => HandleRemainingFields (x :: Type) (fs :: [Symbol]) (isUnion :: Bool) handleRemFields :: HandleRemainingFields x fs isUnion => CreateVkStruct x fs () -- | Notify user if some required fields are missing. type HandleRemFields x fs = HandleRemainingFields x fs (CUnionType x) -- | Unsafe perform arbitrary IO action with a pointer to data under -- construction. This is used to add more functionality to this monad. unsafeIOCreate :: (Ptr x -> IO a) -> CreateVkStruct x fs a instance (Graphics.Vulkan.Marshal.Create.SetOptionalFields x fs, Graphics.Vulkan.Marshal.Create.FieldMustBeOptional f x, Foreign.Storable.Storable (Graphics.Vulkan.Marshal.Internal.FieldType f x), Graphics.Vulkan.Marshal.Internal.HasField f x) => Graphics.Vulkan.Marshal.Create.SetOptionalFields x (f : fs) instance (Graphics.Vulkan.Marshal.Create.SetOptionalFields x (Graphics.Vulkan.Marshal.Create.Difference (Graphics.Vulkan.Marshal.Internal.StructFieldNames x) fs), Graphics.Vulkan.Marshal.Internal.CUnionType x Data.Type.Equality.~ 'GHC.Types.False) => Graphics.Vulkan.Marshal.Create.HandleRemainingFields x fs 'GHC.Types.False instance Graphics.Vulkan.Marshal.Create.SetOptionalFields x '[] instance ((TypeError ...), Graphics.Vulkan.Marshal.Internal.CUnionType x Data.Type.Equality.~ 'GHC.Types.True) => Graphics.Vulkan.Marshal.Create.HandleRemainingFields x '[] 'GHC.Types.True instance ((TypeError ...), Graphics.Vulkan.Marshal.Internal.CUnionType x Data.Type.Equality.~ 'GHC.Types.True) => Graphics.Vulkan.Marshal.Create.HandleRemainingFields x (a : b : fs) 'GHC.Types.True instance (Graphics.Vulkan.Marshal.Internal.CUnionType x Data.Type.Equality.~ 'GHC.Types.True) => Graphics.Vulkan.Marshal.Create.HandleRemainingFields x '[f] 'GHC.Types.True instance GHC.Base.Functor (Graphics.Vulkan.Marshal.Create.CreateVkStruct x fs) instance GHC.Base.Applicative (Graphics.Vulkan.Marshal.Create.CreateVkStruct x fs) instance GHC.Base.Monad (Graphics.Vulkan.Marshal.Create.CreateVkStruct x fs) module Graphics.Vulkan.Ext.VK_EXT_swapchain_colorspace type VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION = 3 pattern VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME = "VK_EXT_swapchain_colorspace" pattern VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME :: CString pattern VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_EXTENDED_SRGB_LINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_DCI_P3_LINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_BT709_LINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_BT709_NONLINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_BT2020_LINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_HDR10_ST2084_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_DOLBYVISION_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_HDR10_HLG_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_PASS_THROUGH_EXT :: VkColorSpaceKHR pattern VK_COLOR_SPACE_EXTENDED_SRGB_NONLINEAR_EXT :: VkColorSpaceKHR module Graphics.Vulkan.Ext.VK_EXT_external_memory_dma_buf type VK_EXT_EXTERNAL_MEMORY_DMA_BUF_SPEC_VERSION = 1 pattern VK_EXT_EXTERNAL_MEMORY_DMA_BUF_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_EXTERNAL_MEMORY_DMA_BUF_EXTENSION_NAME = "VK_EXT_external_memory_dma_buf" pattern VK_EXT_EXTERNAL_MEMORY_DMA_BUF_EXTENSION_NAME :: CString -- | bitpos = 9 pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT :: VkExternalMemoryHandleTypeBitmask a module Graphics.Vulkan.Ext.VK_IMG_format_pvrtc type VK_IMG_FORMAT_PVRTC_SPEC_VERSION = 1 pattern VK_IMG_FORMAT_PVRTC_SPEC_VERSION :: (Num a, Eq a) => a type VK_IMG_FORMAT_PVRTC_EXTENSION_NAME = "VK_IMG_format_pvrtc" pattern VK_IMG_FORMAT_PVRTC_EXTENSION_NAME :: CString pattern VK_FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC2_2BPP_UNORM_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC2_4BPP_UNORM_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC2_2BPP_SRGB_BLOCK_IMG :: VkFormat pattern VK_FORMAT_PVRTC2_4BPP_SRGB_BLOCK_IMG :: VkFormat module Graphics.Vulkan.Ext.VK_IMG_filter_cubic type VK_IMG_FILTER_CUBIC_SPEC_VERSION = 1 pattern VK_IMG_FILTER_CUBIC_SPEC_VERSION :: (Num a, Eq a) => a type VK_IMG_FILTER_CUBIC_EXTENSION_NAME = "VK_IMG_filter_cubic" pattern VK_IMG_FILTER_CUBIC_EXTENSION_NAME :: CString pattern VK_FILTER_CUBIC_IMG :: VkFilter -- | Format can be filtered with VK_FILTER_CUBIC_IMG when being sampled -- -- bitpos = 13 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_IMG :: VkFormatFeatureBitmask a module Graphics.Vulkan.Ext.VK_NV_fill_rectangle type VK_NV_FILL_RECTANGLE_SPEC_VERSION = 1 pattern VK_NV_FILL_RECTANGLE_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_FILL_RECTANGLE_EXTENSION_NAME = "VK_NV_fill_rectangle" pattern VK_NV_FILL_RECTANGLE_EXTENSION_NAME :: CString pattern VK_POLYGON_MODE_FILL_RECTANGLE_NV :: VkPolygonMode module Graphics.Vulkan.Ext.VK_NV_glsl_shader type VK_NV_GLSL_SHADER_SPEC_VERSION = 1 pattern VK_NV_GLSL_SHADER_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_GLSL_SHADER_EXTENSION_NAME = "VK_NV_glsl_shader" pattern VK_NV_GLSL_SHADER_EXTENSION_NAME :: CString pattern VK_ERROR_INVALID_SHADER_NV :: VkResult module Graphics.Vulkan.Ext.VK_KHR_sampler_mirror_clamp_to_edge type VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION = 1 pattern VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME = "VK_KHR_sampler_mirror_clamp_to_edge" pattern VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME :: CString -- | Note that this defines what was previously a core enum, and so uses -- the value attribute rather than offset, and does not -- have a suffix. This is a special case, and should not be repeated pattern VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE :: VkSamplerAddressMode module Graphics.Vulkan.Ext.VK_NV_shader_subgroup_partitioned type VK_NV_SHADER_SUBGROUP_PARTITIONED_SPEC_VERSION = 1 pattern VK_NV_SHADER_SUBGROUP_PARTITIONED_SPEC_VERSION :: (Num a, Eq a) => a type VK_NV_SHADER_SUBGROUP_PARTITIONED_EXTENSION_NAME = "VK_NV_shader_subgroup_partitioned" pattern VK_NV_SHADER_SUBGROUP_PARTITIONED_EXTENSION_NAME :: CString -- | bitpos = 8 pattern VK_SUBGROUP_FEATURE_PARTITIONED_BIT_NV :: VkSubgroupFeatureBitmask a -- | This module allows to load vulkan symbols at runtime. -- -- It is based on Vulkan API function vkGetInstanceProcAddr that -- is a part of Vulkan core 1.0. Also, have a look at Vulkan -- loader page to see other reasons to load symbols manually. -- -- All FFI functions are present in two variants: xxxUnsafe and -- xxxSafe, the names stand for foreign import unsafe -- xxx foreign import safe xxx respectively. In particular, -- that does not mean that vkGetXxxProcSafe function cannot -- fail; it does error if the symbol is not present in the -- implementation! module Graphics.Vulkan.Marshal.Proc -- | Some of the vulkan functions defined in vulkan extensions are not -- available at the program linking time. These functions should be -- discovered at runtime. Vulkan api provides special functions for this, -- called vkGetInstanceProcAddr and -- vkGetDeviceProcAddr. This class provides a simpler discovery -- mechanism based on that function. For example, you can get -- vkCreateDebugReportCallbackEXT function as follows: -- --
-- vkGetInstanceProc @VkCreateDebugReportCallbackEXT vkInstance --class VulkanProc (proc :: Symbol) where { -- | Haskell signature for the vulkan function type family VkProcType proc; } -- | Name of the vulkan function vkProcSymbol :: VulkanProc proc => CString -- | Convert C function pointer to an ordinary haskell function. Use unsafe -- FFI (foreign import unsafe "dynamic" ...). unwrapVkProcPtrUnsafe :: VulkanProc proc => FunPtr (VkProcType proc) -> VkProcType proc -- | Convert C function pointer to an ordinary haskell function. Use safe -- FFI (foreign import safe "dynamic" ...). unwrapVkProcPtrSafe :: VulkanProc proc => FunPtr (VkProcType proc) -> VkProcType proc -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetInstanceProc :: forall proc. VulkanProc proc => VkInstance -> IO (VkProcType proc) -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetInstanceProcUnsafe :: forall proc. VulkanProc proc => VkInstance -> IO (VkProcType proc) -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetInstanceProcSafe :: forall proc. VulkanProc proc => VkInstance -> IO (VkProcType proc) -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. vkLookupInstanceProc :: forall proc. VulkanProc proc => VkInstance -> IO (Maybe (VkProcType proc)) -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. vkLookupInstanceProcUnsafe :: forall proc. VulkanProc proc => VkInstance -> IO (Maybe (VkProcType proc)) -- | An alternative to vkGetInstanceProcAddr with type inference -- and protection against typos. vkLookupInstanceProcSafe :: forall proc. VulkanProc proc => VkInstance -> IO (Maybe (VkProcType proc)) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetDeviceProc :: forall proc. VulkanProc proc => VkDevice -> IO (VkProcType proc) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetDeviceProcUnsafe :: forall proc. VulkanProc proc => VkDevice -> IO (VkProcType proc) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. -- -- Note, this is an unsafe function; it does not check if the result of -- vkGetInstanceProcAddr is a null function pointer. vkGetDeviceProcSafe :: forall proc. VulkanProc proc => VkDevice -> IO (VkProcType proc) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. vkLookupDeviceProc :: forall proc. VulkanProc proc => VkDevice -> IO (Maybe (VkProcType proc)) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. vkLookupDeviceProcUnsafe :: forall proc. VulkanProc proc => VkDevice -> IO (Maybe (VkProcType proc)) -- | An alternative to vkGetDeviceProcAddr with type inference and -- protection against typos. vkLookupDeviceProcSafe :: forall proc. VulkanProc proc => VkDevice -> IO (Maybe (VkProcType proc)) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function throws an error on failure. -- -- Consider using vkGetDeviceProc or vkGetInstanceProc for -- loading a symbol, because they can return a more optimized version of -- a function. Also note, you are likely not able to lookup an extension -- funcion using vkGetProc, because a corresponding symbol is -- simply not present in the vulkan loader library. vkGetProc :: forall proc. VulkanProc proc => IO (VkProcType proc) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function throws an error on failure. -- -- Consider using vkGetDeviceProc or vkGetInstanceProc for -- loading a symbol, because they can return a more optimized version of -- a function. Also note, you are likely not able to lookup an extension -- funcion using vkGetProc, because a corresponding symbol is -- simply not present in the vulkan loader library. vkGetProcUnsafe :: forall proc. VulkanProc proc => IO (VkProcType proc) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function throws an error on failure. -- -- Consider using vkGetDeviceProc or vkGetInstanceProc for -- loading a symbol, because they can return a more optimized version of -- a function. Also note, you are likely not able to lookup an extension -- funcion using vkGetProc, because a corresponding symbol is -- simply not present in the vulkan loader library. vkGetProcSafe :: forall proc. VulkanProc proc => IO (VkProcType proc) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function returns Nothing on failure ignoring an error -- message. -- -- Consider using vkGetDeviceProc or vkGetInstanceProc for -- loading a symbol, because they can return a more optimized version of -- a function. Also note, you are likely not able to lookup an extension -- funcion using vkLookupProc, because a corresponding symbol is -- simply not present in the vulkan loader library. vkLookupProc :: forall proc. VulkanProc proc => IO (Maybe (VkProcType proc)) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function returns Nothing on failure ignoring an error -- message. -- -- Consider using vkGetDeviceProc or vkGetInstanceProc for -- loading a symbol, because they can return a more optimized version of -- a function. Also note, you are likely not able to lookup an extension -- funcion using vkLookupProc, because a corresponding symbol is -- simply not present in the vulkan loader library. vkLookupProcUnsafe :: forall proc. VulkanProc proc => IO (Maybe (VkProcType proc)) -- | Locate Vulkan symbol dynamically at runtime using platform-dependent -- machinery, such as dlsym or GetProcAddress. This -- function returns Nothing on failure ignoring an error -- message. -- -- Consider using vkLookupDeviceProc or -- vkLookupInstanceProc for loading a symbol, because they can -- return a more optimized version of a function. Also note, you are -- likely not able to lookup an extension funcion using -- vkLookupProc, because a corresponding symbol is simply not -- present in the vulkan loader library. vkLookupProcSafe :: forall proc. VulkanProc proc => IO (Maybe (VkProcType proc)) -- | A value of type FunPtr a is a pointer to a function -- callable from foreign code. The type a will normally be a -- foreign type, a function type with zero or more arguments where -- --
-- foreign import ccall "stdlib.h &free" -- p_free :: FunPtr (Ptr a -> IO ()) ---- -- or a pointer to a Haskell function created using a wrapper stub -- declared to produce a FunPtr of the correct type. For example: -- --
-- type Compare = Int -> Int -> Bool -- foreign import ccall "wrapper" -- mkCompare :: Compare -> IO (FunPtr Compare) ---- -- Calls to wrapper stubs like mkCompare allocate storage, which -- should be released with freeHaskellFunPtr when no longer -- required. -- -- To convert FunPtr values to corresponding Haskell functions, -- one can define a dynamic stub for the specific foreign type, -- e.g. -- --
-- type IntFunction = CInt -> IO () -- foreign import ccall "dynamic" -- mkFun :: FunPtr IntFunction -> IntFunction --data FunPtr a -- | The constant nullFunPtr contains a distinguished value of -- FunPtr that is not associated with a valid memory location. nullFunPtr :: () => FunPtr a module Graphics.Vulkan.Ext.VK_KHR_draw_indirect_count type VkCmdDrawIndirectCountKHR = "vkCmdDrawIndirectCountKHR" pattern VkCmdDrawIndirectCountKHR :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirectCountKHR -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkBuffer countBuffer -- , VkDeviceSize countBufferOffset -- , uint32_t maxDrawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirectCountKHR registry at www.khronos.org type HS_vkCmdDrawIndirectCountKHR = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> VkBuffer " countBuffer" -> VkDeviceSize " countBufferOffset" -> Word32 " maxDrawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndirectCountKHR = FunPtr HS_vkCmdDrawIndirectCountKHR type VkCmdDrawIndexedIndirectCountKHR = "vkCmdDrawIndexedIndirectCountKHR" pattern VkCmdDrawIndexedIndirectCountKHR :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirectCountKHR -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkBuffer countBuffer -- , VkDeviceSize countBufferOffset -- , uint32_t maxDrawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirectCountKHR registry at www.khronos.org type HS_vkCmdDrawIndexedIndirectCountKHR = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> VkBuffer " countBuffer" -> VkDeviceSize " countBufferOffset" -> Word32 " maxDrawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndexedIndirectCountKHR = FunPtr HS_vkCmdDrawIndexedIndirectCountKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_KHR_DRAW_INDIRECT_COUNT_SPEC_VERSION = 1 pattern VK_KHR_DRAW_INDIRECT_COUNT_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_DRAW_INDIRECT_COUNT_EXTENSION_NAME = "VK_KHR_draw_indirect_count" pattern VK_KHR_DRAW_INDIRECT_COUNT_EXTENSION_NAME :: CString instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndexedIndirectCountKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndirectCountKHR" module Graphics.Vulkan.Ext.VK_EXT_direct_mode_display type VkReleaseDisplayEXT = "vkReleaseDisplayEXT" pattern VkReleaseDisplayEXT :: CString -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkReleaseDisplayEXT -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- ) ---- -- vkReleaseDisplayEXT registry at www.khronos.org type HS_vkReleaseDisplayEXT = VkPhysicalDevice " physicalDevice" -> VkDisplayKHR " display" -> IO VkResult type PFN_vkReleaseDisplayEXT = FunPtr HS_vkReleaseDisplayEXT -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION = 1 pattern VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME = "VK_EXT_direct_mode_display" pattern VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME :: CString instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkReleaseDisplayEXT" module Graphics.Vulkan.Ext.VK_AMD_draw_indirect_count type VkCmdDrawIndirectCountAMD = "vkCmdDrawIndirectCountAMD" pattern VkCmdDrawIndirectCountAMD :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirectCountAMD -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkBuffer countBuffer -- , VkDeviceSize countBufferOffset -- , uint32_t maxDrawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirectCountAMD registry at www.khronos.org type HS_vkCmdDrawIndirectCountAMD = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> VkBuffer " countBuffer" -> VkDeviceSize " countBufferOffset" -> Word32 " maxDrawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndirectCountAMD = FunPtr HS_vkCmdDrawIndirectCountAMD type VkCmdDrawIndexedIndirectCountAMD = "vkCmdDrawIndexedIndirectCountAMD" pattern VkCmdDrawIndexedIndirectCountAMD :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirectCountAMD -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkBuffer countBuffer -- , VkDeviceSize countBufferOffset -- , uint32_t maxDrawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirectCountAMD registry at www.khronos.org type HS_vkCmdDrawIndexedIndirectCountAMD = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> VkBuffer " countBuffer" -> VkDeviceSize " countBufferOffset" -> Word32 " maxDrawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndexedIndirectCountAMD = FunPtr HS_vkCmdDrawIndexedIndirectCountAMD newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_AMD_DRAW_INDIRECT_COUNT_SPEC_VERSION = 1 pattern VK_AMD_DRAW_INDIRECT_COUNT_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_DRAW_INDIRECT_COUNT_EXTENSION_NAME = "VK_AMD_draw_indirect_count" pattern VK_AMD_DRAW_INDIRECT_COUNT_EXTENSION_NAME :: CString instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndexedIndirectCountAMD" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndirectCountAMD" module Graphics.Vulkan.Ext.VK_AMD_buffer_marker type VkCmdWriteBufferMarkerAMD = "vkCmdWriteBufferMarkerAMD" pattern VkCmdWriteBufferMarkerAMD :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- -- Pipeline: transfer -- --
-- void vkCmdWriteBufferMarkerAMD -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlagBits pipelineStage -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , uint32_t marker -- ) ---- -- vkCmdWriteBufferMarkerAMD registry at www.khronos.org type HS_vkCmdWriteBufferMarkerAMD = VkCommandBuffer " commandBuffer" -> VkPipelineStageFlagBits " pipelineStage" -> VkBuffer " dstBuffer" -> VkDeviceSize " dstOffset" -> Word32 " marker" -> IO () type PFN_vkCmdWriteBufferMarkerAMD = FunPtr HS_vkCmdWriteBufferMarkerAMD newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | type = enum -- -- VkPipelineBindPoint registry at www.khronos.org newtype VkPipelineBindPoint VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint -- | type = enum -- -- VkPipelineCacheHeaderVersion registry at www.khronos.org newtype VkPipelineCacheHeaderVersion VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion newtype VkPipelineCreateBitmask (a :: FlagType) VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask -- | bitpos = 0 pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a -- | bitpos = 1 pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a -- | bitpos = 2 pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a newtype VkPipelineStageBitmask (a :: FlagType) VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask -- | Before subsequent commands are processed -- -- bitpos = 0 pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Draw/DispatchIndirect command fetch -- -- bitpos = 1 pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a -- | Vertex/index fetch -- -- bitpos = 2 pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a -- | Vertex shading -- -- bitpos = 3 pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation control shading -- -- bitpos = 4 pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation evaluation shading -- -- bitpos = 5 pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a -- | Geometry shading -- -- bitpos = 6 pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a -- | Fragment shading -- -- bitpos = 7 pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a -- | Early fragment (depth and stencil) tests -- -- bitpos = 8 pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Late fragment (depth and stencil) tests -- -- bitpos = 9 pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Color attachment writes -- -- bitpos = 10 pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a -- | Compute shading -- -- bitpos = 11 pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a -- | Transfer/copy operations -- -- bitpos = 12 pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a -- | After previous commands have completed -- -- bitpos = 13 pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Indicates host (CPU) is a source/sink of the dependency -- -- bitpos = 14 pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a -- | All stages of the graphics pipeline -- -- bitpos = 15 pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a -- | All stages supported on the queue -- -- bitpos = 16 pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a newtype VkPipelineCacheCreateFlagBits VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits newtype VkPipelineColorBlendStateCreateFlagBits VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask newtype VkPipelineDepthStencilStateCreateFlagBits VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits newtype VkPipelineDynamicStateCreateFlagBits VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits newtype VkPipelineInputAssemblyStateCreateFlagBits VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits newtype VkPipelineLayoutCreateFlagBits VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits newtype VkPipelineMultisampleStateCreateFlagBits VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits newtype VkPipelineRasterizationStateCreateFlagBits VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits newtype VkPipelineShaderStageCreateFlagBits VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask newtype VkPipelineTessellationStateCreateFlagBits VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits newtype VkPipelineVertexInputStateCreateFlagBits VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits newtype VkPipelineViewportStateCreateFlagBits VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_AMD_BUFFER_MARKER_SPEC_VERSION = 1 pattern VK_AMD_BUFFER_MARKER_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_BUFFER_MARKER_EXTENSION_NAME = "VK_AMD_buffer_marker" pattern VK_AMD_BUFFER_MARKER_EXTENSION_NAME :: CString instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdWriteBufferMarkerAMD" -- | This module is not part of auto-generated code based on vk.xml. -- Instead, it is hand-written to aggregate all generated code. module Graphics.Vulkan -- |
-- struct AHardwareBuffer; --data AHardwareBuffer -- |
-- struct ANativeWindow; --data ANativeWindow type VK_API_VERSION_1_0 = 4194304 -- |
-- // Vulkan 1.0 version number -- #define VK_API_VERSION_1_0 VK_MAKE_VERSION(1, 0, 0)// Patch version should always be set to 0 --pattern VK_API_VERSION_1_0 :: (Num a, Eq a) => a type VK_API_VERSION_1_1 = 4198400 -- |
-- // Vulkan 1.1 version number -- #define VK_API_VERSION_1_1 VK_MAKE_VERSION(1, 1, 0)// Patch version should always be set to 0 --pattern VK_API_VERSION_1_1 :: (Num a, Eq a) => a -- | A value of type Ptr a represents a pointer to an -- object, or an array of objects, which may be marshalled to or from -- Haskell values of type a. -- -- The type a will often be an instance of class Storable -- which provides the marshalling operations. However this is not -- essential, and you can provide your own operations to access the -- pointer. For example you might write small foreign functions to get or -- set the fields of a C struct. data Ptr a -- |
-- #if !defined(VK_DEFINE_NON_DISPATCHABLE_HANDLE) -- #if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) -- #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; -- #else -- #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; -- #endif -- #endif --newtype VkPtr a VkPtr :: Word64 -> VkPtr a type VK_HEADER_VERSION = 77 -- |
-- // Version of this file -- #define VK_HEADER_VERSION 77 --pattern VK_HEADER_VERSION :: (Num a, Eq a) => a -- |
-- #define VK_MAKE_VERSION(major, minor, patch) -- > (((major) << 22) | ((minor) << 12) | (patch)) --_VK_MAKE_VERSION :: Bits a => a -> a -> a -> a -- | Unify dispatchable and non-dispatchable vulkan pointer types. -- -- Dispatchable handles are represented as Ptr. -- -- Non-dispatchable handles are represented as VkPtr. class VulkanPtr ptr vkNullPtr :: VulkanPtr ptr => ptr a -- |
-- #define VK_NULL_HANDLE 0 --pattern VK_NULL_HANDLE :: (Eq (ptr a), VulkanPtr ptr) => ptr a -- |
-- #define VK_VERSION_MAJOR(version) ((uint32_t)(version) >> 22) --_VK_VERSION_MAJOR :: Bits a => a -> a -- |
-- #define VK_VERSION_MINOR(version) (((uint32_t)(version) >> 12) & 0x3ff) --_VK_VERSION_MINOR :: (Bits a, Num a) => a -> a -- |
-- #define VK_VERSION_PATCH(version) ((uint32_t)(version) & 0xfff) --_VK_VERSION_PATCH :: (Bits a, Num a) => a -> a -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type HS_vkVoidFunction = IO () -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T type VkDevice = Ptr VkDevice_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T -- | Opaque data type referenced by VkImage data VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- | Requires windows.h type DWORD = Word32 -- | Requires X11/Xlib.h data Display -- | Requires windows.h type HANDLE = Ptr () -- | Requires windows.h type HINSTANCE = Ptr () -- | Requires windows.h type HWND = Ptr () -- | Requires windows.h type LPCWSTR = Ptr CWchar -- | Requires mir_toolkit/client_types.h data MirConnection -- | Requires mir_toolkit/client_types.h data MirSurface -- | Requires X11extensionsXrandr.h type RROutput = CULong -- | Requires windows.h data SECURITY_ATTRIBUTES -- | Requires X11/Xlib.h type VisualID = CULong -- | Requires X11/Xlib.h type Window = CULong -- | Requires wayland-client.h data WlDisplay -- | Requires wayland-client.h data WlSurface -- | Requires xcb/xcb.h data XcbConnectionT -- | Requires xcb/xcb.h type XcbVisualidT = CULong -- | Requires xcb/xcb.h type XcbWindowT = CULong module Graphics.Vulkan.Ext.VK_EXT_debug_marker -- |
-- typedef struct VkDebugMarkerMarkerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pMarkerName;
-- float color[4];
-- } VkDebugMarkerMarkerInfoEXT;
--
--
-- VkDebugMarkerMarkerInfoEXT registry at www.khronos.org
type VkDebugMarkerMarkerInfoEXT = VkStruct VkDebugMarkerMarkerInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectNameInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- const char* pObjectName;
-- } VkDebugMarkerObjectNameInfoEXT;
--
--
-- VkDebugMarkerObjectNameInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectNameInfoEXT = VkStruct VkDebugMarkerObjectNameInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugMarkerObjectTagInfoEXT;
--
--
-- VkDebugMarkerObjectTagInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectTagInfoEXT = VkStruct VkDebugMarkerObjectTagInfoEXT'
newtype VkDebugReportBitmaskEXT (a :: FlagType)
VkDebugReportBitmaskEXT :: VkFlags -> VkDebugReportBitmaskEXT
pattern VkDebugReportFlagBitsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagBit
pattern VkDebugReportFlagsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_REPORT_INFORMATION_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_REPORT_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 3
pattern VK_DEBUG_REPORT_ERROR_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_REPORT_DEBUG_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | type = enum
--
-- VkDebugReportObjectTypeEXT registry at www.khronos.org
newtype VkDebugReportObjectTypeEXT
VkDebugReportObjectTypeEXT :: Int32 -> VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_OBJECT_TABLE_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT :: VkDebugReportObjectTypeEXT
newtype VkDebugUtilsMessageSeverityBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageSeverityBitmaskEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT
pattern VkDebugUtilsMessageSeverityFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
pattern VkDebugUtilsMessageSeverityFlagsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 8
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 12
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
newtype VkDebugUtilsMessageTypeBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageTypeBitmaskEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT
pattern VkDebugUtilsMessageTypeFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagBit
pattern VkDebugUtilsMessageTypeFlagsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
type VkDebugReportFlagBitsEXT = VkDebugReportBitmaskEXT FlagBit
type VkDebugReportFlagsEXT = VkDebugReportBitmaskEXT FlagMask
type VkDebugUtilsMessageSeverityFlagBitsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
type VkDebugUtilsMessageSeverityFlagsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
type VkDebugUtilsMessageTypeFlagBitsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagBit
type VkDebugUtilsMessageTypeFlagsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkDebugMarkerSetObjectTagEXT = "vkDebugMarkerSetObjectTagEXT"
pattern VkDebugMarkerSetObjectTagEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkDebugMarkerSetObjectTagEXT -- ( VkDevice device -- , const VkDebugMarkerObjectTagInfoEXT* pTagInfo -- ) ---- -- vkDebugMarkerSetObjectTagEXT registry at www.khronos.org type HS_vkDebugMarkerSetObjectTagEXT = VkDevice " device" -> Ptr VkDebugMarkerObjectTagInfoEXT " pTagInfo" -> IO VkResult type PFN_vkDebugMarkerSetObjectTagEXT = FunPtr HS_vkDebugMarkerSetObjectTagEXT type VkDebugMarkerSetObjectNameEXT = "vkDebugMarkerSetObjectNameEXT" pattern VkDebugMarkerSetObjectNameEXT :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkDebugMarkerSetObjectNameEXT -- ( VkDevice device -- , const VkDebugMarkerObjectNameInfoEXT* pNameInfo -- ) ---- -- vkDebugMarkerSetObjectNameEXT registry at www.khronos.org type HS_vkDebugMarkerSetObjectNameEXT = VkDevice " device" -> Ptr VkDebugMarkerObjectNameInfoEXT " pNameInfo" -> IO VkResult type PFN_vkDebugMarkerSetObjectNameEXT = FunPtr HS_vkDebugMarkerSetObjectNameEXT type VkCmdDebugMarkerBeginEXT = "vkCmdDebugMarkerBeginEXT" pattern VkCmdDebugMarkerBeginEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdDebugMarkerBeginEXT -- ( VkCommandBuffer commandBuffer -- , const VkDebugMarkerMarkerInfoEXT* pMarkerInfo -- ) ---- -- vkCmdDebugMarkerBeginEXT registry at www.khronos.org type HS_vkCmdDebugMarkerBeginEXT = VkCommandBuffer " commandBuffer" -> Ptr VkDebugMarkerMarkerInfoEXT " pMarkerInfo" -> IO () type PFN_vkCmdDebugMarkerBeginEXT = FunPtr HS_vkCmdDebugMarkerBeginEXT type VkCmdDebugMarkerEndEXT = "vkCmdDebugMarkerEndEXT" pattern VkCmdDebugMarkerEndEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdDebugMarkerEndEXT -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdDebugMarkerEndEXT registry at www.khronos.org type HS_vkCmdDebugMarkerEndEXT = VkCommandBuffer " commandBuffer" -> IO () type PFN_vkCmdDebugMarkerEndEXT = FunPtr HS_vkCmdDebugMarkerEndEXT type VkCmdDebugMarkerInsertEXT = "vkCmdDebugMarkerInsertEXT" pattern VkCmdDebugMarkerInsertEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdDebugMarkerInsertEXT -- ( VkCommandBuffer commandBuffer -- , const VkDebugMarkerMarkerInfoEXT* pMarkerInfo -- ) ---- -- vkCmdDebugMarkerInsertEXT registry at www.khronos.org type HS_vkCmdDebugMarkerInsertEXT = VkCommandBuffer " commandBuffer" -> Ptr VkDebugMarkerMarkerInfoEXT " pMarkerInfo" -> IO () type PFN_vkCmdDebugMarkerInsertEXT = FunPtr HS_vkCmdDebugMarkerInsertEXT -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkDebugReportCallbackCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportFlagsEXT flags;
-- PFN_vkDebugReportCallbackEXT pfnCallback;
-- void* pUserData;
-- } VkDebugReportCallbackCreateInfoEXT;
--
--
-- VkDebugReportCallbackCreateInfoEXT registry at www.khronos.org
type VkDebugReportCallbackCreateInfoEXT = VkStruct VkDebugReportCallbackCreateInfoEXT'
-- |
-- typedef struct VkDebugUtilsObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectType objectType;
-- uint64_t objectHandle;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugUtilsObjectTagInfoEXT;
--
--
-- VkDebugUtilsObjectTagInfoEXT registry at www.khronos.org
type VkDebugUtilsObjectTagInfoEXT = VkStruct VkDebugUtilsObjectTagInfoEXT'
type VK_EXT_DEBUG_MARKER_SPEC_VERSION = 4
pattern VK_EXT_DEBUG_MARKER_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DEBUG_MARKER_EXTENSION_NAME = "VK_EXT_debug_marker"
pattern VK_EXT_DEBUG_MARKER_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDebugMarkerInsertEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDebugMarkerEndEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDebugMarkerBeginEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDebugMarkerSetObjectNameEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDebugMarkerSetObjectTagEXT"
module Graphics.Vulkan.Ext.VK_EXT_debug_utils
-- |
-- typedef struct VkApplicationInfo {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pApplicationName;
-- uint32_t applicationVersion;
-- const char* pEngineName;
-- uint32_t engineVersion;
-- uint32_t apiVersion;
-- } VkApplicationInfo;
--
--
-- VkApplicationInfo registry at www.khronos.org
type VkApplicationInfo = VkStruct VkApplicationInfo'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkDebugUtilsLabelEXT {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pLabelName;
-- float color[4];
-- } VkDebugUtilsLabelEXT;
--
--
-- VkDebugUtilsLabelEXT registry at www.khronos.org
type VkDebugUtilsLabelEXT = VkStruct VkDebugUtilsLabelEXT'
newtype VkDebugReportBitmaskEXT (a :: FlagType)
VkDebugReportBitmaskEXT :: VkFlags -> VkDebugReportBitmaskEXT
pattern VkDebugReportFlagBitsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagBit
pattern VkDebugReportFlagsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_REPORT_INFORMATION_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_REPORT_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 3
pattern VK_DEBUG_REPORT_ERROR_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_REPORT_DEBUG_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | type = enum
--
-- VkDebugReportObjectTypeEXT registry at www.khronos.org
newtype VkDebugReportObjectTypeEXT
VkDebugReportObjectTypeEXT :: Int32 -> VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_OBJECT_TABLE_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT :: VkDebugReportObjectTypeEXT
newtype VkDebugUtilsMessageSeverityBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageSeverityBitmaskEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT
pattern VkDebugUtilsMessageSeverityFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
pattern VkDebugUtilsMessageSeverityFlagsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 8
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 12
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
newtype VkDebugUtilsMessageTypeBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageTypeBitmaskEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT
pattern VkDebugUtilsMessageTypeFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagBit
pattern VkDebugUtilsMessageTypeFlagsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
type VkDebugReportFlagBitsEXT = VkDebugReportBitmaskEXT FlagBit
type VkDebugReportFlagsEXT = VkDebugReportBitmaskEXT FlagMask
type VkDebugUtilsMessageSeverityFlagBitsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
type VkDebugUtilsMessageSeverityFlagsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
type VkDebugUtilsMessageTypeFlagBitsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagBit
type VkDebugUtilsMessageTypeFlagsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagMask
-- |
-- typedef struct VkDebugUtilsMessengerCallbackDataEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugUtilsMessengerCallbackDataFlagsEXT flags;
-- const char* pMessageIdName;
-- int32_t messageIdNumber;
-- const char* pMessage;
-- uint32_t queueLabelCount;
-- VkDebugUtilsLabelEXT* pQueueLabels;
-- uint32_t cmdBufLabelCount;
-- VkDebugUtilsLabelEXT* pCmdBufLabels;
-- uint32_t objectCount;
-- VkDebugUtilsObjectNameInfoEXT* pObjects;
-- } VkDebugUtilsMessengerCallbackDataEXT;
--
--
-- VkDebugUtilsMessengerCallbackDataEXT registry at
-- www.khronos.org
type VkDebugUtilsMessengerCallbackDataEXT = VkStruct VkDebugUtilsMessengerCallbackDataEXT'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkDebugUtilsMessengerCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugUtilsMessengerCreateFlagsEXT flags;
-- VkDebugUtilsMessageSeverityFlagsEXT messageSeverity;
-- VkDebugUtilsMessageTypeFlagsEXT messageType;
-- PFN_vkDebugUtilsMessengerCallbackEXT pfnUserCallback;
-- void* pUserData;
-- } VkDebugUtilsMessengerCreateInfoEXT;
--
--
-- VkDebugUtilsMessengerCreateInfoEXT registry at www.khronos.org
type VkDebugUtilsMessengerCreateInfoEXT = VkStruct VkDebugUtilsMessengerCreateInfoEXT'
-- |
-- typedef struct VkDebugUtilsObjectNameInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectType objectType;
-- uint64_t objectHandle;
-- const char* pObjectName;
-- } VkDebugUtilsObjectNameInfoEXT;
--
--
-- VkDebugUtilsObjectNameInfoEXT registry at www.khronos.org
type VkDebugUtilsObjectNameInfoEXT = VkStruct VkDebugUtilsObjectNameInfoEXT'
-- |
-- typedef struct VkDebugUtilsObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectType objectType;
-- uint64_t objectHandle;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugUtilsObjectTagInfoEXT;
--
--
-- VkDebugUtilsObjectTagInfoEXT registry at www.khronos.org
type VkDebugUtilsObjectTagInfoEXT = VkStruct VkDebugUtilsObjectTagInfoEXT'
-- |
-- typedef struct VkInstanceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkInstanceCreateFlags flags;
-- const VkApplicationInfo* pApplicationInfo;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- } VkInstanceCreateInfo;
--
--
-- VkInstanceCreateInfo registry at www.khronos.org
type VkInstanceCreateInfo = VkStruct VkInstanceCreateInfo'
-- | type = enum
--
-- VkObjectEntryTypeNVX registry at www.khronos.org
newtype VkObjectEntryTypeNVX
VkObjectEntryTypeNVX :: Int32 -> VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_DESCRIPTOR_SET_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PIPELINE_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_INDEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_VERTEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PUSH_CONSTANT_NVX :: VkObjectEntryTypeNVX
newtype VkObjectEntryUsageBitmaskNVX (a :: FlagType)
VkObjectEntryUsageBitmaskNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX
pattern VkObjectEntryUsageFlagBitsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagBit
pattern VkObjectEntryUsageFlagsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagMask
-- | bitpos = 0
pattern VK_OBJECT_ENTRY_USAGE_GRAPHICS_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | bitpos = 1
pattern VK_OBJECT_ENTRY_USAGE_COMPUTE_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | Enums to track objects of various types
--
-- type = enum
--
-- VkObjectType registry at www.khronos.org
newtype VkObjectType
VkObjectType :: Int32 -> VkObjectType
pattern VK_OBJECT_TYPE_UNKNOWN :: VkObjectType
-- | VkInstance
pattern VK_OBJECT_TYPE_INSTANCE :: VkObjectType
-- | VkPhysicalDevice
pattern VK_OBJECT_TYPE_PHYSICAL_DEVICE :: VkObjectType
-- | VkDevice
pattern VK_OBJECT_TYPE_DEVICE :: VkObjectType
-- | VkQueue
pattern VK_OBJECT_TYPE_QUEUE :: VkObjectType
-- | VkSemaphore
pattern VK_OBJECT_TYPE_SEMAPHORE :: VkObjectType
-- | VkCommandBuffer
pattern VK_OBJECT_TYPE_COMMAND_BUFFER :: VkObjectType
-- | VkFence
pattern VK_OBJECT_TYPE_FENCE :: VkObjectType
-- | VkDeviceMemory
pattern VK_OBJECT_TYPE_DEVICE_MEMORY :: VkObjectType
-- | VkBuffer
pattern VK_OBJECT_TYPE_BUFFER :: VkObjectType
-- | VkImage
pattern VK_OBJECT_TYPE_IMAGE :: VkObjectType
-- | VkEvent
pattern VK_OBJECT_TYPE_EVENT :: VkObjectType
-- | VkQueryPool
pattern VK_OBJECT_TYPE_QUERY_POOL :: VkObjectType
-- | VkBufferView
pattern VK_OBJECT_TYPE_BUFFER_VIEW :: VkObjectType
-- | VkImageView
pattern VK_OBJECT_TYPE_IMAGE_VIEW :: VkObjectType
-- | VkShaderModule
pattern VK_OBJECT_TYPE_SHADER_MODULE :: VkObjectType
-- | VkPipelineCache
pattern VK_OBJECT_TYPE_PIPELINE_CACHE :: VkObjectType
-- | VkPipelineLayout
pattern VK_OBJECT_TYPE_PIPELINE_LAYOUT :: VkObjectType
-- | VkRenderPass
pattern VK_OBJECT_TYPE_RENDER_PASS :: VkObjectType
-- | VkPipeline
pattern VK_OBJECT_TYPE_PIPELINE :: VkObjectType
-- | VkDescriptorSetLayout
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT :: VkObjectType
-- | VkSampler
pattern VK_OBJECT_TYPE_SAMPLER :: VkObjectType
-- | VkDescriptorPool
pattern VK_OBJECT_TYPE_DESCRIPTOR_POOL :: VkObjectType
-- | VkDescriptorSet
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET :: VkObjectType
-- | VkFramebuffer
pattern VK_OBJECT_TYPE_FRAMEBUFFER :: VkObjectType
-- | VkCommandPool
pattern VK_OBJECT_TYPE_COMMAND_POOL :: VkObjectType
type VkObjectEntryUsageFlagBitsNVX = VkObjectEntryUsageBitmaskNVX FlagBit
type VkObjectEntryUsageFlagsNVX = VkObjectEntryUsageBitmaskNVX FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkSetDebugUtilsObjectNameEXT = "vkSetDebugUtilsObjectNameEXT"
pattern VkSetDebugUtilsObjectNameEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkSetDebugUtilsObjectNameEXT -- ( VkDevice device -- , const VkDebugUtilsObjectNameInfoEXT* pNameInfo -- ) ---- -- vkSetDebugUtilsObjectNameEXT registry at www.khronos.org type HS_vkSetDebugUtilsObjectNameEXT = VkDevice " device" -> Ptr VkDebugUtilsObjectNameInfoEXT " pNameInfo" -> IO VkResult type PFN_vkSetDebugUtilsObjectNameEXT = FunPtr HS_vkSetDebugUtilsObjectNameEXT type VkSetDebugUtilsObjectTagEXT = "vkSetDebugUtilsObjectTagEXT" pattern VkSetDebugUtilsObjectTagEXT :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkSetDebugUtilsObjectTagEXT -- ( VkDevice device -- , const VkDebugUtilsObjectTagInfoEXT* pTagInfo -- ) ---- -- vkSetDebugUtilsObjectTagEXT registry at www.khronos.org type HS_vkSetDebugUtilsObjectTagEXT = VkDevice " device" -> Ptr VkDebugUtilsObjectTagInfoEXT " pTagInfo" -> IO VkResult type PFN_vkSetDebugUtilsObjectTagEXT = FunPtr HS_vkSetDebugUtilsObjectTagEXT type VkQueueBeginDebugUtilsLabelEXT = "vkQueueBeginDebugUtilsLabelEXT" pattern VkQueueBeginDebugUtilsLabelEXT :: CString -- |
-- void vkQueueBeginDebugUtilsLabelEXT -- ( VkQueue queue -- , const VkDebugUtilsLabelEXT* pLabelInfo -- ) ---- -- vkQueueBeginDebugUtilsLabelEXT registry at www.khronos.org type HS_vkQueueBeginDebugUtilsLabelEXT = VkQueue " queue" -> Ptr VkDebugUtilsLabelEXT " pLabelInfo" -> IO () type PFN_vkQueueBeginDebugUtilsLabelEXT = FunPtr HS_vkQueueBeginDebugUtilsLabelEXT type VkQueueEndDebugUtilsLabelEXT = "vkQueueEndDebugUtilsLabelEXT" pattern VkQueueEndDebugUtilsLabelEXT :: CString -- |
-- void vkQueueEndDebugUtilsLabelEXT -- ( VkQueue queue -- ) ---- -- vkQueueEndDebugUtilsLabelEXT registry at www.khronos.org type HS_vkQueueEndDebugUtilsLabelEXT = VkQueue " queue" -> IO () type PFN_vkQueueEndDebugUtilsLabelEXT = FunPtr HS_vkQueueEndDebugUtilsLabelEXT type VkQueueInsertDebugUtilsLabelEXT = "vkQueueInsertDebugUtilsLabelEXT" pattern VkQueueInsertDebugUtilsLabelEXT :: CString -- |
-- void vkQueueInsertDebugUtilsLabelEXT -- ( VkQueue queue -- , const VkDebugUtilsLabelEXT* pLabelInfo -- ) ---- -- vkQueueInsertDebugUtilsLabelEXT registry at www.khronos.org type HS_vkQueueInsertDebugUtilsLabelEXT = VkQueue " queue" -> Ptr VkDebugUtilsLabelEXT " pLabelInfo" -> IO () type PFN_vkQueueInsertDebugUtilsLabelEXT = FunPtr HS_vkQueueInsertDebugUtilsLabelEXT type VkCmdBeginDebugUtilsLabelEXT = "vkCmdBeginDebugUtilsLabelEXT" pattern VkCmdBeginDebugUtilsLabelEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBeginDebugUtilsLabelEXT -- ( VkCommandBuffer commandBuffer -- , const VkDebugUtilsLabelEXT* pLabelInfo -- ) ---- -- vkCmdBeginDebugUtilsLabelEXT registry at www.khronos.org type HS_vkCmdBeginDebugUtilsLabelEXT = VkCommandBuffer " commandBuffer" -> Ptr VkDebugUtilsLabelEXT " pLabelInfo" -> IO () type PFN_vkCmdBeginDebugUtilsLabelEXT = FunPtr HS_vkCmdBeginDebugUtilsLabelEXT type VkCmdEndDebugUtilsLabelEXT = "vkCmdEndDebugUtilsLabelEXT" pattern VkCmdEndDebugUtilsLabelEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdEndDebugUtilsLabelEXT -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdEndDebugUtilsLabelEXT registry at www.khronos.org type HS_vkCmdEndDebugUtilsLabelEXT = VkCommandBuffer " commandBuffer" -> IO () type PFN_vkCmdEndDebugUtilsLabelEXT = FunPtr HS_vkCmdEndDebugUtilsLabelEXT type VkCmdInsertDebugUtilsLabelEXT = "vkCmdInsertDebugUtilsLabelEXT" pattern VkCmdInsertDebugUtilsLabelEXT :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdInsertDebugUtilsLabelEXT -- ( VkCommandBuffer commandBuffer -- , const VkDebugUtilsLabelEXT* pLabelInfo -- ) ---- -- vkCmdInsertDebugUtilsLabelEXT registry at www.khronos.org type HS_vkCmdInsertDebugUtilsLabelEXT = VkCommandBuffer " commandBuffer" -> Ptr VkDebugUtilsLabelEXT " pLabelInfo" -> IO () type PFN_vkCmdInsertDebugUtilsLabelEXT = FunPtr HS_vkCmdInsertDebugUtilsLabelEXT type VkCreateDebugUtilsMessengerEXT = "vkCreateDebugUtilsMessengerEXT" pattern VkCreateDebugUtilsMessengerEXT :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY. -- --
-- VkResult vkCreateDebugUtilsMessengerEXT -- ( VkInstance instance -- , const VkDebugUtilsMessengerCreateInfoEXT* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDebugUtilsMessengerEXT* pMessenger -- ) ---- -- vkCreateDebugUtilsMessengerEXT registry at www.khronos.org type HS_vkCreateDebugUtilsMessengerEXT = VkInstance " instance" -> Ptr VkDebugUtilsMessengerCreateInfoEXT " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDebugUtilsMessengerEXT " pMessenger" -> IO VkResult type PFN_vkCreateDebugUtilsMessengerEXT = FunPtr HS_vkCreateDebugUtilsMessengerEXT type VkDestroyDebugUtilsMessengerEXT = "vkDestroyDebugUtilsMessengerEXT" pattern VkDestroyDebugUtilsMessengerEXT :: CString -- |
-- void vkDestroyDebugUtilsMessengerEXT -- ( VkInstance instance -- , VkDebugUtilsMessengerEXT messenger -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDebugUtilsMessengerEXT registry at www.khronos.org type HS_vkDestroyDebugUtilsMessengerEXT = VkInstance " instance" -> VkDebugUtilsMessengerEXT " messenger" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDebugUtilsMessengerEXT = FunPtr HS_vkDestroyDebugUtilsMessengerEXT type VkSubmitDebugUtilsMessageEXT = "vkSubmitDebugUtilsMessageEXT" pattern VkSubmitDebugUtilsMessageEXT :: CString -- |
-- void vkSubmitDebugUtilsMessageEXT -- ( VkInstance instance -- , VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity -- , VkDebugUtilsMessageTypeFlagsEXT messageTypes -- , const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData -- ) ---- -- vkSubmitDebugUtilsMessageEXT registry at www.khronos.org type HS_vkSubmitDebugUtilsMessageEXT = VkInstance " instance" -> VkDebugUtilsMessageSeverityFlagBitsEXT " messageSeverity" -> VkDebugUtilsMessageTypeFlagsEXT " messageTypes" -> Ptr VkDebugUtilsMessengerCallbackDataEXT " pCallbackData" -> IO () type PFN_vkSubmitDebugUtilsMessageEXT = FunPtr HS_vkSubmitDebugUtilsMessageEXT -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDebugMarkerMarkerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pMarkerName;
-- float color[4];
-- } VkDebugMarkerMarkerInfoEXT;
--
--
-- VkDebugMarkerMarkerInfoEXT registry at www.khronos.org
type VkDebugMarkerMarkerInfoEXT = VkStruct VkDebugMarkerMarkerInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectNameInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- const char* pObjectName;
-- } VkDebugMarkerObjectNameInfoEXT;
--
--
-- VkDebugMarkerObjectNameInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectNameInfoEXT = VkStruct VkDebugMarkerObjectNameInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugMarkerObjectTagInfoEXT;
--
--
-- VkDebugMarkerObjectTagInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectTagInfoEXT = VkStruct VkDebugMarkerObjectTagInfoEXT'
-- |
-- typedef struct VkDebugReportCallbackCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportFlagsEXT flags;
-- PFN_vkDebugReportCallbackEXT pfnCallback;
-- void* pUserData;
-- } VkDebugReportCallbackCreateInfoEXT;
--
--
-- VkDebugReportCallbackCreateInfoEXT registry at www.khronos.org
type VkDebugReportCallbackCreateInfoEXT = VkStruct VkDebugReportCallbackCreateInfoEXT'
type VK_EXT_DEBUG_UTILS_SPEC_VERSION = 1
pattern VK_EXT_DEBUG_UTILS_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DEBUG_UTILS_EXTENSION_NAME = "VK_EXT_debug_utils"
pattern VK_EXT_DEBUG_UTILS_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_NAME_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_UTILS_OBJECT_TAG_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_UTILS_LABEL_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CALLBACK_DATA_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT :: VkStructureType
-- | VkDebugUtilsMessengerEXT
pattern VK_OBJECT_TYPE_DEBUG_UTILS_MESSENGER_EXT :: VkObjectType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkSubmitDebugUtilsMessageEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDebugUtilsMessengerEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDebugUtilsMessengerEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdInsertDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdEndDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBeginDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueInsertDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueEndDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueBeginDebugUtilsLabelEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkSetDebugUtilsObjectTagEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkSetDebugUtilsObjectNameEXT"
module Graphics.Vulkan.Ext.VK_EXT_debug_report
-- |
-- typedef struct VkApplicationInfo {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pApplicationName;
-- uint32_t applicationVersion;
-- const char* pEngineName;
-- uint32_t engineVersion;
-- uint32_t apiVersion;
-- } VkApplicationInfo;
--
--
-- VkApplicationInfo registry at www.khronos.org
type VkApplicationInfo = VkStruct VkApplicationInfo'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkDebugReportCallbackCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportFlagsEXT flags;
-- PFN_vkDebugReportCallbackEXT pfnCallback;
-- void* pUserData;
-- } VkDebugReportCallbackCreateInfoEXT;
--
--
-- VkDebugReportCallbackCreateInfoEXT registry at www.khronos.org
type VkDebugReportCallbackCreateInfoEXT = VkStruct VkDebugReportCallbackCreateInfoEXT'
newtype VkDebugReportBitmaskEXT (a :: FlagType)
VkDebugReportBitmaskEXT :: VkFlags -> VkDebugReportBitmaskEXT
pattern VkDebugReportFlagBitsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagBit
pattern VkDebugReportFlagsEXT :: VkFlags -> VkDebugReportBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_REPORT_INFORMATION_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_REPORT_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 3
pattern VK_DEBUG_REPORT_ERROR_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_REPORT_DEBUG_BIT_EXT :: VkDebugReportBitmaskEXT a
-- | type = enum
--
-- VkDebugReportObjectTypeEXT registry at www.khronos.org
newtype VkDebugReportObjectTypeEXT
VkDebugReportObjectTypeEXT :: Int32 -> VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_OBJECT_TABLE_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT :: VkDebugReportObjectTypeEXT
newtype VkDebugUtilsMessageSeverityBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageSeverityBitmaskEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT
pattern VkDebugUtilsMessageSeverityFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
pattern VkDebugUtilsMessageSeverityFlagsEXT :: VkFlags -> VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 4
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 8
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
-- | bitpos = 12
pattern VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT :: VkDebugUtilsMessageSeverityBitmaskEXT a
newtype VkDebugUtilsMessageTypeBitmaskEXT (a :: FlagType)
VkDebugUtilsMessageTypeBitmaskEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT
pattern VkDebugUtilsMessageTypeFlagBitsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagBit
pattern VkDebugUtilsMessageTypeFlagsEXT :: VkFlags -> VkDebugUtilsMessageTypeBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 1
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
-- | bitpos = 2
pattern VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT :: VkDebugUtilsMessageTypeBitmaskEXT a
type VkDebugReportFlagBitsEXT = VkDebugReportBitmaskEXT FlagBit
type VkDebugReportFlagsEXT = VkDebugReportBitmaskEXT FlagMask
type VkDebugUtilsMessageSeverityFlagBitsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagBit
type VkDebugUtilsMessageSeverityFlagsEXT = VkDebugUtilsMessageSeverityBitmaskEXT FlagMask
type VkDebugUtilsMessageTypeFlagBitsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagBit
type VkDebugUtilsMessageTypeFlagsEXT = VkDebugUtilsMessageTypeBitmaskEXT FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkInstanceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkInstanceCreateFlags flags;
-- const VkApplicationInfo* pApplicationInfo;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- } VkInstanceCreateInfo;
--
--
-- VkInstanceCreateInfo registry at www.khronos.org
type VkInstanceCreateInfo = VkStruct VkInstanceCreateInfo'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkCreateDebugReportCallbackEXT = "vkCreateDebugReportCallbackEXT"
pattern VkCreateDebugReportCallbackEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY.
--
-- -- VkResult vkCreateDebugReportCallbackEXT -- ( VkInstance instance -- , const VkDebugReportCallbackCreateInfoEXT* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDebugReportCallbackEXT* pCallback -- ) ---- -- vkCreateDebugReportCallbackEXT registry at www.khronos.org type HS_vkCreateDebugReportCallbackEXT = VkInstance " instance" -> Ptr VkDebugReportCallbackCreateInfoEXT " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDebugReportCallbackEXT " pCallback" -> IO VkResult type PFN_vkCreateDebugReportCallbackEXT = FunPtr HS_vkCreateDebugReportCallbackEXT type VkDestroyDebugReportCallbackEXT = "vkDestroyDebugReportCallbackEXT" pattern VkDestroyDebugReportCallbackEXT :: CString -- |
-- void vkDestroyDebugReportCallbackEXT -- ( VkInstance instance -- , VkDebugReportCallbackEXT callback -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDebugReportCallbackEXT registry at www.khronos.org type HS_vkDestroyDebugReportCallbackEXT = VkInstance " instance" -> VkDebugReportCallbackEXT " callback" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDebugReportCallbackEXT = FunPtr HS_vkDestroyDebugReportCallbackEXT type VkDebugReportMessageEXT = "vkDebugReportMessageEXT" pattern VkDebugReportMessageEXT :: CString -- |
-- void vkDebugReportMessageEXT -- ( VkInstance instance -- , VkDebugReportFlagsEXT flags -- , VkDebugReportObjectTypeEXT objectType -- , uint64_t object -- , size_t location -- , int32_t messageCode -- , const char* pLayerPrefix -- , const char* pMessage -- ) ---- -- vkDebugReportMessageEXT registry at www.khronos.org type HS_vkDebugReportMessageEXT = VkInstance " instance" -> VkDebugReportFlagsEXT " flags" -> VkDebugReportObjectTypeEXT " objectType" -> Word64 " object" -> CSize " location" -> Int32 " messageCode" -> CString " pLayerPrefix" -> CString " pMessage" -> IO () type PFN_vkDebugReportMessageEXT = FunPtr HS_vkDebugReportMessageEXT -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDebugMarkerMarkerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pMarkerName;
-- float color[4];
-- } VkDebugMarkerMarkerInfoEXT;
--
--
-- VkDebugMarkerMarkerInfoEXT registry at www.khronos.org
type VkDebugMarkerMarkerInfoEXT = VkStruct VkDebugMarkerMarkerInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectNameInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- const char* pObjectName;
-- } VkDebugMarkerObjectNameInfoEXT;
--
--
-- VkDebugMarkerObjectNameInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectNameInfoEXT = VkStruct VkDebugMarkerObjectNameInfoEXT'
-- |
-- typedef struct VkDebugMarkerObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDebugReportObjectTypeEXT objectType;
-- uint64_t object;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugMarkerObjectTagInfoEXT;
--
--
-- VkDebugMarkerObjectTagInfoEXT registry at www.khronos.org
type VkDebugMarkerObjectTagInfoEXT = VkStruct VkDebugMarkerObjectTagInfoEXT'
-- |
-- typedef struct VkDebugUtilsObjectTagInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectType objectType;
-- uint64_t objectHandle;
-- uint64_t tagName;
-- size_t tagSize;
-- const void* pTag;
-- } VkDebugUtilsObjectTagInfoEXT;
--
--
-- VkDebugUtilsObjectTagInfoEXT registry at www.khronos.org
type VkDebugUtilsObjectTagInfoEXT = VkStruct VkDebugUtilsObjectTagInfoEXT'
type VK_EXT_DEBUG_REPORT_SPEC_VERSION = 9
pattern VK_EXT_DEBUG_REPORT_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DEBUG_REPORT_EXTENSION_NAME = "VK_EXT_debug_report"
pattern VK_EXT_DEBUG_REPORT_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT :: VkStructureType
pattern VK_ERROR_VALIDATION_FAILED_EXT :: VkResult
pattern VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT :: () => () => VkStructureType
-- | VkDebugReportCallbackEXT
pattern VK_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT :: VkObjectType
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_EXT :: () => () => VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT :: VkDebugReportObjectTypeEXT
pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT :: VkDebugReportObjectTypeEXT
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDebugReportMessageEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDebugReportCallbackEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDebugReportCallbackEXT"
module Graphics.Vulkan.Ext.VK_KHR_external_fence_fd
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
-- |
-- typedef struct VkFenceGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkFence fence;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkFenceGetFdInfoKHR;
--
--
-- VkFenceGetFdInfoKHR registry at www.khronos.org
type VkFenceGetFdInfoKHR = VkStruct VkFenceGetFdInfoKHR'
newtype VkFenceCreateBitmask (a :: FlagType)
VkFenceCreateBitmask :: VkFlags -> VkFenceCreateBitmask
pattern VkFenceCreateFlagBits :: VkFlags -> VkFenceCreateBitmask FlagBit
pattern VkFenceCreateFlags :: VkFlags -> VkFenceCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_CREATE_SIGNALED_BIT :: VkFenceCreateBitmask a
newtype VkFenceImportBitmask (a :: FlagType)
VkFenceImportBitmask :: VkFlags -> VkFenceImportBitmask
pattern VkFenceImportFlagBits :: VkFlags -> VkFenceImportBitmask FlagBit
pattern VkFenceImportFlags :: VkFlags -> VkFenceImportBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_IMPORT_TEMPORARY_BIT :: VkFenceImportBitmask a
type VkFenceCreateFlagBits = VkFenceCreateBitmask FlagBit
type VkFenceCreateFlags = VkFenceCreateBitmask FlagMask
type VkFenceImportFlagBits = VkFenceImportBitmask FlagBit
newtype VkFenceImportFlagBitsKHR
VkFenceImportFlagBitsKHR :: VkFlags -> VkFenceImportFlagBitsKHR
type VkFenceImportFlags = VkFenceImportBitmask FlagMask
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkImportFenceFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkFence fence;
-- VkFenceImportFlags flags;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportFenceFdInfoKHR;
--
--
-- VkImportFenceFdInfoKHR registry at www.khronos.org
type VkImportFenceFdInfoKHR = VkStruct VkImportFenceFdInfoKHR'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkImportFenceFdKHR = "vkImportFenceFdKHR"
pattern VkImportFenceFdKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_INVALID_EXTERNAL_HANDLE.
--
-- -- VkResult vkImportFenceFdKHR -- ( VkDevice device -- , const VkImportFenceFdInfoKHR* pImportFenceFdInfo -- ) ---- -- vkImportFenceFdKHR registry at www.khronos.org type HS_vkImportFenceFdKHR = VkDevice " device" -> Ptr VkImportFenceFdInfoKHR " pImportFenceFdInfo" -> IO VkResult type PFN_vkImportFenceFdKHR = FunPtr HS_vkImportFenceFdKHR type VkGetFenceFdKHR = "vkGetFenceFdKHR" pattern VkGetFenceFdKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_OUT_OF_HOST_MEMORY. -- --
-- VkResult vkGetFenceFdKHR -- ( VkDevice device -- , const VkFenceGetFdInfoKHR* pGetFdInfo -- , int* pFd -- ) ---- -- vkGetFenceFdKHR registry at www.khronos.org type HS_vkGetFenceFdKHR = VkDevice " device" -> Ptr VkFenceGetFdInfoKHR " pGetFdInfo" -> Ptr CInt " pFd" -> IO VkResult type PFN_vkGetFenceFdKHR = FunPtr HS_vkGetFenceFdKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkFenceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFenceCreateFlags flags;
-- } VkFenceCreateInfo;
--
--
-- VkFenceCreateInfo registry at www.khronos.org
type VkFenceCreateInfo = VkStruct VkFenceCreateInfo'
-- |
-- typedef struct VkImportMemoryFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportMemoryFdInfoKHR;
--
--
-- VkImportMemoryFdInfoKHR registry at www.khronos.org
type VkImportMemoryFdInfoKHR = VkStruct VkImportMemoryFdInfoKHR'
-- |
-- typedef struct VkImportMemoryHostPointerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- void* pHostPointer;
-- } VkImportMemoryHostPointerInfoEXT;
--
--
-- VkImportMemoryHostPointerInfoEXT registry at www.khronos.org
type VkImportMemoryHostPointerInfoEXT = VkStruct VkImportMemoryHostPointerInfoEXT'
-- |
-- typedef struct VkImportSemaphoreFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphore semaphore;
-- VkSemaphoreImportFlags flags;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportSemaphoreFdInfoKHR;
--
--
-- VkImportSemaphoreFdInfoKHR registry at www.khronos.org
type VkImportSemaphoreFdInfoKHR = VkStruct VkImportSemaphoreFdInfoKHR'
type VK_KHR_EXTERNAL_FENCE_FD_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_FENCE_FD_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_FENCE_FD_EXTENSION_NAME = "VK_KHR_external_fence_fd"
pattern VK_KHR_EXTERNAL_FENCE_FD_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_IMPORT_FENCE_FD_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_GET_FD_INFO_KHR :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetFenceFdKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkImportFenceFdKHR"
module Graphics.Vulkan.Ext.VK_KHR_external_memory_fd
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
-- |
-- typedef struct VkImportMemoryFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportMemoryFdInfoKHR;
--
--
-- VkImportMemoryFdInfoKHR registry at www.khronos.org
type VkImportMemoryFdInfoKHR = VkStruct VkImportMemoryFdInfoKHR'
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkGetMemoryFdKHR = "vkGetMemoryFdKHR"
pattern VkGetMemoryFdKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_TOO_MANY_OBJECTS,
-- VK_ERROR_OUT_OF_HOST_MEMORY.
--
-- -- VkResult vkGetMemoryFdKHR -- ( VkDevice device -- , const VkMemoryGetFdInfoKHR* pGetFdInfo -- , int* pFd -- ) ---- -- vkGetMemoryFdKHR registry at www.khronos.org type HS_vkGetMemoryFdKHR = VkDevice " device" -> Ptr VkMemoryGetFdInfoKHR " pGetFdInfo" -> Ptr CInt " pFd" -> IO VkResult type PFN_vkGetMemoryFdKHR = FunPtr HS_vkGetMemoryFdKHR type VkGetMemoryFdPropertiesKHR = "vkGetMemoryFdPropertiesKHR" pattern VkGetMemoryFdPropertiesKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_INVALID_EXTERNAL_HANDLE. -- --
-- VkResult vkGetMemoryFdPropertiesKHR -- ( VkDevice device -- , VkExternalMemoryHandleTypeFlagBits handleType -- , int fd -- , VkMemoryFdPropertiesKHR* pMemoryFdProperties -- ) ---- -- vkGetMemoryFdPropertiesKHR registry at www.khronos.org type HS_vkGetMemoryFdPropertiesKHR = VkDevice " device" -> VkExternalMemoryHandleTypeFlagBits " handleType" -> CInt " fd" -> Ptr VkMemoryFdPropertiesKHR " pMemoryFdProperties" -> IO VkResult type PFN_vkGetMemoryFdPropertiesKHR = FunPtr HS_vkGetMemoryFdPropertiesKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
type VK_KHR_EXTERNAL_MEMORY_FD_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_MEMORY_FD_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_MEMORY_FD_EXTENSION_NAME = "VK_KHR_external_memory_fd"
pattern VK_KHR_EXTERNAL_MEMORY_FD_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_IMPORT_MEMORY_FD_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_FD_PROPERTIES_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_GET_FD_INFO_KHR :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetMemoryFdPropertiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetMemoryFdKHR"
module Graphics.Vulkan.Ext.VK_KHR_image_format_list
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_KHR_IMAGE_FORMAT_LIST_SPEC_VERSION = 1
pattern VK_KHR_IMAGE_FORMAT_LIST_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME = "VK_KHR_image_format_list"
pattern VK_KHR_IMAGE_FORMAT_LIST_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_IMAGE_FORMAT_LIST_CREATE_INFO_KHR :: VkStructureType
module Graphics.Vulkan.Ext.VK_NV_external_memory_capabilities
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkExternalImageFormatPropertiesNV {
-- VkImageFormatProperties imageFormatProperties;
-- VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
-- } VkExternalImageFormatPropertiesNV;
--
--
-- VkExternalImageFormatPropertiesNV registry at www.khronos.org
type VkExternalImageFormatPropertiesNV = VkStruct VkExternalImageFormatPropertiesNV'
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
type VkGetPhysicalDeviceExternalImageFormatPropertiesNV = "vkGetPhysicalDeviceExternalImageFormatPropertiesNV"
pattern VkGetPhysicalDeviceExternalImageFormatPropertiesNV :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_FORMAT_NOT_SUPPORTED.
--
-- -- VkResult vkGetPhysicalDeviceExternalImageFormatPropertiesNV -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkImageTiling tiling -- , VkImageUsageFlags usage -- , VkImageCreateFlags flags -- , VkExternalMemoryHandleTypeFlagsNV externalHandleType -- , VkExternalImageFormatPropertiesNV* pExternalImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceExternalImageFormatPropertiesNV registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalImageFormatPropertiesNV = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> VkImageType " type" -> VkImageTiling " tiling" -> VkImageUsageFlags " usage" -> VkImageCreateFlags " flags" -> VkExternalMemoryHandleTypeFlagsNV " externalHandleType" -> Ptr VkExternalImageFormatPropertiesNV " pExternalImageFormatProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV = FunPtr HS_vkGetPhysicalDeviceExternalImageFormatPropertiesNV -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExternalBufferProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalBufferProperties;
--
--
-- VkExternalBufferProperties registry at www.khronos.org
type VkExternalBufferProperties = VkStruct VkExternalBufferProperties'
-- | Alias for VkExternalBufferProperties
type VkExternalBufferPropertiesKHR = VkExternalBufferProperties
-- |
-- typedef struct VkExternalFenceProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalFenceHandleTypeFlags compatibleHandleTypes;
-- VkExternalFenceFeatureFlags externalFenceFeatures;
-- } VkExternalFenceProperties;
--
--
-- VkExternalFenceProperties registry at www.khronos.org
type VkExternalFenceProperties = VkStruct VkExternalFenceProperties'
-- | Alias for VkExternalFenceProperties
type VkExternalFencePropertiesKHR = VkExternalFenceProperties
-- |
-- typedef struct VkExternalImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalImageFormatProperties;
--
--
-- VkExternalImageFormatProperties registry at www.khronos.org
type VkExternalImageFormatProperties = VkStruct VkExternalImageFormatProperties'
-- | Alias for VkExternalImageFormatProperties
type VkExternalImageFormatPropertiesKHR = VkExternalImageFormatProperties
-- |
-- typedef struct VkExternalMemoryBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryBufferCreateInfo;
--
--
-- VkExternalMemoryBufferCreateInfo registry at www.khronos.org
type VkExternalMemoryBufferCreateInfo = VkStruct VkExternalMemoryBufferCreateInfo'
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryImageCreateInfo;
--
--
-- VkExternalMemoryImageCreateInfo registry at www.khronos.org
type VkExternalMemoryImageCreateInfo = VkStruct VkExternalMemoryImageCreateInfo'
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- |
-- typedef struct VkExternalMemoryProperties {
-- VkExternalMemoryFeatureFlags externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
-- } VkExternalMemoryProperties;
--
--
-- VkExternalMemoryProperties registry at www.khronos.org
type VkExternalMemoryProperties = VkStruct VkExternalMemoryProperties'
-- | Alias for VkExternalMemoryProperties
type VkExternalMemoryPropertiesKHR = VkExternalMemoryProperties
-- |
-- typedef struct VkExternalSemaphoreProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
-- VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
-- } VkExternalSemaphoreProperties;
--
--
-- VkExternalSemaphoreProperties registry at www.khronos.org
type VkExternalSemaphoreProperties = VkStruct VkExternalSemaphoreProperties'
-- | Alias for VkExternalSemaphoreProperties
type VkExternalSemaphorePropertiesKHR = VkExternalSemaphoreProperties
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- | Alias for VkImageFormatProperties2
type VkImageFormatProperties2KHR = VkImageFormatProperties2
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
type VK_NV_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION = 1
pattern VK_NV_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME = "VK_NV_external_memory_capabilities"
pattern VK_NV_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME :: CString
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalImageFormatPropertiesNV"
module Graphics.Vulkan.Ext.VK_NV_dedicated_allocation
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkBufferCreateBitmask (a :: FlagType)
VkBufferCreateBitmask :: VkFlags -> VkBufferCreateBitmask
pattern VkBufferCreateFlagBits :: VkFlags -> VkBufferCreateBitmask FlagBit
pattern VkBufferCreateFlags :: VkFlags -> VkBufferCreateBitmask FlagMask
-- | Buffer should support sparse backing
--
-- bitpos = 0
pattern VK_BUFFER_CREATE_SPARSE_BINDING_BIT :: VkBufferCreateBitmask a
-- | Buffer should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT :: VkBufferCreateBitmask a
-- | Buffer should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse buffers
--
-- bitpos = 2
pattern VK_BUFFER_CREATE_SPARSE_ALIASED_BIT :: VkBufferCreateBitmask a
newtype VkBufferUsageBitmask (a :: FlagType)
VkBufferUsageBitmask :: VkFlags -> VkBufferUsageBitmask
pattern VkBufferUsageFlagBits :: VkFlags -> VkBufferUsageBitmask FlagBit
pattern VkBufferUsageFlags :: VkFlags -> VkBufferUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_BUFFER_USAGE_TRANSFER_SRC_BIT :: VkBufferUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_BUFFER_USAGE_TRANSFER_DST_BIT :: VkBufferUsageBitmask a
-- | Can be used as TBO
--
-- bitpos = 2
pattern VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as IBO
--
-- bitpos = 3
pattern VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as UBO
--
-- bitpos = 4
pattern VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as SSBO
--
-- bitpos = 5
pattern VK_BUFFER_USAGE_STORAGE_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as source of fixed-function index fetch (index buffer)
--
-- bitpos = 6
pattern VK_BUFFER_USAGE_INDEX_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as source of fixed-function vertex fetch (VBO)
--
-- bitpos = 7
pattern VK_BUFFER_USAGE_VERTEX_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be the source of indirect parameters (e.g. indirect buffer,
-- parameter buffer)
--
-- bitpos = 8
pattern VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT :: VkBufferUsageBitmask a
type VkBufferCreateFlagBits = VkBufferCreateBitmask FlagBit
type VkBufferCreateFlags = VkBufferCreateBitmask FlagMask
type VkBufferUsageFlagBits = VkBufferUsageBitmask FlagBit
type VkBufferUsageFlags = VkBufferUsageBitmask FlagMask
newtype VkBufferViewCreateFlagBits
VkBufferViewCreateFlagBits :: VkFlags -> VkBufferViewCreateFlagBits
-- |
-- typedef struct VkBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkDeviceSize size;
-- VkBufferUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- } VkBufferCreateInfo;
--
--
-- VkBufferCreateInfo registry at www.khronos.org
type VkBufferCreateInfo = VkStruct VkBufferCreateInfo'
-- |
-- typedef struct VkDedicatedAllocationBufferCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 dedicatedAllocation;
-- } VkDedicatedAllocationBufferCreateInfoNV;
--
--
-- VkDedicatedAllocationBufferCreateInfoNV registry at
-- www.khronos.org
type VkDedicatedAllocationBufferCreateInfoNV = VkStruct VkDedicatedAllocationBufferCreateInfoNV'
-- |
-- typedef struct VkDedicatedAllocationImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 dedicatedAllocation;
-- } VkDedicatedAllocationImageCreateInfoNV;
--
--
-- VkDedicatedAllocationImageCreateInfoNV registry at
-- www.khronos.org
type VkDedicatedAllocationImageCreateInfoNV = VkStruct VkDedicatedAllocationImageCreateInfoNV'
-- |
-- typedef struct VkDedicatedAllocationMemoryAllocateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkDedicatedAllocationMemoryAllocateInfoNV;
--
--
-- VkDedicatedAllocationMemoryAllocateInfoNV registry at
-- www.khronos.org
type VkDedicatedAllocationMemoryAllocateInfoNV = VkStruct VkDedicatedAllocationMemoryAllocateInfoNV'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_NV_DEDICATED_ALLOCATION_SPEC_VERSION = 1
pattern VK_NV_DEDICATED_ALLOCATION_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_DEDICATED_ALLOCATION_EXTENSION_NAME = "VK_NV_dedicated_allocation"
pattern VK_NV_DEDICATED_ALLOCATION_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_IMAGE_CREATE_INFO_NV :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_BUFFER_CREATE_INFO_NV :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEDICATED_ALLOCATION_MEMORY_ALLOCATE_INFO_NV :: VkStructureType
module Graphics.Vulkan.Ext.VK_KHR_get_display_properties2
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkDisplayModeParametersKHR {
-- VkExtent2D visibleRegion;
-- uint32_t refreshRate;
-- } VkDisplayModeParametersKHR;
--
--
-- VkDisplayModeParametersKHR registry at www.khronos.org
type VkDisplayModeParametersKHR = VkStruct VkDisplayModeParametersKHR'
-- |
-- typedef struct VkDisplayModeProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayModePropertiesKHR displayModeProperties;
-- } VkDisplayModeProperties2KHR;
--
--
-- VkDisplayModeProperties2KHR registry at www.khronos.org
type VkDisplayModeProperties2KHR = VkStruct VkDisplayModeProperties2KHR'
-- |
-- typedef struct VkDisplayModePropertiesKHR {
-- VkDisplayModeKHR displayMode;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModePropertiesKHR;
--
--
-- VkDisplayModePropertiesKHR registry at www.khronos.org
type VkDisplayModePropertiesKHR = VkStruct VkDisplayModePropertiesKHR'
-- | type = enum
--
-- VkDisplayEventTypeEXT registry at www.khronos.org
newtype VkDisplayEventTypeEXT
VkDisplayEventTypeEXT :: Int32 -> VkDisplayEventTypeEXT
pattern VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT :: VkDisplayEventTypeEXT
newtype VkDisplayPlaneAlphaBitmaskKHR (a :: FlagType)
VkDisplayPlaneAlphaBitmaskKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR
pattern VkDisplayPlaneAlphaFlagBitsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagBit
pattern VkDisplayPlaneAlphaFlagsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | type = enum
--
-- VkDisplayPowerStateEXT registry at www.khronos.org
newtype VkDisplayPowerStateEXT
VkDisplayPowerStateEXT :: Int32 -> VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_OFF_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_SUSPEND_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_ON_EXT :: VkDisplayPowerStateEXT
type VkDisplayPlaneAlphaFlagBitsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagBit
type VkDisplayPlaneAlphaFlagsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkDisplayPlaneCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlaneCapabilitiesKHR capabilities;
-- } VkDisplayPlaneCapabilities2KHR;
--
--
-- VkDisplayPlaneCapabilities2KHR registry at www.khronos.org
type VkDisplayPlaneCapabilities2KHR = VkStruct VkDisplayPlaneCapabilities2KHR'
-- |
-- typedef struct VkDisplayPlaneCapabilitiesKHR {
-- VkDisplayPlaneAlphaFlagsKHR supportedAlpha;
-- VkOffset2D minSrcPosition;
-- VkOffset2D maxSrcPosition;
-- VkExtent2D minSrcExtent;
-- VkExtent2D maxSrcExtent;
-- VkOffset2D minDstPosition;
-- VkOffset2D maxDstPosition;
-- VkExtent2D minDstExtent;
-- VkExtent2D maxDstExtent;
-- } VkDisplayPlaneCapabilitiesKHR;
--
--
-- VkDisplayPlaneCapabilitiesKHR registry at www.khronos.org
type VkDisplayPlaneCapabilitiesKHR = VkStruct VkDisplayPlaneCapabilitiesKHR'
-- |
-- typedef struct VkDisplayPlaneInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeKHR mode;
-- uint32_t planeIndex;
-- } VkDisplayPlaneInfo2KHR;
--
--
-- VkDisplayPlaneInfo2KHR registry at www.khronos.org
type VkDisplayPlaneInfo2KHR = VkStruct VkDisplayPlaneInfo2KHR'
-- |
-- typedef struct VkDisplayPlaneProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlanePropertiesKHR displayPlaneProperties;
-- } VkDisplayPlaneProperties2KHR;
--
--
-- VkDisplayPlaneProperties2KHR registry at www.khronos.org
type VkDisplayPlaneProperties2KHR = VkStruct VkDisplayPlaneProperties2KHR'
-- |
-- typedef struct VkDisplayPlanePropertiesKHR {
-- VkDisplayKHR currentDisplay;
-- uint32_t currentStackIndex;
-- } VkDisplayPlanePropertiesKHR;
--
--
-- VkDisplayPlanePropertiesKHR registry at www.khronos.org
type VkDisplayPlanePropertiesKHR = VkStruct VkDisplayPlanePropertiesKHR'
-- |
-- typedef struct VkDisplayProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPropertiesKHR displayProperties;
-- } VkDisplayProperties2KHR;
--
--
-- VkDisplayProperties2KHR registry at www.khronos.org
type VkDisplayProperties2KHR = VkStruct VkDisplayProperties2KHR'
-- |
-- typedef struct VkDisplayPropertiesKHR {
-- VkDisplayKHR display;
-- const char* displayName;
-- VkExtent2D physicalDimensions;
-- VkExtent2D physicalResolution;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkBool32 planeReorderPossible;
-- VkBool32 persistentContent;
-- } VkDisplayPropertiesKHR;
--
--
-- VkDisplayPropertiesKHR registry at www.khronos.org
type VkDisplayPropertiesKHR = VkStruct VkDisplayPropertiesKHR'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
type VkGetPhysicalDeviceDisplayProperties2KHR = "vkGetPhysicalDeviceDisplayProperties2KHR"
pattern VkGetPhysicalDeviceDisplayProperties2KHR :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkGetPhysicalDeviceDisplayProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayProperties2KHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceDisplayProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayProperties2KHR " pProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceDisplayProperties2KHR = FunPtr HS_vkGetPhysicalDeviceDisplayProperties2KHR type VkGetPhysicalDeviceDisplayPlaneProperties2KHR = "vkGetPhysicalDeviceDisplayPlaneProperties2KHR" pattern VkGetPhysicalDeviceDisplayPlaneProperties2KHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPlaneProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPlaneProperties2KHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPlaneProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceDisplayPlaneProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayPlaneProperties2KHR " pProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceDisplayPlaneProperties2KHR = FunPtr HS_vkGetPhysicalDeviceDisplayPlaneProperties2KHR type VkGetDisplayModeProperties2KHR = "vkGetDisplayModeProperties2KHR" pattern VkGetDisplayModeProperties2KHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayModeProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , uint32_t* pPropertyCount -- , VkDisplayModeProperties2KHR* pProperties -- ) ---- -- vkGetDisplayModeProperties2KHR registry at www.khronos.org type HS_vkGetDisplayModeProperties2KHR = VkPhysicalDevice " physicalDevice" -> VkDisplayKHR " display" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayModeProperties2KHR " pProperties" -> IO VkResult type PFN_vkGetDisplayModeProperties2KHR = FunPtr HS_vkGetDisplayModeProperties2KHR type VkGetDisplayPlaneCapabilities2KHR = "vkGetDisplayPlaneCapabilities2KHR" pattern VkGetDisplayPlaneCapabilities2KHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneCapabilities2KHR -- ( VkPhysicalDevice physicalDevice -- , const VkDisplayPlaneInfo2KHR* pDisplayPlaneInfo -- , VkDisplayPlaneCapabilities2KHR* pCapabilities -- ) ---- -- vkGetDisplayPlaneCapabilities2KHR registry at www.khronos.org type HS_vkGetDisplayPlaneCapabilities2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkDisplayPlaneInfo2KHR " pDisplayPlaneInfo" -> Ptr VkDisplayPlaneCapabilities2KHR " pCapabilities" -> IO VkResult type PFN_vkGetDisplayPlaneCapabilities2KHR = FunPtr HS_vkGetDisplayPlaneCapabilities2KHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkDisplayEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayEventTypeEXT displayEvent;
-- } VkDisplayEventInfoEXT;
--
--
-- VkDisplayEventInfoEXT registry at www.khronos.org
type VkDisplayEventInfoEXT = VkStruct VkDisplayEventInfoEXT'
-- |
-- typedef struct VkDisplayModeCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeCreateFlagsKHR flags;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModeCreateInfoKHR;
--
--
-- VkDisplayModeCreateInfoKHR registry at www.khronos.org
type VkDisplayModeCreateInfoKHR = VkStruct VkDisplayModeCreateInfoKHR'
-- |
-- typedef struct VkDisplayPowerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayPowerStateEXT powerState;
-- } VkDisplayPowerInfoEXT;
--
--
-- VkDisplayPowerInfoEXT registry at www.khronos.org
type VkDisplayPowerInfoEXT = VkStruct VkDisplayPowerInfoEXT'
-- |
-- typedef struct VkDisplayPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkRect2D srcRect;
-- VkRect2D dstRect;
-- VkBool32 persistent;
-- } VkDisplayPresentInfoKHR;
--
--
-- VkDisplayPresentInfoKHR registry at www.khronos.org
type VkDisplayPresentInfoKHR = VkStruct VkDisplayPresentInfoKHR'
-- |
-- typedef struct VkDisplaySurfaceCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplaySurfaceCreateFlagsKHR flags;
-- VkDisplayModeKHR displayMode;
-- uint32_t planeIndex;
-- uint32_t planeStackIndex;
-- VkSurfaceTransformFlagBitsKHR transform;
-- float globalAlpha;
-- VkDisplayPlaneAlphaFlagBitsKHR alphaMode;
-- VkExtent2D imageExtent;
-- } VkDisplaySurfaceCreateInfoKHR;
--
--
-- VkDisplaySurfaceCreateInfoKHR registry at www.khronos.org
type VkDisplaySurfaceCreateInfoKHR = VkStruct VkDisplaySurfaceCreateInfoKHR'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
type VK_KHR_GET_DISPLAY_PROPERTIES_2_SPEC_VERSION = 1
pattern VK_KHR_GET_DISPLAY_PROPERTIES_2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_GET_DISPLAY_PROPERTIES_2_EXTENSION_NAME = "VK_KHR_get_display_properties2"
pattern VK_KHR_GET_DISPLAY_PROPERTIES_2_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DISPLAY_PROPERTIES_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_MODE_PROPERTIES_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_PLANE_INFO_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_PLANE_CAPABILITIES_2_KHR :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDisplayPlaneCapabilities2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDisplayModeProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceDisplayPlaneProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceDisplayProperties2KHR"
module Graphics.Vulkan.Ext.VK_KHR_display
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkDisplayModeCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeCreateFlagsKHR flags;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModeCreateInfoKHR;
--
--
-- VkDisplayModeCreateInfoKHR registry at www.khronos.org
type VkDisplayModeCreateInfoKHR = VkStruct VkDisplayModeCreateInfoKHR'
-- |
-- typedef struct VkDisplayModeParametersKHR {
-- VkExtent2D visibleRegion;
-- uint32_t refreshRate;
-- } VkDisplayModeParametersKHR;
--
--
-- VkDisplayModeParametersKHR registry at www.khronos.org
type VkDisplayModeParametersKHR = VkStruct VkDisplayModeParametersKHR'
-- |
-- typedef struct VkDisplayModePropertiesKHR {
-- VkDisplayModeKHR displayMode;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModePropertiesKHR;
--
--
-- VkDisplayModePropertiesKHR registry at www.khronos.org
type VkDisplayModePropertiesKHR = VkStruct VkDisplayModePropertiesKHR'
-- | type = enum
--
-- VkDisplayEventTypeEXT registry at www.khronos.org
newtype VkDisplayEventTypeEXT
VkDisplayEventTypeEXT :: Int32 -> VkDisplayEventTypeEXT
pattern VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT :: VkDisplayEventTypeEXT
newtype VkDisplayPlaneAlphaBitmaskKHR (a :: FlagType)
VkDisplayPlaneAlphaBitmaskKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR
pattern VkDisplayPlaneAlphaFlagBitsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagBit
pattern VkDisplayPlaneAlphaFlagsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | type = enum
--
-- VkDisplayPowerStateEXT registry at www.khronos.org
newtype VkDisplayPowerStateEXT
VkDisplayPowerStateEXT :: Int32 -> VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_OFF_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_SUSPEND_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_ON_EXT :: VkDisplayPowerStateEXT
type VkDisplayPlaneAlphaFlagBitsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagBit
type VkDisplayPlaneAlphaFlagsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkDisplayPlaneCapabilitiesKHR {
-- VkDisplayPlaneAlphaFlagsKHR supportedAlpha;
-- VkOffset2D minSrcPosition;
-- VkOffset2D maxSrcPosition;
-- VkExtent2D minSrcExtent;
-- VkExtent2D maxSrcExtent;
-- VkOffset2D minDstPosition;
-- VkOffset2D maxDstPosition;
-- VkExtent2D minDstExtent;
-- VkExtent2D maxDstExtent;
-- } VkDisplayPlaneCapabilitiesKHR;
--
--
-- VkDisplayPlaneCapabilitiesKHR registry at www.khronos.org
type VkDisplayPlaneCapabilitiesKHR = VkStruct VkDisplayPlaneCapabilitiesKHR'
-- |
-- typedef struct VkDisplayPlanePropertiesKHR {
-- VkDisplayKHR currentDisplay;
-- uint32_t currentStackIndex;
-- } VkDisplayPlanePropertiesKHR;
--
--
-- VkDisplayPlanePropertiesKHR registry at www.khronos.org
type VkDisplayPlanePropertiesKHR = VkStruct VkDisplayPlanePropertiesKHR'
-- |
-- typedef struct VkDisplayPropertiesKHR {
-- VkDisplayKHR display;
-- const char* displayName;
-- VkExtent2D physicalDimensions;
-- VkExtent2D physicalResolution;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkBool32 planeReorderPossible;
-- VkBool32 persistentContent;
-- } VkDisplayPropertiesKHR;
--
--
-- VkDisplayPropertiesKHR registry at www.khronos.org
type VkDisplayPropertiesKHR = VkStruct VkDisplayPropertiesKHR'
-- |
-- typedef struct VkDisplaySurfaceCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplaySurfaceCreateFlagsKHR flags;
-- VkDisplayModeKHR displayMode;
-- uint32_t planeIndex;
-- uint32_t planeStackIndex;
-- VkSurfaceTransformFlagBitsKHR transform;
-- float globalAlpha;
-- VkDisplayPlaneAlphaFlagBitsKHR alphaMode;
-- VkExtent2D imageExtent;
-- } VkDisplaySurfaceCreateInfoKHR;
--
--
-- VkDisplaySurfaceCreateInfoKHR registry at www.khronos.org
type VkDisplaySurfaceCreateInfoKHR = VkStruct VkDisplaySurfaceCreateInfoKHR'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
type VkGetPhysicalDeviceDisplayPropertiesKHR = "vkGetPhysicalDeviceDisplayPropertiesKHR"
pattern VkGetPhysicalDeviceDisplayPropertiesKHR :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkGetPhysicalDeviceDisplayPropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPropertiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceDisplayPropertiesKHR = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayPropertiesKHR " pProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceDisplayPropertiesKHR = FunPtr HS_vkGetPhysicalDeviceDisplayPropertiesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPropertiesKHR ---- -- Note: vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe -- and vkGetPhysicalDeviceDisplayPropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPropertiesKHR is an -- alias of vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceDisplayPropertiesKHRSafe. vkGetPhysicalDeviceDisplayPropertiesKHR :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPropertiesKHR ---- -- Note: vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe -- and vkGetPhysicalDeviceDisplayPropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPropertiesKHR is an -- alias of vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceDisplayPropertiesKHRSafe. vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPropertiesKHR ---- -- Note: vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe -- and vkGetPhysicalDeviceDisplayPropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPropertiesKHR is an -- alias of vkGetPhysicalDeviceDisplayPropertiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceDisplayPropertiesKHRSafe. vkGetPhysicalDeviceDisplayPropertiesKHRSafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPropertiesKHR -> IO VkResult type VkGetPhysicalDeviceDisplayPlanePropertiesKHR = "vkGetPhysicalDeviceDisplayPlanePropertiesKHR" pattern VkGetPhysicalDeviceDisplayPlanePropertiesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPlanePropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPlanePropertiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceDisplayPlanePropertiesKHR = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayPlanePropertiesKHR " pProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR = FunPtr HS_vkGetPhysicalDeviceDisplayPlanePropertiesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPlanePropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPlanePropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR ---- -- Note: -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe and -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPlanePropertiesKHR is -- an alias of -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe. vkGetPhysicalDeviceDisplayPlanePropertiesKHR :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPlanePropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPlanePropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPlanePropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR ---- -- Note: -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe and -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPlanePropertiesKHR is -- an alias of -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe. vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPlanePropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDeviceDisplayPlanePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkDisplayPlanePropertiesKHR* pProperties -- ) ---- -- vkGetPhysicalDeviceDisplayPlanePropertiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceDisplayPlanePropertiesKHR <- vkGetProc @VkGetPhysicalDeviceDisplayPlanePropertiesKHR ---- -- Note: -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe and -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceDisplayPlanePropertiesKHR is -- an alias of -- vkGetPhysicalDeviceDisplayPlanePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe. vkGetPhysicalDeviceDisplayPlanePropertiesKHRSafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkDisplayPlanePropertiesKHR -> IO VkResult type VkGetDisplayPlaneSupportedDisplaysKHR = "vkGetDisplayPlaneSupportedDisplaysKHR" pattern VkGetDisplayPlaneSupportedDisplaysKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneSupportedDisplaysKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t planeIndex -- , uint32_t* pDisplayCount -- , VkDisplayKHR* pDisplays -- ) ---- -- vkGetDisplayPlaneSupportedDisplaysKHR registry at -- www.khronos.org type HS_vkGetDisplayPlaneSupportedDisplaysKHR = VkPhysicalDevice " physicalDevice" -> Word32 " planeIndex" -> Ptr Word32 " pDisplayCount" -> Ptr VkDisplayKHR " pDisplays" -> IO VkResult type PFN_vkGetDisplayPlaneSupportedDisplaysKHR = FunPtr HS_vkGetDisplayPlaneSupportedDisplaysKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneSupportedDisplaysKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t planeIndex -- , uint32_t* pDisplayCount -- , VkDisplayKHR* pDisplays -- ) ---- -- vkGetDisplayPlaneSupportedDisplaysKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetInstanceProc @VkGetDisplayPlaneSupportedDisplaysKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetProc @VkGetDisplayPlaneSupportedDisplaysKHR ---- -- Note: vkGetDisplayPlaneSupportedDisplaysKHRUnsafe and -- vkGetDisplayPlaneSupportedDisplaysKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDisplayPlaneSupportedDisplaysKHR is an -- alias of vkGetDisplayPlaneSupportedDisplaysKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneSupportedDisplaysKHRSafe. vkGetDisplayPlaneSupportedDisplaysKHR :: VkPhysicalDevice -> Word32 -> Ptr Word32 -> Ptr VkDisplayKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneSupportedDisplaysKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t planeIndex -- , uint32_t* pDisplayCount -- , VkDisplayKHR* pDisplays -- ) ---- -- vkGetDisplayPlaneSupportedDisplaysKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetInstanceProc @VkGetDisplayPlaneSupportedDisplaysKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetProc @VkGetDisplayPlaneSupportedDisplaysKHR ---- -- Note: vkGetDisplayPlaneSupportedDisplaysKHRUnsafe and -- vkGetDisplayPlaneSupportedDisplaysKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDisplayPlaneSupportedDisplaysKHR is an -- alias of vkGetDisplayPlaneSupportedDisplaysKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneSupportedDisplaysKHRSafe. vkGetDisplayPlaneSupportedDisplaysKHRUnsafe :: VkPhysicalDevice -> Word32 -> Ptr Word32 -> Ptr VkDisplayKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneSupportedDisplaysKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t planeIndex -- , uint32_t* pDisplayCount -- , VkDisplayKHR* pDisplays -- ) ---- -- vkGetDisplayPlaneSupportedDisplaysKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetInstanceProc @VkGetDisplayPlaneSupportedDisplaysKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneSupportedDisplaysKHR <- vkGetProc @VkGetDisplayPlaneSupportedDisplaysKHR ---- -- Note: vkGetDisplayPlaneSupportedDisplaysKHRUnsafe and -- vkGetDisplayPlaneSupportedDisplaysKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDisplayPlaneSupportedDisplaysKHR is an -- alias of vkGetDisplayPlaneSupportedDisplaysKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneSupportedDisplaysKHRSafe. vkGetDisplayPlaneSupportedDisplaysKHRSafe :: VkPhysicalDevice -> Word32 -> Ptr Word32 -> Ptr VkDisplayKHR -> IO VkResult type VkGetDisplayModePropertiesKHR = "vkGetDisplayModePropertiesKHR" pattern VkGetDisplayModePropertiesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayModePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , uint32_t* pPropertyCount -- , VkDisplayModePropertiesKHR* pProperties -- ) ---- -- vkGetDisplayModePropertiesKHR registry at www.khronos.org type HS_vkGetDisplayModePropertiesKHR = VkPhysicalDevice " physicalDevice" -> VkDisplayKHR " display" -> Ptr Word32 " pPropertyCount" -> Ptr VkDisplayModePropertiesKHR " pProperties" -> IO VkResult type PFN_vkGetDisplayModePropertiesKHR = FunPtr HS_vkGetDisplayModePropertiesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayModePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , uint32_t* pPropertyCount -- , VkDisplayModePropertiesKHR* pProperties -- ) ---- -- vkGetDisplayModePropertiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayModePropertiesKHR <- vkGetInstanceProc @VkGetDisplayModePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayModePropertiesKHR <- vkGetProc @VkGetDisplayModePropertiesKHR ---- -- Note: vkGetDisplayModePropertiesKHRUnsafe and -- vkGetDisplayModePropertiesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDisplayModePropertiesKHR is an alias of -- vkGetDisplayModePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayModePropertiesKHRSafe. vkGetDisplayModePropertiesKHR :: VkPhysicalDevice -> VkDisplayKHR -> Ptr Word32 -> Ptr VkDisplayModePropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayModePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , uint32_t* pPropertyCount -- , VkDisplayModePropertiesKHR* pProperties -- ) ---- -- vkGetDisplayModePropertiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayModePropertiesKHR <- vkGetInstanceProc @VkGetDisplayModePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayModePropertiesKHR <- vkGetProc @VkGetDisplayModePropertiesKHR ---- -- Note: vkGetDisplayModePropertiesKHRUnsafe and -- vkGetDisplayModePropertiesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDisplayModePropertiesKHR is an alias of -- vkGetDisplayModePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayModePropertiesKHRSafe. vkGetDisplayModePropertiesKHRUnsafe :: VkPhysicalDevice -> VkDisplayKHR -> Ptr Word32 -> Ptr VkDisplayModePropertiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayModePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , uint32_t* pPropertyCount -- , VkDisplayModePropertiesKHR* pProperties -- ) ---- -- vkGetDisplayModePropertiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayModePropertiesKHR <- vkGetInstanceProc @VkGetDisplayModePropertiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayModePropertiesKHR <- vkGetProc @VkGetDisplayModePropertiesKHR ---- -- Note: vkGetDisplayModePropertiesKHRUnsafe and -- vkGetDisplayModePropertiesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDisplayModePropertiesKHR is an alias of -- vkGetDisplayModePropertiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayModePropertiesKHRSafe. vkGetDisplayModePropertiesKHRSafe :: VkPhysicalDevice -> VkDisplayKHR -> Ptr Word32 -> Ptr VkDisplayModePropertiesKHR -> IO VkResult type VkCreateDisplayModeKHR = "vkCreateDisplayModeKHR" pattern VkCreateDisplayModeKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkCreateDisplayModeKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , const VkDisplayModeCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDisplayModeKHR* pMode -- ) ---- -- vkCreateDisplayModeKHR registry at www.khronos.org type HS_vkCreateDisplayModeKHR = VkPhysicalDevice " physicalDevice" -> VkDisplayKHR " display" -> Ptr VkDisplayModeCreateInfoKHR " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDisplayModeKHR " pMode" -> IO VkResult type PFN_vkCreateDisplayModeKHR = FunPtr HS_vkCreateDisplayModeKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkCreateDisplayModeKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , const VkDisplayModeCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDisplayModeKHR* pMode -- ) ---- -- vkCreateDisplayModeKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayModeKHR <- vkGetInstanceProc @VkCreateDisplayModeKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayModeKHR <- vkGetProc @VkCreateDisplayModeKHR ---- -- Note: vkCreateDisplayModeKHRUnsafe and -- vkCreateDisplayModeKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDisplayModeKHR is an alias of -- vkCreateDisplayModeKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayModeKHRSafe. vkCreateDisplayModeKHR :: VkPhysicalDevice -> VkDisplayKHR -> Ptr VkDisplayModeCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkDisplayModeKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkCreateDisplayModeKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , const VkDisplayModeCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDisplayModeKHR* pMode -- ) ---- -- vkCreateDisplayModeKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayModeKHR <- vkGetInstanceProc @VkCreateDisplayModeKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayModeKHR <- vkGetProc @VkCreateDisplayModeKHR ---- -- Note: vkCreateDisplayModeKHRUnsafe and -- vkCreateDisplayModeKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDisplayModeKHR is an alias of -- vkCreateDisplayModeKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayModeKHRSafe. vkCreateDisplayModeKHRUnsafe :: VkPhysicalDevice -> VkDisplayKHR -> Ptr VkDisplayModeCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkDisplayModeKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkCreateDisplayModeKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayKHR display -- , const VkDisplayModeCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDisplayModeKHR* pMode -- ) ---- -- vkCreateDisplayModeKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayModeKHR <- vkGetInstanceProc @VkCreateDisplayModeKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayModeKHR <- vkGetProc @VkCreateDisplayModeKHR ---- -- Note: vkCreateDisplayModeKHRUnsafe and -- vkCreateDisplayModeKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDisplayModeKHR is an alias of -- vkCreateDisplayModeKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayModeKHRSafe. vkCreateDisplayModeKHRSafe :: VkPhysicalDevice -> VkDisplayKHR -> Ptr VkDisplayModeCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkDisplayModeKHR -> IO VkResult type VkGetDisplayPlaneCapabilitiesKHR = "vkGetDisplayPlaneCapabilitiesKHR" pattern VkGetDisplayPlaneCapabilitiesKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayModeKHR mode -- , uint32_t planeIndex -- , VkDisplayPlaneCapabilitiesKHR* pCapabilities -- ) ---- -- vkGetDisplayPlaneCapabilitiesKHR registry at www.khronos.org type HS_vkGetDisplayPlaneCapabilitiesKHR = VkPhysicalDevice " physicalDevice" -> VkDisplayModeKHR " mode" -> Word32 " planeIndex" -> Ptr VkDisplayPlaneCapabilitiesKHR " pCapabilities" -> IO VkResult type PFN_vkGetDisplayPlaneCapabilitiesKHR = FunPtr HS_vkGetDisplayPlaneCapabilitiesKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayModeKHR mode -- , uint32_t planeIndex -- , VkDisplayPlaneCapabilitiesKHR* pCapabilities -- ) ---- -- vkGetDisplayPlaneCapabilitiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetInstanceProc @VkGetDisplayPlaneCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetProc @VkGetDisplayPlaneCapabilitiesKHR ---- -- Note: vkGetDisplayPlaneCapabilitiesKHRUnsafe and -- vkGetDisplayPlaneCapabilitiesKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDisplayPlaneCapabilitiesKHR is an alias of -- vkGetDisplayPlaneCapabilitiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneCapabilitiesKHRSafe. vkGetDisplayPlaneCapabilitiesKHR :: VkPhysicalDevice -> VkDisplayModeKHR -> Word32 -> Ptr VkDisplayPlaneCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayModeKHR mode -- , uint32_t planeIndex -- , VkDisplayPlaneCapabilitiesKHR* pCapabilities -- ) ---- -- vkGetDisplayPlaneCapabilitiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetInstanceProc @VkGetDisplayPlaneCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetProc @VkGetDisplayPlaneCapabilitiesKHR ---- -- Note: vkGetDisplayPlaneCapabilitiesKHRUnsafe and -- vkGetDisplayPlaneCapabilitiesKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDisplayPlaneCapabilitiesKHR is an alias of -- vkGetDisplayPlaneCapabilitiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneCapabilitiesKHRSafe. vkGetDisplayPlaneCapabilitiesKHRUnsafe :: VkPhysicalDevice -> VkDisplayModeKHR -> Word32 -> Ptr VkDisplayPlaneCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDisplayPlaneCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkDisplayModeKHR mode -- , uint32_t planeIndex -- , VkDisplayPlaneCapabilitiesKHR* pCapabilities -- ) ---- -- vkGetDisplayPlaneCapabilitiesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetInstanceProc @VkGetDisplayPlaneCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetDisplayPlaneCapabilitiesKHR <- vkGetProc @VkGetDisplayPlaneCapabilitiesKHR ---- -- Note: vkGetDisplayPlaneCapabilitiesKHRUnsafe and -- vkGetDisplayPlaneCapabilitiesKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDisplayPlaneCapabilitiesKHR is an alias of -- vkGetDisplayPlaneCapabilitiesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDisplayPlaneCapabilitiesKHRSafe. vkGetDisplayPlaneCapabilitiesKHRSafe :: VkPhysicalDevice -> VkDisplayModeKHR -> Word32 -> Ptr VkDisplayPlaneCapabilitiesKHR -> IO VkResult type VkCreateDisplayPlaneSurfaceKHR = "vkCreateDisplayPlaneSurfaceKHR" pattern VkCreateDisplayPlaneSurfaceKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDisplayPlaneSurfaceKHR -- ( VkInstance instance -- , const VkDisplaySurfaceCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSurfaceKHR* pSurface -- ) ---- -- vkCreateDisplayPlaneSurfaceKHR registry at www.khronos.org type HS_vkCreateDisplayPlaneSurfaceKHR = VkInstance " instance" -> Ptr VkDisplaySurfaceCreateInfoKHR " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSurfaceKHR " pSurface" -> IO VkResult type PFN_vkCreateDisplayPlaneSurfaceKHR = FunPtr HS_vkCreateDisplayPlaneSurfaceKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDisplayPlaneSurfaceKHR -- ( VkInstance instance -- , const VkDisplaySurfaceCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSurfaceKHR* pSurface -- ) ---- -- vkCreateDisplayPlaneSurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetInstanceProc @VkCreateDisplayPlaneSurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetProc @VkCreateDisplayPlaneSurfaceKHR ---- -- Note: vkCreateDisplayPlaneSurfaceKHRUnsafe and -- vkCreateDisplayPlaneSurfaceKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDisplayPlaneSurfaceKHR is an alias of -- vkCreateDisplayPlaneSurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayPlaneSurfaceKHRSafe. vkCreateDisplayPlaneSurfaceKHR :: VkInstance -> Ptr VkDisplaySurfaceCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSurfaceKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDisplayPlaneSurfaceKHR -- ( VkInstance instance -- , const VkDisplaySurfaceCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSurfaceKHR* pSurface -- ) ---- -- vkCreateDisplayPlaneSurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetInstanceProc @VkCreateDisplayPlaneSurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetProc @VkCreateDisplayPlaneSurfaceKHR ---- -- Note: vkCreateDisplayPlaneSurfaceKHRUnsafe and -- vkCreateDisplayPlaneSurfaceKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDisplayPlaneSurfaceKHR is an alias of -- vkCreateDisplayPlaneSurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayPlaneSurfaceKHRSafe. vkCreateDisplayPlaneSurfaceKHRUnsafe :: VkInstance -> Ptr VkDisplaySurfaceCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSurfaceKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDisplayPlaneSurfaceKHR -- ( VkInstance instance -- , const VkDisplaySurfaceCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSurfaceKHR* pSurface -- ) ---- -- vkCreateDisplayPlaneSurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetInstanceProc @VkCreateDisplayPlaneSurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myCreateDisplayPlaneSurfaceKHR <- vkGetProc @VkCreateDisplayPlaneSurfaceKHR ---- -- Note: vkCreateDisplayPlaneSurfaceKHRUnsafe and -- vkCreateDisplayPlaneSurfaceKHRSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDisplayPlaneSurfaceKHR is an alias of -- vkCreateDisplayPlaneSurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDisplayPlaneSurfaceKHRSafe. vkCreateDisplayPlaneSurfaceKHRSafe :: VkInstance -> Ptr VkDisplaySurfaceCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSurfaceKHR -> IO VkResult -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDisplayEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayEventTypeEXT displayEvent;
-- } VkDisplayEventInfoEXT;
--
--
-- VkDisplayEventInfoEXT registry at www.khronos.org
type VkDisplayEventInfoEXT = VkStruct VkDisplayEventInfoEXT'
-- |
-- typedef struct VkDisplayModeProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayModePropertiesKHR displayModeProperties;
-- } VkDisplayModeProperties2KHR;
--
--
-- VkDisplayModeProperties2KHR registry at www.khronos.org
type VkDisplayModeProperties2KHR = VkStruct VkDisplayModeProperties2KHR'
-- |
-- typedef struct VkDisplayPlaneCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlaneCapabilitiesKHR capabilities;
-- } VkDisplayPlaneCapabilities2KHR;
--
--
-- VkDisplayPlaneCapabilities2KHR registry at www.khronos.org
type VkDisplayPlaneCapabilities2KHR = VkStruct VkDisplayPlaneCapabilities2KHR'
-- |
-- typedef struct VkDisplayPlaneInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeKHR mode;
-- uint32_t planeIndex;
-- } VkDisplayPlaneInfo2KHR;
--
--
-- VkDisplayPlaneInfo2KHR registry at www.khronos.org
type VkDisplayPlaneInfo2KHR = VkStruct VkDisplayPlaneInfo2KHR'
-- |
-- typedef struct VkDisplayPlaneProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlanePropertiesKHR displayPlaneProperties;
-- } VkDisplayPlaneProperties2KHR;
--
--
-- VkDisplayPlaneProperties2KHR registry at www.khronos.org
type VkDisplayPlaneProperties2KHR = VkStruct VkDisplayPlaneProperties2KHR'
-- |
-- typedef struct VkDisplayPowerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayPowerStateEXT powerState;
-- } VkDisplayPowerInfoEXT;
--
--
-- VkDisplayPowerInfoEXT registry at www.khronos.org
type VkDisplayPowerInfoEXT = VkStruct VkDisplayPowerInfoEXT'
-- |
-- typedef struct VkDisplayPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkRect2D srcRect;
-- VkRect2D dstRect;
-- VkBool32 persistent;
-- } VkDisplayPresentInfoKHR;
--
--
-- VkDisplayPresentInfoKHR registry at www.khronos.org
type VkDisplayPresentInfoKHR = VkStruct VkDisplayPresentInfoKHR'
-- |
-- typedef struct VkDisplayProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPropertiesKHR displayProperties;
-- } VkDisplayProperties2KHR;
--
--
-- VkDisplayProperties2KHR registry at www.khronos.org
type VkDisplayProperties2KHR = VkStruct VkDisplayProperties2KHR'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
type VK_KHR_DISPLAY_SPEC_VERSION = 21
pattern VK_KHR_DISPLAY_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_DISPLAY_EXTENSION_NAME = "VK_KHR_display"
pattern VK_KHR_DISPLAY_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DISPLAY_MODE_CREATE_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_SURFACE_CREATE_INFO_KHR :: VkStructureType
-- | VkDisplayKHR
pattern VK_OBJECT_TYPE_DISPLAY_KHR :: VkObjectType
-- | VkDisplayModeKHR
pattern VK_OBJECT_TYPE_DISPLAY_MODE_KHR :: VkObjectType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDisplayPlaneSurfaceKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDisplayPlaneCapabilitiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDisplayModeKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDisplayModePropertiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDisplayPlaneSupportedDisplaysKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceDisplayPlanePropertiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceDisplayPropertiesKHR"
module Graphics.Vulkan.Ext.VK_KHR_incremental_present
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t swapchainCount;
-- const VkSwapchainKHR* pSwapchains;
-- const uint32_t* pImageIndices;
-- VkResult* pResults;
-- } VkPresentInfoKHR;
--
--
-- VkPresentInfoKHR registry at www.khronos.org
type VkPresentInfoKHR = VkStruct VkPresentInfoKHR'
-- |
-- typedef struct VkPresentRegionKHR {
-- uint32_t rectangleCount;
-- const VkRectLayerKHR* pRectangles;
-- } VkPresentRegionKHR;
--
--
-- VkPresentRegionKHR registry at www.khronos.org
type VkPresentRegionKHR = VkStruct VkPresentRegionKHR'
-- |
-- typedef struct VkPresentRegionsKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const VkPresentRegionKHR* pRegions;
-- } VkPresentRegionsKHR;
--
--
-- VkPresentRegionsKHR registry at www.khronos.org
type VkPresentRegionsKHR = VkStruct VkPresentRegionsKHR'
-- |
-- typedef struct VkRectLayerKHR {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- uint32_t layer;
-- } VkRectLayerKHR;
--
--
-- VkRectLayerKHR registry at www.khronos.org
type VkRectLayerKHR = VkStruct VkRectLayerKHR'
-- | API result codes
--
-- type = enum
--
-- VkResult registry at www.khronos.org
newtype VkResult
VkResult :: Int32 -> VkResult
-- | Command completed successfully
pattern VK_SUCCESS :: VkResult
-- | A fence or query has not yet completed
pattern VK_NOT_READY :: VkResult
-- | A wait operation has not completed in the specified time
pattern VK_TIMEOUT :: VkResult
-- | An event is signaled
pattern VK_EVENT_SET :: VkResult
-- | An event is unsignaled
pattern VK_EVENT_RESET :: VkResult
-- | A return array was too small for the result
pattern VK_INCOMPLETE :: VkResult
-- | A host memory allocation has failed
pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult
-- | A device memory allocation has failed
pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult
-- | Initialization of a object has failed
pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult
-- | The logical device has been lost. See
pattern VK_ERROR_DEVICE_LOST :: VkResult
-- | Mapping of a memory object has failed
pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult
-- | Layer specified does not exist
pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult
-- | Extension specified does not exist
pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult
-- | Requested feature is not available on this device
pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult
-- | Unable to find a Vulkan driver
pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult
-- | Too many objects of the type have already been created
pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult
-- | Requested format is not supported on this device
pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult
-- | A requested pool allocation has failed due to fragmentation of the
-- pool's memory
pattern VK_ERROR_FRAGMENTED_POOL :: VkResult
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_KHR_INCREMENTAL_PRESENT_SPEC_VERSION = 1
pattern VK_KHR_INCREMENTAL_PRESENT_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME = "VK_KHR_incremental_present"
pattern VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR :: VkStructureType
module Graphics.Vulkan.Ext.VK_GOOGLE_display_timing
-- |
-- typedef struct VkPastPresentationTimingGOOGLE {
-- uint32_t presentID;
-- uint64_t desiredPresentTime;
-- uint64_t actualPresentTime;
-- uint64_t earliestPresentTime;
-- uint64_t presentMargin;
-- } VkPastPresentationTimingGOOGLE;
--
--
-- VkPastPresentationTimingGOOGLE registry at www.khronos.org
type VkPastPresentationTimingGOOGLE = VkStruct VkPastPresentationTimingGOOGLE'
-- |
-- typedef struct VkPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t swapchainCount;
-- const VkSwapchainKHR* pSwapchains;
-- const uint32_t* pImageIndices;
-- VkResult* pResults;
-- } VkPresentInfoKHR;
--
--
-- VkPresentInfoKHR registry at www.khronos.org
type VkPresentInfoKHR = VkStruct VkPresentInfoKHR'
-- |
-- typedef struct VkPresentTimeGOOGLE {
-- uint32_t presentID;
-- uint64_t desiredPresentTime;
-- } VkPresentTimeGOOGLE;
--
--
-- VkPresentTimeGOOGLE registry at www.khronos.org
type VkPresentTimeGOOGLE = VkStruct VkPresentTimeGOOGLE'
-- |
-- typedef struct VkPresentTimesInfoGOOGLE {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const VkPresentTimeGOOGLE* pTimes;
-- } VkPresentTimesInfoGOOGLE;
--
--
-- VkPresentTimesInfoGOOGLE registry at www.khronos.org
type VkPresentTimesInfoGOOGLE = VkStruct VkPresentTimesInfoGOOGLE'
-- |
-- typedef struct VkRefreshCycleDurationGOOGLE {
-- uint64_t refreshDuration;
-- } VkRefreshCycleDurationGOOGLE;
--
--
-- VkRefreshCycleDurationGOOGLE registry at www.khronos.org
type VkRefreshCycleDurationGOOGLE = VkStruct VkRefreshCycleDurationGOOGLE'
-- | API result codes
--
-- type = enum
--
-- VkResult registry at www.khronos.org
newtype VkResult
VkResult :: Int32 -> VkResult
-- | Command completed successfully
pattern VK_SUCCESS :: VkResult
-- | A fence or query has not yet completed
pattern VK_NOT_READY :: VkResult
-- | A wait operation has not completed in the specified time
pattern VK_TIMEOUT :: VkResult
-- | An event is signaled
pattern VK_EVENT_SET :: VkResult
-- | An event is unsignaled
pattern VK_EVENT_RESET :: VkResult
-- | A return array was too small for the result
pattern VK_INCOMPLETE :: VkResult
-- | A host memory allocation has failed
pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult
-- | A device memory allocation has failed
pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult
-- | Initialization of a object has failed
pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult
-- | The logical device has been lost. See
pattern VK_ERROR_DEVICE_LOST :: VkResult
-- | Mapping of a memory object has failed
pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult
-- | Layer specified does not exist
pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult
-- | Extension specified does not exist
pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult
-- | Requested feature is not available on this device
pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult
-- | Unable to find a Vulkan driver
pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult
-- | Too many objects of the type have already been created
pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult
-- | Requested format is not supported on this device
pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult
-- | A requested pool allocation has failed due to fragmentation of the
-- pool's memory
pattern VK_ERROR_FRAGMENTED_POOL :: VkResult
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkGetRefreshCycleDurationGOOGLE = "vkGetRefreshCycleDurationGOOGLE"
pattern VkGetRefreshCycleDurationGOOGLE :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_DEVICE_LOST,
-- VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkGetRefreshCycleDurationGOOGLE -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , VkRefreshCycleDurationGOOGLE* pDisplayTimingProperties -- ) ---- -- vkGetRefreshCycleDurationGOOGLE registry at www.khronos.org type HS_vkGetRefreshCycleDurationGOOGLE = VkDevice " device" -> VkSwapchainKHR " swapchain" -> Ptr VkRefreshCycleDurationGOOGLE " pDisplayTimingProperties" -> IO VkResult type PFN_vkGetRefreshCycleDurationGOOGLE = FunPtr HS_vkGetRefreshCycleDurationGOOGLE type VkGetPastPresentationTimingGOOGLE = "vkGetPastPresentationTimingGOOGLE" pattern VkGetPastPresentationTimingGOOGLE :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPastPresentationTimingGOOGLE -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint32_t* pPresentationTimingCount -- , VkPastPresentationTimingGOOGLE* pPresentationTimings -- ) ---- -- vkGetPastPresentationTimingGOOGLE registry at www.khronos.org type HS_vkGetPastPresentationTimingGOOGLE = VkDevice " device" -> VkSwapchainKHR " swapchain" -> Ptr Word32 " pPresentationTimingCount" -> Ptr VkPastPresentationTimingGOOGLE " pPresentationTimings" -> IO VkResult type PFN_vkGetPastPresentationTimingGOOGLE = FunPtr HS_vkGetPastPresentationTimingGOOGLE type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_GOOGLE_DISPLAY_TIMING_SPEC_VERSION = 1 pattern VK_GOOGLE_DISPLAY_TIMING_SPEC_VERSION :: (Num a, Eq a) => a type VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME = "VK_GOOGLE_display_timing" pattern VK_GOOGLE_DISPLAY_TIMING_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_PRESENT_TIMES_INFO_GOOGLE :: VkStructureType instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPastPresentationTimingGOOGLE" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetRefreshCycleDurationGOOGLE" module Graphics.Vulkan.Ext.VK_NV_external_memory newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- |
-- typedef struct VkExportMemoryAllocateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExportMemoryAllocateInfoNV;
--
--
-- VkExportMemoryAllocateInfoNV registry at www.khronos.org
type VkExportMemoryAllocateInfoNV = VkStruct VkExportMemoryAllocateInfoNV'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_NV_EXTERNAL_MEMORY_SPEC_VERSION = 1
pattern VK_NV_EXTERNAL_MEMORY_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME = "VK_NV_external_memory"
pattern VK_NV_EXTERNAL_MEMORY_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_NV :: VkStructureType
pattern VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_NV :: VkStructureType
module Graphics.Vulkan.Ext.VK_KHR_external_semaphore_fd
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkImportSemaphoreFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphore semaphore;
-- VkSemaphoreImportFlags flags;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportSemaphoreFdInfoKHR;
--
--
-- VkImportSemaphoreFdInfoKHR registry at www.khronos.org
type VkImportSemaphoreFdInfoKHR = VkStruct VkImportSemaphoreFdInfoKHR'
-- |
-- typedef struct VkSemaphoreGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphore semaphore;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkSemaphoreGetFdInfoKHR;
--
--
-- VkSemaphoreGetFdInfoKHR registry at www.khronos.org
type VkSemaphoreGetFdInfoKHR = VkStruct VkSemaphoreGetFdInfoKHR'
newtype VkSemaphoreImportBitmask (a :: FlagType)
VkSemaphoreImportBitmask :: VkFlags -> VkSemaphoreImportBitmask
pattern VkSemaphoreImportFlagBits :: VkFlags -> VkSemaphoreImportBitmask FlagBit
pattern VkSemaphoreImportFlags :: VkFlags -> VkSemaphoreImportBitmask FlagMask
-- | bitpos = 0
pattern VK_SEMAPHORE_IMPORT_TEMPORARY_BIT :: VkSemaphoreImportBitmask a
type VkSemaphoreImportFlagBits = VkSemaphoreImportBitmask FlagBit
newtype VkSemaphoreImportFlagBitsKHR
VkSemaphoreImportFlagBitsKHR :: VkFlags -> VkSemaphoreImportFlagBitsKHR
type VkSemaphoreImportFlags = VkSemaphoreImportBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkImportSemaphoreFdKHR = "vkImportSemaphoreFdKHR"
pattern VkImportSemaphoreFdKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_INVALID_EXTERNAL_HANDLE.
--
-- -- VkResult vkImportSemaphoreFdKHR -- ( VkDevice device -- , const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo -- ) ---- -- vkImportSemaphoreFdKHR registry at www.khronos.org type HS_vkImportSemaphoreFdKHR = VkDevice " device" -> Ptr VkImportSemaphoreFdInfoKHR " pImportSemaphoreFdInfo" -> IO VkResult type PFN_vkImportSemaphoreFdKHR = FunPtr HS_vkImportSemaphoreFdKHR type VkGetSemaphoreFdKHR = "vkGetSemaphoreFdKHR" pattern VkGetSemaphoreFdKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_OUT_OF_HOST_MEMORY. -- --
-- VkResult vkGetSemaphoreFdKHR -- ( VkDevice device -- , const VkSemaphoreGetFdInfoKHR* pGetFdInfo -- , int* pFd -- ) ---- -- vkGetSemaphoreFdKHR registry at www.khronos.org type HS_vkGetSemaphoreFdKHR = VkDevice " device" -> Ptr VkSemaphoreGetFdInfoKHR " pGetFdInfo" -> Ptr CInt " pFd" -> IO VkResult type PFN_vkGetSemaphoreFdKHR = FunPtr HS_vkGetSemaphoreFdKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkImportFenceFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkFence fence;
-- VkFenceImportFlags flags;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportFenceFdInfoKHR;
--
--
-- VkImportFenceFdInfoKHR registry at www.khronos.org
type VkImportFenceFdInfoKHR = VkStruct VkImportFenceFdInfoKHR'
-- |
-- typedef struct VkImportMemoryFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- int fd;
-- } VkImportMemoryFdInfoKHR;
--
--
-- VkImportMemoryFdInfoKHR registry at www.khronos.org
type VkImportMemoryFdInfoKHR = VkStruct VkImportMemoryFdInfoKHR'
-- |
-- typedef struct VkImportMemoryHostPointerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- void* pHostPointer;
-- } VkImportMemoryHostPointerInfoEXT;
--
--
-- VkImportMemoryHostPointerInfoEXT registry at www.khronos.org
type VkImportMemoryHostPointerInfoEXT = VkStruct VkImportMemoryHostPointerInfoEXT'
-- |
-- typedef struct VkSemaphoreCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphoreCreateFlags flags;
-- } VkSemaphoreCreateInfo;
--
--
-- VkSemaphoreCreateInfo registry at www.khronos.org
type VkSemaphoreCreateInfo = VkStruct VkSemaphoreCreateInfo'
type VK_KHR_EXTERNAL_SEMAPHORE_FD_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_SEMAPHORE_FD_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION_NAME = "VK_KHR_external_semaphore_fd"
pattern VK_KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_FD_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_GET_FD_INFO_KHR :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetSemaphoreFdKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkImportSemaphoreFdKHR"
module Graphics.Vulkan.Ext.VK_AMD_shader_info
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | type = enum
--
-- VkShaderInfoTypeAMD registry at www.khronos.org
newtype VkShaderInfoTypeAMD
VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD
newtype VkShaderStageBitmask (a :: FlagType)
VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask
pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit
pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask
-- | bitpos = 0
pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a
-- | bitpos = 1
pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a
-- | bitpos = 2
pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a
-- | bitpos = 3
pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a
-- | bitpos = 4
pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a
-- | bitpos = 5
pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a
type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit
type VkShaderStageFlags = VkShaderStageBitmask FlagMask
-- |
-- typedef struct VkShaderResourceUsageAMD {
-- uint32_t numUsedVgprs;
-- uint32_t numUsedSgprs;
-- uint32_t ldsSizePerLocalWorkGroup;
-- size_t ldsUsageSizeInBytes;
-- size_t scratchMemUsageInBytes;
-- } VkShaderResourceUsageAMD;
--
--
-- VkShaderResourceUsageAMD registry at www.khronos.org
type VkShaderResourceUsageAMD = VkStruct VkShaderResourceUsageAMD'
-- |
-- typedef struct VkShaderStatisticsInfoAMD {
-- VkShaderStageFlags shaderStageMask;
-- VkShaderResourceUsageAMD resourceUsage;
-- uint32_t numPhysicalVgprs;
-- uint32_t numPhysicalSgprs;
-- uint32_t numAvailableVgprs;
-- uint32_t numAvailableSgprs;
-- uint32_t computeWorkGroupSize[3];
-- } VkShaderStatisticsInfoAMD;
--
--
-- VkShaderStatisticsInfoAMD registry at www.khronos.org
type VkShaderStatisticsInfoAMD = VkStruct VkShaderStatisticsInfoAMD'
type VkGetShaderInfoAMD = "vkGetShaderInfoAMD"
pattern VkGetShaderInfoAMD :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_FEATURE_NOT_PRESENT,
-- VK_ERROR_OUT_OF_HOST_MEMORY.
--
-- -- VkResult vkGetShaderInfoAMD -- ( VkDevice device -- , VkPipeline pipeline -- , VkShaderStageFlagBits shaderStage -- , VkShaderInfoTypeAMD infoType -- , size_t* pInfoSize -- , void* pInfo -- ) ---- -- vkGetShaderInfoAMD registry at www.khronos.org type HS_vkGetShaderInfoAMD = VkDevice " device" -> VkPipeline " pipeline" -> VkShaderStageFlagBits " shaderStage" -> VkShaderInfoTypeAMD " infoType" -> Ptr CSize " pInfoSize" -> Ptr Void " pInfo" -> IO VkResult type PFN_vkGetShaderInfoAMD = FunPtr HS_vkGetShaderInfoAMD -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_AMD_SHADER_INFO_SPEC_VERSION = 1 pattern VK_AMD_SHADER_INFO_SPEC_VERSION :: (Num a, Eq a) => a type VK_AMD_SHADER_INFO_EXTENSION_NAME = "VK_AMD_shader_info" pattern VK_AMD_SHADER_INFO_EXTENSION_NAME :: CString instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetShaderInfoAMD" module Graphics.Vulkan.Ext.VK_KHR_surface type VkDestroySurfaceKHR = "vkDestroySurfaceKHR" pattern VkDestroySurfaceKHR :: CString -- |
-- void vkDestroySurfaceKHR -- ( VkInstance instance -- , VkSurfaceKHR surface -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySurfaceKHR registry at www.khronos.org type HS_vkDestroySurfaceKHR = VkInstance " instance" -> VkSurfaceKHR " surface" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySurfaceKHR = FunPtr HS_vkDestroySurfaceKHR -- |
-- void vkDestroySurfaceKHR -- ( VkInstance instance -- , VkSurfaceKHR surface -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR ---- -- Note: vkDestroySurfaceKHRUnsafe and -- vkDestroySurfaceKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySurfaceKHR is an alias of -- vkDestroySurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySurfaceKHRSafe. vkDestroySurfaceKHR :: VkInstance -> VkSurfaceKHR -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySurfaceKHR -- ( VkInstance instance -- , VkSurfaceKHR surface -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR ---- -- Note: vkDestroySurfaceKHRUnsafe and -- vkDestroySurfaceKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySurfaceKHR is an alias of -- vkDestroySurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySurfaceKHRSafe. vkDestroySurfaceKHRUnsafe :: VkInstance -> VkSurfaceKHR -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySurfaceKHR -- ( VkInstance instance -- , VkSurfaceKHR surface -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySurfaceKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySurfaceKHR <- vkGetInstanceProc @VkDestroySurfaceKHR vkInstance ---- -- or less efficient: -- --
-- myDestroySurfaceKHR <- vkGetProc @VkDestroySurfaceKHR ---- -- Note: vkDestroySurfaceKHRUnsafe and -- vkDestroySurfaceKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySurfaceKHR is an alias of -- vkDestroySurfaceKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySurfaceKHRSafe. vkDestroySurfaceKHRSafe :: VkInstance -> VkSurfaceKHR -> Ptr VkAllocationCallbacks -> IO () type VkGetPhysicalDeviceSurfaceSupportKHR = "vkGetPhysicalDeviceSurfaceSupportKHR" pattern VkGetPhysicalDeviceSurfaceSupportKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceSupportKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t queueFamilyIndex -- , VkSurfaceKHR surface -- , VkBool32* pSupported -- ) ---- -- vkGetPhysicalDeviceSurfaceSupportKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceSupportKHR = VkPhysicalDevice " physicalDevice" -> Word32 " queueFamilyIndex" -> VkSurfaceKHR " surface" -> Ptr VkBool32 " pSupported" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceSupportKHR = FunPtr HS_vkGetPhysicalDeviceSurfaceSupportKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceSupportKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t queueFamilyIndex -- , VkSurfaceKHR surface -- , VkBool32* pSupported -- ) ---- -- vkGetPhysicalDeviceSurfaceSupportKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR ---- -- Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and -- vkGetPhysicalDeviceSurfaceSupportKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an -- alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe. vkGetPhysicalDeviceSurfaceSupportKHR :: VkPhysicalDevice -> Word32 -> VkSurfaceKHR -> Ptr VkBool32 -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceSupportKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t queueFamilyIndex -- , VkSurfaceKHR surface -- , VkBool32* pSupported -- ) ---- -- vkGetPhysicalDeviceSurfaceSupportKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR ---- -- Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and -- vkGetPhysicalDeviceSurfaceSupportKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an -- alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe. vkGetPhysicalDeviceSurfaceSupportKHRUnsafe :: VkPhysicalDevice -> Word32 -> VkSurfaceKHR -> Ptr VkBool32 -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceSupportKHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t queueFamilyIndex -- , VkSurfaceKHR surface -- , VkBool32* pSupported -- ) ---- -- vkGetPhysicalDeviceSurfaceSupportKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceSupportKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceSupportKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceSupportKHR ---- -- Note: vkGetPhysicalDeviceSurfaceSupportKHRUnsafe and -- vkGetPhysicalDeviceSurfaceSupportKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceSupportKHR is an -- alias of vkGetPhysicalDeviceSurfaceSupportKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceSupportKHRSafe. vkGetPhysicalDeviceSurfaceSupportKHRSafe :: VkPhysicalDevice -> Word32 -> VkSurfaceKHR -> Ptr VkBool32 -> IO VkResult type VkGetPhysicalDeviceSurfaceCapabilitiesKHR = "vkGetPhysicalDeviceSurfaceCapabilitiesKHR" pattern VkGetPhysicalDeviceSurfaceCapabilitiesKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceCapabilitiesKHR = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr VkSurfaceCapabilitiesKHR " pSurfaceCapabilities" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR = FunPtr HS_vkGetPhysicalDeviceSurfaceCapabilitiesKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR ---- -- Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe -- and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an -- alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe. vkGetPhysicalDeviceSurfaceCapabilitiesKHR :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr VkSurfaceCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR ---- -- Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe -- and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an -- alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe. vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr VkSurfaceCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceCapabilitiesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , VkSurfaceCapabilitiesKHR* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceCapabilitiesKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceCapabilitiesKHR ---- -- Note: vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe -- and vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceCapabilitiesKHR is an -- alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe. vkGetPhysicalDeviceSurfaceCapabilitiesKHRSafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr VkSurfaceCapabilitiesKHR -> IO VkResult type VkGetPhysicalDeviceSurfaceFormatsKHR = "vkGetPhysicalDeviceSurfaceFormatsKHR" pattern VkGetPhysicalDeviceSurfaceFormatsKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceFormatsKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pSurfaceFormatCount -- , VkSurfaceFormatKHR* pSurfaceFormats -- ) ---- -- vkGetPhysicalDeviceSurfaceFormatsKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceFormatsKHR = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr Word32 " pSurfaceFormatCount" -> Ptr VkSurfaceFormatKHR " pSurfaceFormats" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceFormatsKHR = FunPtr HS_vkGetPhysicalDeviceSurfaceFormatsKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceFormatsKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pSurfaceFormatCount -- , VkSurfaceFormatKHR* pSurfaceFormats -- ) ---- -- vkGetPhysicalDeviceSurfaceFormatsKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR ---- -- Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and -- vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an -- alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe. vkGetPhysicalDeviceSurfaceFormatsKHR :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkSurfaceFormatKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceFormatsKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pSurfaceFormatCount -- , VkSurfaceFormatKHR* pSurfaceFormats -- ) ---- -- vkGetPhysicalDeviceSurfaceFormatsKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR ---- -- Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and -- vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an -- alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe. vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkSurfaceFormatKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceFormatsKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pSurfaceFormatCount -- , VkSurfaceFormatKHR* pSurfaceFormats -- ) ---- -- vkGetPhysicalDeviceSurfaceFormatsKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfaceFormatsKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfaceFormatsKHR <- vkGetProc @VkGetPhysicalDeviceSurfaceFormatsKHR ---- -- Note: vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe and -- vkGetPhysicalDeviceSurfaceFormatsKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfaceFormatsKHR is an -- alias of vkGetPhysicalDeviceSurfaceFormatsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceSurfaceFormatsKHRSafe. vkGetPhysicalDeviceSurfaceFormatsKHRSafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkSurfaceFormatKHR -> IO VkResult type VkGetPhysicalDeviceSurfacePresentModesKHR = "vkGetPhysicalDeviceSurfacePresentModesKHR" pattern VkGetPhysicalDeviceSurfacePresentModesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfacePresentModesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pPresentModeCount -- , VkPresentModeKHR* pPresentModes -- ) ---- -- vkGetPhysicalDeviceSurfacePresentModesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfacePresentModesKHR = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr Word32 " pPresentModeCount" -> Ptr VkPresentModeKHR " pPresentModes" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfacePresentModesKHR = FunPtr HS_vkGetPhysicalDeviceSurfacePresentModesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfacePresentModesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pPresentModeCount -- , VkPresentModeKHR* pPresentModes -- ) ---- -- vkGetPhysicalDeviceSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR ---- -- Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe -- and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an -- alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe. vkGetPhysicalDeviceSurfacePresentModesKHR :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkPresentModeKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfacePresentModesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pPresentModeCount -- , VkPresentModeKHR* pPresentModes -- ) ---- -- vkGetPhysicalDeviceSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR ---- -- Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe -- and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an -- alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe. vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkPresentModeKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfacePresentModesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pPresentModeCount -- , VkPresentModeKHR* pPresentModes -- ) ---- -- vkGetPhysicalDeviceSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetInstanceProc @VkGetPhysicalDeviceSurfacePresentModesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSurfacePresentModesKHR <- vkGetProc @VkGetPhysicalDeviceSurfacePresentModesKHR ---- -- Note: vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe -- and vkGetPhysicalDeviceSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSurfacePresentModesKHR is an -- alias of vkGetPhysicalDeviceSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceSurfacePresentModesKHRSafe. vkGetPhysicalDeviceSurfacePresentModesKHRSafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkPresentModeKHR -> IO VkResult newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkColorComponentBitmask (a :: FlagType) VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask -- | bitpos = 0 pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a -- | bitpos = 1 pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a -- | bitpos = 2 pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a -- | bitpos = 3 pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a -- | type = enum -- -- VkColorSpaceKHR registry at www.khronos.org newtype VkColorSpaceKHR VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit type VkColorComponentFlags = VkColorComponentBitmask FlagMask newtype VkCompositeAlphaBitmaskKHR (a :: FlagType) VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 1 pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 2 pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 3 pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | type = enum -- -- VkPresentModeKHR registry at www.khronos.org newtype VkPresentModeKHR VkPresentModeKHR :: Int32 -> VkPresentModeKHR pattern VK_PRESENT_MODE_IMMEDIATE_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_MAILBOX_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_RELAXED_KHR :: VkPresentModeKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult newtype VkSurfaceCounterBitmaskEXT (a :: FlagType) VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a newtype VkSurfaceTransformBitmaskKHR (a :: FlagType) VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 1 pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 2 pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 3 pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 4 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 5 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 6 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 7 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 8 pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkSurfaceCapabilities2EXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- VkSurfaceCounterFlagsEXT supportedSurfaceCounters;
-- } VkSurfaceCapabilities2EXT;
--
--
-- VkSurfaceCapabilities2EXT registry at www.khronos.org
type VkSurfaceCapabilities2EXT = VkStruct VkSurfaceCapabilities2EXT'
-- |
-- typedef struct VkSurfaceCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceCapabilitiesKHR surfaceCapabilities;
-- } VkSurfaceCapabilities2KHR;
--
--
-- VkSurfaceCapabilities2KHR registry at www.khronos.org
type VkSurfaceCapabilities2KHR = VkStruct VkSurfaceCapabilities2KHR'
-- |
-- typedef struct VkSurfaceCapabilitiesKHR {
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- } VkSurfaceCapabilitiesKHR;
--
--
-- VkSurfaceCapabilitiesKHR registry at www.khronos.org
type VkSurfaceCapabilitiesKHR = VkStruct VkSurfaceCapabilitiesKHR'
-- |
-- typedef struct VkSurfaceFormat2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceFormatKHR surfaceFormat;
-- } VkSurfaceFormat2KHR;
--
--
-- VkSurfaceFormat2KHR registry at www.khronos.org
type VkSurfaceFormat2KHR = VkStruct VkSurfaceFormat2KHR'
-- |
-- typedef struct VkSurfaceFormatKHR {
-- VkFormat format;
-- VkColorSpaceKHR colorSpace;
-- } VkSurfaceFormatKHR;
--
--
-- VkSurfaceFormatKHR registry at www.khronos.org
type VkSurfaceFormatKHR = VkStruct VkSurfaceFormatKHR'
type VK_KHR_SURFACE_SPEC_VERSION = 25
pattern VK_KHR_SURFACE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_SURFACE_EXTENSION_NAME = "VK_KHR_surface"
pattern VK_KHR_SURFACE_EXTENSION_NAME :: CString
pattern VK_ERROR_SURFACE_LOST_KHR :: VkResult
pattern VK_ERROR_NATIVE_WINDOW_IN_USE_KHR :: VkResult
pattern VK_COLORSPACE_SRGB_NONLINEAR_KHR :: () => () => VkColorSpaceKHR
-- | VkSurfaceKHR
pattern VK_OBJECT_TYPE_SURFACE_KHR :: VkObjectType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfacePresentModesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceFormatsKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceCapabilitiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceSupportKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySurfaceKHR"
module Graphics.Vulkan.Ext.VK_KHR_shared_presentable_image
newtype VkCompositeAlphaBitmaskKHR (a :: FlagType)
VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR
pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit
pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit
type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkSharedPresentSurfaceCapabilitiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- VkImageUsageFlags sharedPresentSupportedUsageFlags;
-- } VkSharedPresentSurfaceCapabilitiesKHR;
--
--
-- VkSharedPresentSurfaceCapabilitiesKHR registry at
-- www.khronos.org
type VkSharedPresentSurfaceCapabilitiesKHR = VkStruct VkSharedPresentSurfaceCapabilitiesKHR'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkSurfaceCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceCapabilitiesKHR surfaceCapabilities;
-- } VkSurfaceCapabilities2KHR;
--
--
-- VkSurfaceCapabilities2KHR registry at www.khronos.org
type VkSurfaceCapabilities2KHR = VkStruct VkSurfaceCapabilities2KHR'
-- |
-- typedef struct VkSurfaceCapabilitiesKHR {
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- } VkSurfaceCapabilitiesKHR;
--
--
-- VkSurfaceCapabilitiesKHR registry at www.khronos.org
type VkSurfaceCapabilitiesKHR = VkStruct VkSurfaceCapabilitiesKHR'
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
type VkGetSwapchainStatusKHR = "vkGetSwapchainStatusKHR"
pattern VkGetSwapchainStatusKHR :: CString
-- | Success codes: VK_SUCCESS, VK_SUBOPTIMAL_KHR.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST,
-- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkGetSwapchainStatusKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- ) ---- -- vkGetSwapchainStatusKHR registry at www.khronos.org type HS_vkGetSwapchainStatusKHR = VkDevice " device" -> VkSwapchainKHR " swapchain" -> IO VkResult type PFN_vkGetSwapchainStatusKHR = FunPtr HS_vkGetSwapchainStatusKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_KHR_SHARED_PRESENTABLE_IMAGE_SPEC_VERSION = 1 pattern VK_KHR_SHARED_PRESENTABLE_IMAGE_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_SHARED_PRESENTABLE_IMAGE_EXTENSION_NAME = "VK_KHR_shared_presentable_image" pattern VK_KHR_SHARED_PRESENTABLE_IMAGE_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_SHARED_PRESENT_SURFACE_CAPABILITIES_KHR :: VkStructureType pattern VK_PRESENT_MODE_SHARED_DEMAND_REFRESH_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_SHARED_CONTINUOUS_REFRESH_KHR :: VkPresentModeKHR pattern VK_IMAGE_LAYOUT_SHARED_PRESENT_KHR :: VkImageLayout instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetSwapchainStatusKHR" module Graphics.Vulkan.Ext.VK_EXT_display_surface_counter newtype VkCompositeAlphaBitmaskKHR (a :: FlagType) VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 1 pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 2 pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 3 pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask -- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkSurfaceCapabilities2EXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- VkSurfaceCounterFlagsEXT supportedSurfaceCounters;
-- } VkSurfaceCapabilities2EXT;
--
--
-- VkSurfaceCapabilities2EXT registry at www.khronos.org
type VkSurfaceCapabilities2EXT = VkStruct VkSurfaceCapabilities2EXT'
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
type VkGetPhysicalDeviceSurfaceCapabilities2EXT = "vkGetPhysicalDeviceSurfaceCapabilities2EXT"
pattern VkGetPhysicalDeviceSurfaceCapabilities2EXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkGetPhysicalDeviceSurfaceCapabilities2EXT -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , VkSurfaceCapabilities2EXT* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilities2EXT registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceCapabilities2EXT = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr VkSurfaceCapabilities2EXT " pSurfaceCapabilities" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT = FunPtr HS_vkGetPhysicalDeviceSurfaceCapabilities2EXT -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkSurfaceCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceCapabilitiesKHR surfaceCapabilities;
-- } VkSurfaceCapabilities2KHR;
--
--
-- VkSurfaceCapabilities2KHR registry at www.khronos.org
type VkSurfaceCapabilities2KHR = VkStruct VkSurfaceCapabilities2KHR'
-- |
-- typedef struct VkSurfaceCapabilitiesKHR {
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- } VkSurfaceCapabilitiesKHR;
--
--
-- VkSurfaceCapabilitiesKHR registry at www.khronos.org
type VkSurfaceCapabilitiesKHR = VkStruct VkSurfaceCapabilitiesKHR'
-- |
-- typedef struct VkSurfaceFormat2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceFormatKHR surfaceFormat;
-- } VkSurfaceFormat2KHR;
--
--
-- VkSurfaceFormat2KHR registry at www.khronos.org
type VkSurfaceFormat2KHR = VkStruct VkSurfaceFormat2KHR'
-- |
-- typedef struct VkSurfaceFormatKHR {
-- VkFormat format;
-- VkColorSpaceKHR colorSpace;
-- } VkSurfaceFormatKHR;
--
--
-- VkSurfaceFormatKHR registry at www.khronos.org
type VkSurfaceFormatKHR = VkStruct VkSurfaceFormatKHR'
type VK_EXT_DISPLAY_SURFACE_COUNTER_SPEC_VERSION = 1
pattern VK_EXT_DISPLAY_SURFACE_COUNTER_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME = "VK_EXT_display_surface_counter"
pattern VK_EXT_DISPLAY_SURFACE_COUNTER_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES2_EXT :: () => () => VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceCapabilities2EXT"
module Graphics.Vulkan.Ext.VK_NVX_multiview_per_view_attributes
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_SPEC_VERSION = 1
pattern VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_EXTENSION_NAME = "VK_NVX_multiview_per_view_attributes"
pattern VK_NVX_MULTIVIEW_PER_VIEW_ATTRIBUTES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PER_VIEW_ATTRIBUTES_PROPERTIES_NVX :: VkStructureType
-- | bitpos = 0
pattern VK_SUBPASS_DESCRIPTION_PER_VIEW_ATTRIBUTES_BIT_NVX :: VkSubpassDescriptionBitmask a
-- | bitpos = 1
pattern VK_SUBPASS_DESCRIPTION_PER_VIEW_POSITION_X_ONLY_BIT_NVX :: VkSubpassDescriptionBitmask a
module Graphics.Vulkan.Ext.VK_KHR_get_surface_capabilities2
newtype VkColorComponentBitmask (a :: FlagType)
VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask
pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit
pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask
-- | bitpos = 0
pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a
-- | bitpos = 1
pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a
-- | bitpos = 2
pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a
-- | bitpos = 3
pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a
-- | type = enum
--
-- VkColorSpaceKHR registry at www.khronos.org
newtype VkColorSpaceKHR
VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR
pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR
type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit
type VkColorComponentFlags = VkColorComponentBitmask FlagMask
newtype VkCompositeAlphaBitmaskKHR (a :: FlagType)
VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR
pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit
pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit
type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkSurfaceCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceCapabilitiesKHR surfaceCapabilities;
-- } VkSurfaceCapabilities2KHR;
--
--
-- VkSurfaceCapabilities2KHR registry at www.khronos.org
type VkSurfaceCapabilities2KHR = VkStruct VkSurfaceCapabilities2KHR'
-- |
-- typedef struct VkSurfaceCapabilitiesKHR {
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- } VkSurfaceCapabilitiesKHR;
--
--
-- VkSurfaceCapabilitiesKHR registry at www.khronos.org
type VkSurfaceCapabilitiesKHR = VkStruct VkSurfaceCapabilitiesKHR'
-- |
-- typedef struct VkSurfaceFormat2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkSurfaceFormatKHR surfaceFormat;
-- } VkSurfaceFormat2KHR;
--
--
-- VkSurfaceFormat2KHR registry at www.khronos.org
type VkSurfaceFormat2KHR = VkStruct VkSurfaceFormat2KHR'
-- |
-- typedef struct VkSurfaceFormatKHR {
-- VkFormat format;
-- VkColorSpaceKHR colorSpace;
-- } VkSurfaceFormatKHR;
--
--
-- VkSurfaceFormatKHR registry at www.khronos.org
type VkSurfaceFormatKHR = VkStruct VkSurfaceFormatKHR'
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
type VkGetPhysicalDeviceSurfaceCapabilities2KHR = "vkGetPhysicalDeviceSurfaceCapabilities2KHR"
pattern VkGetPhysicalDeviceSurfaceCapabilities2KHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkGetPhysicalDeviceSurfaceCapabilities2KHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo -- , VkSurfaceCapabilities2KHR* pSurfaceCapabilities -- ) ---- -- vkGetPhysicalDeviceSurfaceCapabilities2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceCapabilities2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceSurfaceInfo2KHR " pSurfaceInfo" -> Ptr VkSurfaceCapabilities2KHR " pSurfaceCapabilities" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR = FunPtr HS_vkGetPhysicalDeviceSurfaceCapabilities2KHR type VkGetPhysicalDeviceSurfaceFormats2KHR = "vkGetPhysicalDeviceSurfaceFormats2KHR" pattern VkGetPhysicalDeviceSurfaceFormats2KHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetPhysicalDeviceSurfaceFormats2KHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo -- , uint32_t* pSurfaceFormatCount -- , VkSurfaceFormat2KHR* pSurfaceFormats -- ) ---- -- vkGetPhysicalDeviceSurfaceFormats2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSurfaceFormats2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceSurfaceInfo2KHR " pSurfaceInfo" -> Ptr Word32 " pSurfaceFormatCount" -> Ptr VkSurfaceFormat2KHR " pSurfaceFormats" -> IO VkResult type PFN_vkGetPhysicalDeviceSurfaceFormats2KHR = FunPtr HS_vkGetPhysicalDeviceSurfaceFormats2KHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
-- |
-- typedef struct VkSurfaceCapabilities2EXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t minImageCount;
-- uint32_t maxImageCount;
-- VkExtent2D currentExtent;
-- VkExtent2D minImageExtent;
-- VkExtent2D maxImageExtent;
-- uint32_t maxImageArrayLayers;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkSurfaceTransformFlagBitsKHR currentTransform;
-- VkCompositeAlphaFlagsKHR supportedCompositeAlpha;
-- VkImageUsageFlags supportedUsageFlags;
-- VkSurfaceCounterFlagsEXT supportedSurfaceCounters;
-- } VkSurfaceCapabilities2EXT;
--
--
-- VkSurfaceCapabilities2EXT registry at www.khronos.org
type VkSurfaceCapabilities2EXT = VkStruct VkSurfaceCapabilities2EXT'
type VK_KHR_GET_SURFACE_CAPABILITIES_2_SPEC_VERSION = 1
pattern VK_KHR_GET_SURFACE_CAPABILITIES_2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME = "VK_KHR_get_surface_capabilities2"
pattern VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SURFACE_INFO_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_SURFACE_FORMAT_2_KHR :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceFormats2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSurfaceCapabilities2KHR"
module Graphics.Vulkan.Ext.VK_EXT_sampler_filter_minmax
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | type = enum
--
-- VkBorderColor registry at www.khronos.org
newtype VkBorderColor
VkBorderColor :: Int32 -> VkBorderColor
pattern VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK :: VkBorderColor
pattern VK_BORDER_COLOR_INT_TRANSPARENT_BLACK :: VkBorderColor
pattern VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK :: VkBorderColor
pattern VK_BORDER_COLOR_INT_OPAQUE_BLACK :: VkBorderColor
pattern VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE :: VkBorderColor
pattern VK_BORDER_COLOR_INT_OPAQUE_WHITE :: VkBorderColor
-- | type = enum
--
-- VkCompareOp registry at www.khronos.org
newtype VkCompareOp
VkCompareOp :: Int32 -> VkCompareOp
pattern VK_COMPARE_OP_NEVER :: VkCompareOp
pattern VK_COMPARE_OP_LESS :: VkCompareOp
pattern VK_COMPARE_OP_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_LESS_OR_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_GREATER :: VkCompareOp
pattern VK_COMPARE_OP_NOT_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_GREATER_OR_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_ALWAYS :: VkCompareOp
-- | type = enum
--
-- VkFilter registry at www.khronos.org
newtype VkFilter
VkFilter :: Int32 -> VkFilter
pattern VK_FILTER_NEAREST :: VkFilter
pattern VK_FILTER_LINEAR :: VkFilter
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkSamplerAddressMode registry at www.khronos.org
newtype VkSamplerAddressMode
VkSamplerAddressMode :: Int32 -> VkSamplerAddressMode
pattern VK_SAMPLER_ADDRESS_MODE_REPEAT :: VkSamplerAddressMode
pattern VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT :: VkSamplerAddressMode
pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE :: VkSamplerAddressMode
pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER :: VkSamplerAddressMode
-- | type = enum
--
-- VkSamplerMipmapMode registry at www.khronos.org
newtype VkSamplerMipmapMode
VkSamplerMipmapMode :: Int32 -> VkSamplerMipmapMode
-- | Choose nearest mip level
pattern VK_SAMPLER_MIPMAP_MODE_NEAREST :: VkSamplerMipmapMode
-- | Linear filter between mip levels
pattern VK_SAMPLER_MIPMAP_MODE_LINEAR :: VkSamplerMipmapMode
-- | type = enum
--
-- VkSamplerReductionModeEXT registry at www.khronos.org
newtype VkSamplerReductionModeEXT
VkSamplerReductionModeEXT :: Int32 -> VkSamplerReductionModeEXT
pattern VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT :: VkSamplerReductionModeEXT
pattern VK_SAMPLER_REDUCTION_MODE_MIN_EXT :: VkSamplerReductionModeEXT
pattern VK_SAMPLER_REDUCTION_MODE_MAX_EXT :: VkSamplerReductionModeEXT
-- | type = enum
--
-- VkSamplerYcbcrModelConversion registry at www.khronos.org
newtype VkSamplerYcbcrModelConversion
VkSamplerYcbcrModelConversion :: Int32 -> VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY :: VkSamplerYcbcrModelConversion
-- | just range expansion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY :: VkSamplerYcbcrModelConversion
-- | aka HD YUV
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 :: VkSamplerYcbcrModelConversion
-- | aka SD YUV
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 :: VkSamplerYcbcrModelConversion
-- | aka UHD YUV
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 :: VkSamplerYcbcrModelConversion
-- | type = enum
--
-- VkSamplerYcbcrRange registry at www.khronos.org
newtype VkSamplerYcbcrRange
VkSamplerYcbcrRange :: Int32 -> VkSamplerYcbcrRange
-- | Luma 0..1 maps to 0..255, chroma -0.5..0.5 to 1..255 (clamped)
pattern VK_SAMPLER_YCBCR_RANGE_ITU_FULL :: VkSamplerYcbcrRange
-- | Luma 0..1 maps to 16..235, chroma -0.5..0.5 to 16..240
pattern VK_SAMPLER_YCBCR_RANGE_ITU_NARROW :: VkSamplerYcbcrRange
newtype VkSamplerCreateFlagBits
VkSamplerCreateFlagBits :: VkFlags -> VkSamplerCreateFlagBits
newtype VkSamplerYcbcrModelConversionKHR
VkSamplerYcbcrModelConversionKHR :: VkFlags -> VkSamplerYcbcrModelConversionKHR
newtype VkSamplerYcbcrRangeKHR
VkSamplerYcbcrRangeKHR :: VkFlags -> VkSamplerYcbcrRangeKHR
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkSamplerCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerCreateFlags flags;
-- VkFilter magFilter;
-- VkFilter minFilter;
-- VkSamplerMipmapMode mipmapMode;
-- VkSamplerAddressMode addressModeU;
-- VkSamplerAddressMode addressModeV;
-- VkSamplerAddressMode addressModeW;
-- float mipLodBias;
-- VkBool32 anisotropyEnable;
-- float maxAnisotropy;
-- VkBool32 compareEnable;
-- VkCompareOp compareOp;
-- float minLod;
-- float maxLod;
-- VkBorderColor borderColor;
-- VkBool32 unnormalizedCoordinates;
-- } VkSamplerCreateInfo;
--
--
-- VkSamplerCreateInfo registry at www.khronos.org
type VkSamplerCreateInfo = VkStruct VkSamplerCreateInfo'
-- |
-- typedef struct VkSamplerReductionModeCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerReductionModeEXT reductionMode;
-- } VkSamplerReductionModeCreateInfoEXT;
--
--
-- VkSamplerReductionModeCreateInfoEXT registry at www.khronos.org
type VkSamplerReductionModeCreateInfoEXT = VkStruct VkSamplerReductionModeCreateInfoEXT'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_EXT_SAMPLER_FILTER_MINMAX_SPEC_VERSION = 1
pattern VK_EXT_SAMPLER_FILTER_MINMAX_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME = "VK_EXT_sampler_filter_minmax"
pattern VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_FILTER_MINMAX_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_REDUCTION_MODE_CREATE_INFO_EXT :: VkStructureType
-- | Format can be used with min/max reduction filtering
--
-- bitpos = 16
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_MINMAX_BIT_EXT :: VkFormatFeatureBitmask a
module Graphics.Vulkan.Ext.VK_EXT_external_memory_host
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkImportMemoryHostPointerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- void* pHostPointer;
-- } VkImportMemoryHostPointerInfoEXT;
--
--
-- VkImportMemoryHostPointerInfoEXT registry at www.khronos.org
type VkImportMemoryHostPointerInfoEXT = VkStruct VkImportMemoryHostPointerInfoEXT'
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkGetMemoryHostPointerPropertiesEXT = "vkGetMemoryHostPointerPropertiesEXT"
pattern VkGetMemoryHostPointerPropertiesEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_INVALID_EXTERNAL_HANDLE.
--
-- -- VkResult vkGetMemoryHostPointerPropertiesEXT -- ( VkDevice device -- , VkExternalMemoryHandleTypeFlagBits handleType -- , const void* pHostPointer -- , VkMemoryHostPointerPropertiesEXT* pMemoryHostPointerProperties -- ) ---- -- vkGetMemoryHostPointerPropertiesEXT registry at www.khronos.org type HS_vkGetMemoryHostPointerPropertiesEXT = VkDevice " device" -> VkExternalMemoryHandleTypeFlagBits " handleType" -> Ptr Void " pHostPointer" -> Ptr VkMemoryHostPointerPropertiesEXT " pMemoryHostPointerProperties" -> IO VkResult type PFN_vkGetMemoryHostPointerPropertiesEXT = FunPtr HS_vkGetMemoryHostPointerPropertiesEXT -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
type VK_EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION = 1
pattern VK_EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME = "VK_EXT_external_memory_host"
pattern VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT :: VkStructureType
-- | bitpos = 7
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 8
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT :: VkExternalMemoryHandleTypeBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetMemoryHostPointerPropertiesEXT"
module Graphics.Vulkan.Ext.VK_AMD_shader_core_properties
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_AMD_SHADER_CORE_PROPERTIES_SPEC_VERSION = 1
pattern VK_AMD_SHADER_CORE_PROPERTIES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_AMD_SHADER_CORE_PROPERTIES_EXTENSION_NAME = "VK_AMD_shader_core_properties"
pattern VK_AMD_SHADER_CORE_PROPERTIES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CORE_PROPERTIES_AMD :: VkStructureType
module Graphics.Vulkan.Ext.VK_NVX_device_generated_commands
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkCmdProcessCommandsInfoNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectTableNVX objectTable;
-- VkIndirectCommandsLayoutNVX indirectCommandsLayout;
-- uint32_t indirectCommandsTokenCount;
-- const VkIndirectCommandsTokenNVX* pIndirectCommandsTokens;
-- uint32_t maxSequencesCount;
-- VkCommandBuffer targetCommandBuffer;
-- VkBuffer sequencesCountBuffer;
-- VkDeviceSize sequencesCountOffset;
-- VkBuffer sequencesIndexBuffer;
-- VkDeviceSize sequencesIndexOffset;
-- } VkCmdProcessCommandsInfoNVX;
--
--
-- VkCmdProcessCommandsInfoNVX registry at www.khronos.org
type VkCmdProcessCommandsInfoNVX = VkStruct VkCmdProcessCommandsInfoNVX'
-- |
-- typedef struct VkCmdReserveSpaceForCommandsInfoNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkObjectTableNVX objectTable;
-- VkIndirectCommandsLayoutNVX indirectCommandsLayout;
-- uint32_t maxSequencesCount;
-- } VkCmdReserveSpaceForCommandsInfoNVX;
--
--
-- VkCmdReserveSpaceForCommandsInfoNVX registry at www.khronos.org
type VkCmdReserveSpaceForCommandsInfoNVX = VkStruct VkCmdReserveSpaceForCommandsInfoNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- | type = enum
--
-- VkIndexType registry at www.khronos.org
newtype VkIndexType
VkIndexType :: Int32 -> VkIndexType
pattern VK_INDEX_TYPE_UINT16 :: VkIndexType
pattern VK_INDEX_TYPE_UINT32 :: VkIndexType
-- |
-- typedef struct VkIndirectCommandsLayoutCreateInfoNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkIndirectCommandsLayoutUsageFlagsNVX flags;
-- uint32_t tokenCount;
-- const VkIndirectCommandsLayoutTokenNVX* pTokens;
-- } VkIndirectCommandsLayoutCreateInfoNVX;
--
--
-- VkIndirectCommandsLayoutCreateInfoNVX registry at
-- www.khronos.org
type VkIndirectCommandsLayoutCreateInfoNVX = VkStruct VkIndirectCommandsLayoutCreateInfoNVX'
-- |
-- typedef struct VkIndirectCommandsLayoutTokenNVX {
-- VkIndirectCommandsTokenTypeNVX tokenType;
-- uint32_t bindingUnit;
-- uint32_t dynamicCount;
-- uint32_t divisor;
-- } VkIndirectCommandsLayoutTokenNVX;
--
--
-- VkIndirectCommandsLayoutTokenNVX registry at www.khronos.org
type VkIndirectCommandsLayoutTokenNVX = VkStruct VkIndirectCommandsLayoutTokenNVX'
newtype VkIndirectCommandsLayoutUsageBitmaskNVX (a :: FlagType)
VkIndirectCommandsLayoutUsageBitmaskNVX :: VkFlags -> VkIndirectCommandsLayoutUsageBitmaskNVX
pattern VkIndirectCommandsLayoutUsageFlagBitsNVX :: VkFlags -> VkIndirectCommandsLayoutUsageBitmaskNVX FlagBit
pattern VkIndirectCommandsLayoutUsageFlagsNVX :: VkFlags -> VkIndirectCommandsLayoutUsageBitmaskNVX FlagMask
-- | bitpos = 0
pattern VK_INDIRECT_COMMANDS_LAYOUT_USAGE_UNORDERED_SEQUENCES_BIT_NVX :: VkIndirectCommandsLayoutUsageBitmaskNVX a
-- | bitpos = 1
pattern VK_INDIRECT_COMMANDS_LAYOUT_USAGE_SPARSE_SEQUENCES_BIT_NVX :: VkIndirectCommandsLayoutUsageBitmaskNVX a
-- | bitpos = 2
pattern VK_INDIRECT_COMMANDS_LAYOUT_USAGE_EMPTY_EXECUTIONS_BIT_NVX :: VkIndirectCommandsLayoutUsageBitmaskNVX a
-- | bitpos = 3
pattern VK_INDIRECT_COMMANDS_LAYOUT_USAGE_INDEXED_SEQUENCES_BIT_NVX :: VkIndirectCommandsLayoutUsageBitmaskNVX a
-- | type = enum
--
-- VkIndirectCommandsTokenTypeNVX registry at www.khronos.org
newtype VkIndirectCommandsTokenTypeNVX
VkIndirectCommandsTokenTypeNVX :: Int32 -> VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_PIPELINE_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_DESCRIPTOR_SET_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_INDEX_BUFFER_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_VERTEX_BUFFER_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_PUSH_CONSTANT_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_INDEXED_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_DRAW_NVX :: VkIndirectCommandsTokenTypeNVX
pattern VK_INDIRECT_COMMANDS_TOKEN_TYPE_DISPATCH_NVX :: VkIndirectCommandsTokenTypeNVX
type VkIndirectCommandsLayoutUsageFlagBitsNVX = VkIndirectCommandsLayoutUsageBitmaskNVX FlagBit
type VkIndirectCommandsLayoutUsageFlagsNVX = VkIndirectCommandsLayoutUsageBitmaskNVX FlagMask
-- |
-- typedef struct VkIndirectCommandsTokenNVX {
-- VkIndirectCommandsTokenTypeNVX tokenType;
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- } VkIndirectCommandsTokenNVX;
--
--
-- VkIndirectCommandsTokenNVX registry at www.khronos.org
type VkIndirectCommandsTokenNVX = VkStruct VkIndirectCommandsTokenNVX'
-- | type = enum
--
-- VkObjectEntryTypeNVX registry at www.khronos.org
newtype VkObjectEntryTypeNVX
VkObjectEntryTypeNVX :: Int32 -> VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_DESCRIPTOR_SET_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PIPELINE_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_INDEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_VERTEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PUSH_CONSTANT_NVX :: VkObjectEntryTypeNVX
newtype VkObjectEntryUsageBitmaskNVX (a :: FlagType)
VkObjectEntryUsageBitmaskNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX
pattern VkObjectEntryUsageFlagBitsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagBit
pattern VkObjectEntryUsageFlagsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagMask
-- | bitpos = 0
pattern VK_OBJECT_ENTRY_USAGE_GRAPHICS_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | bitpos = 1
pattern VK_OBJECT_ENTRY_USAGE_COMPUTE_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | Enums to track objects of various types
--
-- type = enum
--
-- VkObjectType registry at www.khronos.org
newtype VkObjectType
VkObjectType :: Int32 -> VkObjectType
pattern VK_OBJECT_TYPE_UNKNOWN :: VkObjectType
-- | VkInstance
pattern VK_OBJECT_TYPE_INSTANCE :: VkObjectType
-- | VkPhysicalDevice
pattern VK_OBJECT_TYPE_PHYSICAL_DEVICE :: VkObjectType
-- | VkDevice
pattern VK_OBJECT_TYPE_DEVICE :: VkObjectType
-- | VkQueue
pattern VK_OBJECT_TYPE_QUEUE :: VkObjectType
-- | VkSemaphore
pattern VK_OBJECT_TYPE_SEMAPHORE :: VkObjectType
-- | VkCommandBuffer
pattern VK_OBJECT_TYPE_COMMAND_BUFFER :: VkObjectType
-- | VkFence
pattern VK_OBJECT_TYPE_FENCE :: VkObjectType
-- | VkDeviceMemory
pattern VK_OBJECT_TYPE_DEVICE_MEMORY :: VkObjectType
-- | VkBuffer
pattern VK_OBJECT_TYPE_BUFFER :: VkObjectType
-- | VkImage
pattern VK_OBJECT_TYPE_IMAGE :: VkObjectType
-- | VkEvent
pattern VK_OBJECT_TYPE_EVENT :: VkObjectType
-- | VkQueryPool
pattern VK_OBJECT_TYPE_QUERY_POOL :: VkObjectType
-- | VkBufferView
pattern VK_OBJECT_TYPE_BUFFER_VIEW :: VkObjectType
-- | VkImageView
pattern VK_OBJECT_TYPE_IMAGE_VIEW :: VkObjectType
-- | VkShaderModule
pattern VK_OBJECT_TYPE_SHADER_MODULE :: VkObjectType
-- | VkPipelineCache
pattern VK_OBJECT_TYPE_PIPELINE_CACHE :: VkObjectType
-- | VkPipelineLayout
pattern VK_OBJECT_TYPE_PIPELINE_LAYOUT :: VkObjectType
-- | VkRenderPass
pattern VK_OBJECT_TYPE_RENDER_PASS :: VkObjectType
-- | VkPipeline
pattern VK_OBJECT_TYPE_PIPELINE :: VkObjectType
-- | VkDescriptorSetLayout
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT :: VkObjectType
-- | VkSampler
pattern VK_OBJECT_TYPE_SAMPLER :: VkObjectType
-- | VkDescriptorPool
pattern VK_OBJECT_TYPE_DESCRIPTOR_POOL :: VkObjectType
-- | VkDescriptorSet
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET :: VkObjectType
-- | VkFramebuffer
pattern VK_OBJECT_TYPE_FRAMEBUFFER :: VkObjectType
-- | VkCommandPool
pattern VK_OBJECT_TYPE_COMMAND_POOL :: VkObjectType
type VkObjectEntryUsageFlagBitsNVX = VkObjectEntryUsageBitmaskNVX FlagBit
type VkObjectEntryUsageFlagsNVX = VkObjectEntryUsageBitmaskNVX FlagMask
-- |
-- typedef struct VkObjectTableCreateInfoNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t objectCount;
-- const VkObjectEntryTypeNVX* pObjectEntryTypes;
-- const uint32_t* pObjectEntryCounts;
-- const VkObjectEntryUsageFlagsNVX* pObjectEntryUsageFlags;
-- uint32_t maxUniformBuffersPerDescriptor;
-- uint32_t maxStorageBuffersPerDescriptor;
-- uint32_t maxStorageImagesPerDescriptor;
-- uint32_t maxSampledImagesPerDescriptor;
-- uint32_t maxPipelineLayouts;
-- } VkObjectTableCreateInfoNVX;
--
--
-- VkObjectTableCreateInfoNVX registry at www.khronos.org
type VkObjectTableCreateInfoNVX = VkStruct VkObjectTableCreateInfoNVX'
-- |
-- typedef struct VkObjectTableDescriptorSetEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- VkPipelineLayout pipelineLayout;
-- VkDescriptorSet descriptorSet;
-- } VkObjectTableDescriptorSetEntryNVX;
--
--
-- VkObjectTableDescriptorSetEntryNVX registry at www.khronos.org
type VkObjectTableDescriptorSetEntryNVX = VkStruct VkObjectTableDescriptorSetEntryNVX'
-- |
-- typedef struct VkObjectTableEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- } VkObjectTableEntryNVX;
--
--
-- VkObjectTableEntryNVX registry at www.khronos.org
type VkObjectTableEntryNVX = VkStruct VkObjectTableEntryNVX'
-- |
-- typedef struct VkObjectTableIndexBufferEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- VkBuffer buffer;
-- VkIndexType indexType;
-- } VkObjectTableIndexBufferEntryNVX;
--
--
-- VkObjectTableIndexBufferEntryNVX registry at www.khronos.org
type VkObjectTableIndexBufferEntryNVX = VkStruct VkObjectTableIndexBufferEntryNVX'
-- |
-- typedef struct VkObjectTablePipelineEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- VkPipeline pipeline;
-- } VkObjectTablePipelineEntryNVX;
--
--
-- VkObjectTablePipelineEntryNVX registry at www.khronos.org
type VkObjectTablePipelineEntryNVX = VkStruct VkObjectTablePipelineEntryNVX'
-- |
-- typedef struct VkObjectTablePushConstantEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- VkPipelineLayout pipelineLayout;
-- VkShaderStageFlags stageFlags;
-- } VkObjectTablePushConstantEntryNVX;
--
--
-- VkObjectTablePushConstantEntryNVX registry at www.khronos.org
type VkObjectTablePushConstantEntryNVX = VkStruct VkObjectTablePushConstantEntryNVX'
-- |
-- typedef struct VkObjectTableVertexBufferEntryNVX {
-- VkObjectEntryTypeNVX type;
-- VkObjectEntryUsageFlagsNVX flags;
-- VkBuffer buffer;
-- } VkObjectTableVertexBufferEntryNVX;
--
--
-- VkObjectTableVertexBufferEntryNVX registry at www.khronos.org
type VkObjectTableVertexBufferEntryNVX = VkStruct VkObjectTableVertexBufferEntryNVX'
-- | type = enum
--
-- VkPipelineBindPoint registry at www.khronos.org
newtype VkPipelineBindPoint
VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint
-- | type = enum
--
-- VkPipelineCacheHeaderVersion registry at www.khronos.org
newtype VkPipelineCacheHeaderVersion
VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion
pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion
newtype VkPipelineCreateBitmask (a :: FlagType)
VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask
pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit
pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 1
pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 2
pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a
newtype VkPipelineStageBitmask (a :: FlagType)
VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask
pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit
pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask
-- | Before subsequent commands are processed
--
-- bitpos = 0
pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Draw/DispatchIndirect command fetch
--
-- bitpos = 1
pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a
-- | Vertex/index fetch
--
-- bitpos = 2
pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a
-- | Vertex shading
--
-- bitpos = 3
pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation control shading
--
-- bitpos = 4
pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation evaluation shading
--
-- bitpos = 5
pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a
-- | Geometry shading
--
-- bitpos = 6
pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a
-- | Fragment shading
--
-- bitpos = 7
pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a
-- | Early fragment (depth and stencil) tests
--
-- bitpos = 8
pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Late fragment (depth and stencil) tests
--
-- bitpos = 9
pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Color attachment writes
--
-- bitpos = 10
pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a
-- | Compute shading
--
-- bitpos = 11
pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a
-- | Transfer/copy operations
--
-- bitpos = 12
pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a
-- | After previous commands have completed
--
-- bitpos = 13
pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Indicates host (CPU) is a source/sink of the dependency
--
-- bitpos = 14
pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a
-- | All stages of the graphics pipeline
--
-- bitpos = 15
pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a
-- | All stages supported on the queue
--
-- bitpos = 16
pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a
newtype VkPipelineCacheCreateFlagBits
VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits
newtype VkPipelineColorBlendStateCreateFlagBits
VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits
type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit
type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask
newtype VkPipelineDepthStencilStateCreateFlagBits
VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits
newtype VkPipelineDynamicStateCreateFlagBits
VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits
newtype VkPipelineInputAssemblyStateCreateFlagBits
VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits
newtype VkPipelineLayoutCreateFlagBits
VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits
newtype VkPipelineMultisampleStateCreateFlagBits
VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits
newtype VkPipelineRasterizationStateCreateFlagBits
VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits
newtype VkPipelineShaderStageCreateFlagBits
VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits
type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit
type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask
newtype VkPipelineTessellationStateCreateFlagBits
VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits
newtype VkPipelineVertexInputStateCreateFlagBits
VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits
newtype VkPipelineViewportStateCreateFlagBits
VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits
-- | type = enum
--
-- VkShaderInfoTypeAMD registry at www.khronos.org
newtype VkShaderInfoTypeAMD
VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD
newtype VkShaderStageBitmask (a :: FlagType)
VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask
pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit
pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask
-- | bitpos = 0
pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a
-- | bitpos = 1
pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a
-- | bitpos = 2
pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a
-- | bitpos = 3
pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a
-- | bitpos = 4
pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a
-- | bitpos = 5
pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a
type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit
type VkShaderStageFlags = VkShaderStageBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkCmdProcessCommandsNVX = "vkCmdProcessCommandsNVX"
pattern VkCmdProcessCommandsNVX :: CString
-- | Queues: graphics, compute.
--
-- Renderpass: inside
--
-- -- void vkCmdProcessCommandsNVX -- ( VkCommandBuffer commandBuffer -- , const VkCmdProcessCommandsInfoNVX* pProcessCommandsInfo -- ) ---- -- vkCmdProcessCommandsNVX registry at www.khronos.org type HS_vkCmdProcessCommandsNVX = VkCommandBuffer " commandBuffer" -> Ptr VkCmdProcessCommandsInfoNVX " pProcessCommandsInfo" -> IO () type PFN_vkCmdProcessCommandsNVX = FunPtr HS_vkCmdProcessCommandsNVX type VkCmdReserveSpaceForCommandsNVX = "vkCmdReserveSpaceForCommandsNVX" pattern VkCmdReserveSpaceForCommandsNVX :: CString -- | Queues: graphics, compute. -- -- Renderpass: inside -- --
-- void vkCmdReserveSpaceForCommandsNVX -- ( VkCommandBuffer commandBuffer -- , const VkCmdReserveSpaceForCommandsInfoNVX* pReserveSpaceInfo -- ) ---- -- vkCmdReserveSpaceForCommandsNVX registry at www.khronos.org type HS_vkCmdReserveSpaceForCommandsNVX = VkCommandBuffer " commandBuffer" -> Ptr VkCmdReserveSpaceForCommandsInfoNVX " pReserveSpaceInfo" -> IO () type PFN_vkCmdReserveSpaceForCommandsNVX = FunPtr HS_vkCmdReserveSpaceForCommandsNVX type VkCreateIndirectCommandsLayoutNVX = "vkCreateIndirectCommandsLayoutNVX" pattern VkCreateIndirectCommandsLayoutNVX :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateIndirectCommandsLayoutNVX -- ( VkDevice device -- , const VkIndirectCommandsLayoutCreateInfoNVX* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkIndirectCommandsLayoutNVX* pIndirectCommandsLayout -- ) ---- -- vkCreateIndirectCommandsLayoutNVX registry at www.khronos.org type HS_vkCreateIndirectCommandsLayoutNVX = VkDevice " device" -> Ptr VkIndirectCommandsLayoutCreateInfoNVX " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkIndirectCommandsLayoutNVX " pIndirectCommandsLayout" -> IO VkResult type PFN_vkCreateIndirectCommandsLayoutNVX = FunPtr HS_vkCreateIndirectCommandsLayoutNVX type VkDestroyIndirectCommandsLayoutNVX = "vkDestroyIndirectCommandsLayoutNVX" pattern VkDestroyIndirectCommandsLayoutNVX :: CString -- |
-- void vkDestroyIndirectCommandsLayoutNVX -- ( VkDevice device -- , VkIndirectCommandsLayoutNVX indirectCommandsLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyIndirectCommandsLayoutNVX registry at www.khronos.org type HS_vkDestroyIndirectCommandsLayoutNVX = VkDevice " device" -> VkIndirectCommandsLayoutNVX " indirectCommandsLayout" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyIndirectCommandsLayoutNVX = FunPtr HS_vkDestroyIndirectCommandsLayoutNVX type VkCreateObjectTableNVX = "vkCreateObjectTableNVX" pattern VkCreateObjectTableNVX :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateObjectTableNVX -- ( VkDevice device -- , const VkObjectTableCreateInfoNVX* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkObjectTableNVX* pObjectTable -- ) ---- -- vkCreateObjectTableNVX registry at www.khronos.org type HS_vkCreateObjectTableNVX = VkDevice " device" -> Ptr VkObjectTableCreateInfoNVX " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkObjectTableNVX " pObjectTable" -> IO VkResult type PFN_vkCreateObjectTableNVX = FunPtr HS_vkCreateObjectTableNVX type VkDestroyObjectTableNVX = "vkDestroyObjectTableNVX" pattern VkDestroyObjectTableNVX :: CString -- |
-- void vkDestroyObjectTableNVX -- ( VkDevice device -- , VkObjectTableNVX objectTable -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyObjectTableNVX registry at www.khronos.org type HS_vkDestroyObjectTableNVX = VkDevice " device" -> VkObjectTableNVX " objectTable" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyObjectTableNVX = FunPtr HS_vkDestroyObjectTableNVX type VkRegisterObjectsNVX = "vkRegisterObjectsNVX" pattern VkRegisterObjectsNVX :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkRegisterObjectsNVX -- ( VkDevice device -- , VkObjectTableNVX objectTable -- , uint32_t objectCount -- , const VkObjectTableEntryNVX* const* ppObjectTableEntries -- , const uint32_t* pObjectIndices -- ) ---- -- vkRegisterObjectsNVX registry at www.khronos.org type HS_vkRegisterObjectsNVX = VkDevice " device" -> VkObjectTableNVX " objectTable" -> Word32 " objectCount" -> Ptr (Ptr VkObjectTableEntryNVX) " ppObjectTableEntries" -> Ptr Word32 " pObjectIndices" -> IO VkResult type PFN_vkRegisterObjectsNVX = FunPtr HS_vkRegisterObjectsNVX type VkUnregisterObjectsNVX = "vkUnregisterObjectsNVX" pattern VkUnregisterObjectsNVX :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkUnregisterObjectsNVX -- ( VkDevice device -- , VkObjectTableNVX objectTable -- , uint32_t objectCount -- , const VkObjectEntryTypeNVX* pObjectEntryTypes -- , const uint32_t* pObjectIndices -- ) ---- -- vkUnregisterObjectsNVX registry at www.khronos.org type HS_vkUnregisterObjectsNVX = VkDevice " device" -> VkObjectTableNVX " objectTable" -> Word32 " objectCount" -> Ptr VkObjectEntryTypeNVX " pObjectEntryTypes" -> Ptr Word32 " pObjectIndices" -> IO VkResult type PFN_vkUnregisterObjectsNVX = FunPtr HS_vkUnregisterObjectsNVX type VkGetPhysicalDeviceGeneratedCommandsPropertiesNVX = "vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX" pattern VkGetPhysicalDeviceGeneratedCommandsPropertiesNVX :: CString -- |
-- void vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX -- ( VkPhysicalDevice physicalDevice -- , VkDeviceGeneratedCommandsFeaturesNVX* pFeatures -- , VkDeviceGeneratedCommandsLimitsNVX* pLimits -- ) ---- -- vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX registry at -- www.khronos.org type HS_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX = VkPhysicalDevice " physicalDevice" -> Ptr VkDeviceGeneratedCommandsFeaturesNVX " pFeatures" -> Ptr VkDeviceGeneratedCommandsLimitsNVX " pLimits" -> IO () type PFN_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX = FunPtr HS_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
type VK_NVX_DEVICE_GENERATED_COMMANDS_SPEC_VERSION = 3
pattern VK_NVX_DEVICE_GENERATED_COMMANDS_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NVX_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME = "VK_NVX_device_generated_commands"
pattern VK_NVX_DEVICE_GENERATED_COMMANDS_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_OBJECT_TABLE_CREATE_INFO_NVX :: VkStructureType
pattern VK_STRUCTURE_TYPE_INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NVX :: VkStructureType
pattern VK_STRUCTURE_TYPE_CMD_PROCESS_COMMANDS_INFO_NVX :: VkStructureType
pattern VK_STRUCTURE_TYPE_CMD_RESERVE_SPACE_FOR_COMMANDS_INFO_NVX :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_LIMITS_NVX :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GENERATED_COMMANDS_FEATURES_NVX :: VkStructureType
-- | bitpos = 17
pattern VK_PIPELINE_STAGE_COMMAND_PROCESS_BIT_NVX :: VkPipelineStageBitmask a
-- | bitpos = 17
pattern VK_ACCESS_COMMAND_PROCESS_READ_BIT_NVX :: VkAccessBitmask a
-- | bitpos = 18
pattern VK_ACCESS_COMMAND_PROCESS_WRITE_BIT_NVX :: VkAccessBitmask a
-- | VkobjectTableNVX
pattern VK_OBJECT_TYPE_OBJECT_TABLE_NVX :: VkObjectType
-- | VkIndirectCommandsLayoutNVX
pattern VK_OBJECT_TYPE_INDIRECT_COMMANDS_LAYOUT_NVX :: VkObjectType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkUnregisterObjectsNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkRegisterObjectsNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyObjectTableNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateObjectTableNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyIndirectCommandsLayoutNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateIndirectCommandsLayoutNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdReserveSpaceForCommandsNVX"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdProcessCommandsNVX"
module Graphics.Vulkan.Ext.VK_EXT_global_priority
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkQueueBitmask (a :: FlagType)
VkQueueBitmask :: VkFlags -> VkQueueBitmask
pattern VkQueueFlagBits :: VkFlags -> VkQueueBitmask FlagBit
pattern VkQueueFlags :: VkFlags -> VkQueueBitmask FlagMask
-- | Queue supports graphics operations
--
-- bitpos = 0
pattern VK_QUEUE_GRAPHICS_BIT :: VkQueueBitmask a
-- | Queue supports compute operations
--
-- bitpos = 1
pattern VK_QUEUE_COMPUTE_BIT :: VkQueueBitmask a
-- | Queue supports transfer operations
--
-- bitpos = 2
pattern VK_QUEUE_TRANSFER_BIT :: VkQueueBitmask a
-- | Queue supports sparse resource memory management operations
--
-- bitpos = 3
pattern VK_QUEUE_SPARSE_BINDING_BIT :: VkQueueBitmask a
-- | type = enum
--
-- VkQueueGlobalPriorityEXT registry at www.khronos.org
newtype VkQueueGlobalPriorityEXT
VkQueueGlobalPriorityEXT :: Int32 -> VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT :: VkQueueGlobalPriorityEXT
type VkQueueFlagBits = VkQueueBitmask FlagBit
type VkQueueFlags = VkQueueBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_EXT_GLOBAL_PRIORITY_SPEC_VERSION = 2
pattern VK_EXT_GLOBAL_PRIORITY_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_GLOBAL_PRIORITY_EXTENSION_NAME = "VK_EXT_global_priority"
pattern VK_EXT_GLOBAL_PRIORITY_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_GLOBAL_PRIORITY_CREATE_INFO_EXT :: VkStructureType
pattern VK_ERROR_NOT_PERMITTED_EXT :: VkResult
module Graphics.Vulkan.Ext.VK_EXT_descriptor_indexing
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkDescriptorBindingBitmaskEXT (a :: FlagType)
VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT
pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit
pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 1
pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 2
pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 3
pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
newtype VkDescriptorPoolCreateBitmask (a :: FlagType)
VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask
pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit
pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask
-- | Descriptor sets may be freed individually
--
-- bitpos = 0
pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a
-- | type = enum
--
-- VkDescriptorType registry at www.khronos.org
newtype VkDescriptorType
VkDescriptorType :: Int32 -> VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType
-- | type = enum
--
-- VkDescriptorUpdateTemplateType registry at www.khronos.org
newtype VkDescriptorUpdateTemplateType
VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType
-- | Create descriptor update template for descriptor set updates
pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType
type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit
type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask
type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit
type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask
newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType)
VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask
pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit
pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask
type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit
type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask
newtype VkDescriptorUpdateTemplateTypeKHR
VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceFeatures {
-- VkBool32 robustBufferAccess;
-- VkBool32 fullDrawIndexUint32;
-- VkBool32 imageCubeArray;
-- VkBool32 independentBlend;
-- VkBool32 geometryShader;
-- VkBool32 tessellationShader;
-- VkBool32 sampleRateShading;
-- VkBool32 dualSrcBlend;
-- VkBool32 logicOp;
-- VkBool32 multiDrawIndirect;
-- VkBool32 drawIndirectFirstInstance;
-- VkBool32 depthClamp;
-- VkBool32 depthBiasClamp;
-- VkBool32 fillModeNonSolid;
-- VkBool32 depthBounds;
-- VkBool32 wideLines;
-- VkBool32 largePoints;
-- VkBool32 alphaToOne;
-- VkBool32 multiViewport;
-- VkBool32 samplerAnisotropy;
-- VkBool32 textureCompressionETC2;
-- VkBool32 textureCompressionASTC_LDR;
-- VkBool32 textureCompressionBC;
-- VkBool32 occlusionQueryPrecise;
-- VkBool32 pipelineStatisticsQuery;
-- VkBool32 vertexPipelineStoresAndAtomics;
-- VkBool32 fragmentStoresAndAtomics;
-- VkBool32 shaderTessellationAndGeometryPointSize;
-- VkBool32 shaderImageGatherExtended;
-- VkBool32 shaderStorageImageExtendedFormats;
-- VkBool32 shaderStorageImageMultisample;
-- VkBool32 shaderStorageImageReadWithoutFormat;
-- VkBool32 shaderStorageImageWriteWithoutFormat;
-- VkBool32 shaderUniformBufferArrayDynamicIndexing;
-- VkBool32 shaderSampledImageArrayDynamicIndexing;
-- VkBool32 shaderStorageBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageImageArrayDynamicIndexing;
-- VkBool32 shaderClipDistance;
-- VkBool32 shaderCullDistance;
-- VkBool32 shaderFloat64;
-- VkBool32 shaderInt64;
-- VkBool32 shaderInt16;
-- VkBool32 shaderResourceResidency;
-- VkBool32 shaderResourceMinLod;
-- VkBool32 sparseBinding;
-- VkBool32 sparseResidencyBuffer;
-- VkBool32 sparseResidencyImage2D;
-- VkBool32 sparseResidencyImage3D;
-- VkBool32 sparseResidency2Samples;
-- VkBool32 sparseResidency4Samples;
-- VkBool32 sparseResidency8Samples;
-- VkBool32 sparseResidency16Samples;
-- VkBool32 sparseResidencyAliased;
-- VkBool32 variableMultisampleRate;
-- VkBool32 inheritedQueries;
-- } VkPhysicalDeviceFeatures;
--
--
-- VkPhysicalDeviceFeatures registry at www.khronos.org
type VkPhysicalDeviceFeatures = VkStruct VkPhysicalDeviceFeatures'
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkShaderInfoTypeAMD registry at www.khronos.org
newtype VkShaderInfoTypeAMD
VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD
newtype VkShaderStageBitmask (a :: FlagType)
VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask
pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit
pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask
-- | bitpos = 0
pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a
-- | bitpos = 1
pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a
-- | bitpos = 2
pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a
-- | bitpos = 3
pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a
-- | bitpos = 4
pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a
-- | bitpos = 5
pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a
type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit
type VkShaderStageFlags = VkShaderStageBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_EXT_DESCRIPTOR_INDEXING_SPEC_VERSION = 2
pattern VK_EXT_DESCRIPTOR_INDEXING_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME = "VK_EXT_descriptor_indexing"
pattern VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_FEATURES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DESCRIPTOR_INDEXING_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_ALLOCATE_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_VARIABLE_DESCRIPTOR_COUNT_LAYOUT_SUPPORT_EXT :: VkStructureType
-- | bitpos = 1
pattern VK_DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorPoolCreateBitmask a
-- | bitpos = 1
pattern VK_DESCRIPTOR_SET_LAYOUT_CREATE_UPDATE_AFTER_BIND_POOL_BIT_EXT :: VkDescriptorSetLayoutCreateBitmask a
pattern VK_ERROR_FRAGMENTATION_EXT :: VkResult
module Graphics.Vulkan.Ext.VK_KHR_swapchain
type VkCreateSwapchainKHR = "vkCreateSwapchainKHR"
pattern VkCreateSwapchainKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST,
-- VK_ERROR_SURFACE_LOST_KHR,
-- VK_ERROR_NATIVE_WINDOW_IN_USE_KHR.
--
-- -- VkResult vkCreateSwapchainKHR -- ( VkDevice device -- , const VkSwapchainCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchain -- ) ---- -- vkCreateSwapchainKHR registry at www.khronos.org type HS_vkCreateSwapchainKHR = VkDevice " device" -> Ptr VkSwapchainCreateInfoKHR " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSwapchainKHR " pSwapchain" -> IO VkResult type PFN_vkCreateSwapchainKHR = FunPtr HS_vkCreateSwapchainKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR, -- VK_ERROR_NATIVE_WINDOW_IN_USE_KHR. -- --
-- VkResult vkCreateSwapchainKHR -- ( VkDevice device -- , const VkSwapchainCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchain -- ) ---- -- vkCreateSwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSwapchainKHR <- vkGetDeviceProc @VkCreateSwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSwapchainKHR <- vkGetProc @VkCreateSwapchainKHR ---- -- Note: vkCreateSwapchainKHRUnsafe and -- vkCreateSwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSwapchainKHR is an alias of -- vkCreateSwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSwapchainKHRSafe. vkCreateSwapchainKHR :: VkDevice -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR, -- VK_ERROR_NATIVE_WINDOW_IN_USE_KHR. -- --
-- VkResult vkCreateSwapchainKHR -- ( VkDevice device -- , const VkSwapchainCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchain -- ) ---- -- vkCreateSwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSwapchainKHR <- vkGetDeviceProc @VkCreateSwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSwapchainKHR <- vkGetProc @VkCreateSwapchainKHR ---- -- Note: vkCreateSwapchainKHRUnsafe and -- vkCreateSwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSwapchainKHR is an alias of -- vkCreateSwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSwapchainKHRSafe. vkCreateSwapchainKHRUnsafe :: VkDevice -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR, -- VK_ERROR_NATIVE_WINDOW_IN_USE_KHR. -- --
-- VkResult vkCreateSwapchainKHR -- ( VkDevice device -- , const VkSwapchainCreateInfoKHR* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchain -- ) ---- -- vkCreateSwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSwapchainKHR <- vkGetDeviceProc @VkCreateSwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSwapchainKHR <- vkGetProc @VkCreateSwapchainKHR ---- -- Note: vkCreateSwapchainKHRUnsafe and -- vkCreateSwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSwapchainKHR is an alias of -- vkCreateSwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSwapchainKHRSafe. vkCreateSwapchainKHRSafe :: VkDevice -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult type VkDestroySwapchainKHR = "vkDestroySwapchainKHR" pattern VkDestroySwapchainKHR :: CString -- |
-- void vkDestroySwapchainKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySwapchainKHR registry at www.khronos.org type HS_vkDestroySwapchainKHR = VkDevice " device" -> VkSwapchainKHR " swapchain" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySwapchainKHR = FunPtr HS_vkDestroySwapchainKHR -- |
-- void vkDestroySwapchainKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySwapchainKHR <- vkGetDeviceProc @VkDestroySwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myDestroySwapchainKHR <- vkGetProc @VkDestroySwapchainKHR ---- -- Note: vkDestroySwapchainKHRUnsafe and -- vkDestroySwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySwapchainKHR is an alias of -- vkDestroySwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySwapchainKHRSafe. vkDestroySwapchainKHR :: VkDevice -> VkSwapchainKHR -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySwapchainKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySwapchainKHR <- vkGetDeviceProc @VkDestroySwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myDestroySwapchainKHR <- vkGetProc @VkDestroySwapchainKHR ---- -- Note: vkDestroySwapchainKHRUnsafe and -- vkDestroySwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySwapchainKHR is an alias of -- vkDestroySwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySwapchainKHRSafe. vkDestroySwapchainKHRUnsafe :: VkDevice -> VkSwapchainKHR -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySwapchainKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySwapchainKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySwapchainKHR <- vkGetDeviceProc @VkDestroySwapchainKHR vkDevice ---- -- or less efficient: -- --
-- myDestroySwapchainKHR <- vkGetProc @VkDestroySwapchainKHR ---- -- Note: vkDestroySwapchainKHRUnsafe and -- vkDestroySwapchainKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySwapchainKHR is an alias of -- vkDestroySwapchainKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySwapchainKHRSafe. vkDestroySwapchainKHRSafe :: VkDevice -> VkSwapchainKHR -> Ptr VkAllocationCallbacks -> IO () type VkGetSwapchainImagesKHR = "vkGetSwapchainImagesKHR" pattern VkGetSwapchainImagesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetSwapchainImagesKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint32_t* pSwapchainImageCount -- , VkImage* pSwapchainImages -- ) ---- -- vkGetSwapchainImagesKHR registry at www.khronos.org type HS_vkGetSwapchainImagesKHR = VkDevice " device" -> VkSwapchainKHR " swapchain" -> Ptr Word32 " pSwapchainImageCount" -> Ptr VkImage " pSwapchainImages" -> IO VkResult type PFN_vkGetSwapchainImagesKHR = FunPtr HS_vkGetSwapchainImagesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetSwapchainImagesKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint32_t* pSwapchainImageCount -- , VkImage* pSwapchainImages -- ) ---- -- vkGetSwapchainImagesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetSwapchainImagesKHR <- vkGetDeviceProc @VkGetSwapchainImagesKHR vkDevice ---- -- or less efficient: -- --
-- myGetSwapchainImagesKHR <- vkGetProc @VkGetSwapchainImagesKHR ---- -- Note: vkGetSwapchainImagesKHRUnsafe and -- vkGetSwapchainImagesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetSwapchainImagesKHR is an alias of -- vkGetSwapchainImagesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetSwapchainImagesKHRSafe. vkGetSwapchainImagesKHR :: VkDevice -> VkSwapchainKHR -> Ptr Word32 -> Ptr VkImage -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetSwapchainImagesKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint32_t* pSwapchainImageCount -- , VkImage* pSwapchainImages -- ) ---- -- vkGetSwapchainImagesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetSwapchainImagesKHR <- vkGetDeviceProc @VkGetSwapchainImagesKHR vkDevice ---- -- or less efficient: -- --
-- myGetSwapchainImagesKHR <- vkGetProc @VkGetSwapchainImagesKHR ---- -- Note: vkGetSwapchainImagesKHRUnsafe and -- vkGetSwapchainImagesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetSwapchainImagesKHR is an alias of -- vkGetSwapchainImagesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetSwapchainImagesKHRSafe. vkGetSwapchainImagesKHRUnsafe :: VkDevice -> VkSwapchainKHR -> Ptr Word32 -> Ptr VkImage -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetSwapchainImagesKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint32_t* pSwapchainImageCount -- , VkImage* pSwapchainImages -- ) ---- -- vkGetSwapchainImagesKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetSwapchainImagesKHR <- vkGetDeviceProc @VkGetSwapchainImagesKHR vkDevice ---- -- or less efficient: -- --
-- myGetSwapchainImagesKHR <- vkGetProc @VkGetSwapchainImagesKHR ---- -- Note: vkGetSwapchainImagesKHRUnsafe and -- vkGetSwapchainImagesKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetSwapchainImagesKHR is an alias of -- vkGetSwapchainImagesKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetSwapchainImagesKHRSafe. vkGetSwapchainImagesKHRSafe :: VkDevice -> VkSwapchainKHR -> Ptr Word32 -> Ptr VkImage -> IO VkResult type VkAcquireNextImageKHR = "vkAcquireNextImageKHR" pattern VkAcquireNextImageKHR :: CString -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImageKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint64_t timeout -- , VkSemaphore semaphore -- , VkFence fence -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImageKHR registry at www.khronos.org type HS_vkAcquireNextImageKHR = VkDevice " device" -> VkSwapchainKHR " swapchain" -> Word64 " timeout" -> VkSemaphore " semaphore" -> VkFence " fence" -> Ptr Word32 " pImageIndex" -> IO VkResult type PFN_vkAcquireNextImageKHR = FunPtr HS_vkAcquireNextImageKHR -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImageKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint64_t timeout -- , VkSemaphore semaphore -- , VkFence fence -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImageKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImageKHR <- vkGetDeviceProc @VkAcquireNextImageKHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImageKHR <- vkGetProc @VkAcquireNextImageKHR ---- -- Note: vkAcquireNextImageKHRUnsafe and -- vkAcquireNextImageKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImageKHR is an alias of -- vkAcquireNextImageKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImageKHRSafe. vkAcquireNextImageKHR :: VkDevice -> VkSwapchainKHR -> Word64 -> VkSemaphore -> VkFence -> Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImageKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint64_t timeout -- , VkSemaphore semaphore -- , VkFence fence -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImageKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImageKHR <- vkGetDeviceProc @VkAcquireNextImageKHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImageKHR <- vkGetProc @VkAcquireNextImageKHR ---- -- Note: vkAcquireNextImageKHRUnsafe and -- vkAcquireNextImageKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImageKHR is an alias of -- vkAcquireNextImageKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImageKHRSafe. vkAcquireNextImageKHRUnsafe :: VkDevice -> VkSwapchainKHR -> Word64 -> VkSemaphore -> VkFence -> Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImageKHR -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , uint64_t timeout -- , VkSemaphore semaphore -- , VkFence fence -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImageKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImageKHR <- vkGetDeviceProc @VkAcquireNextImageKHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImageKHR <- vkGetProc @VkAcquireNextImageKHR ---- -- Note: vkAcquireNextImageKHRUnsafe and -- vkAcquireNextImageKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImageKHR is an alias of -- vkAcquireNextImageKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImageKHRSafe. vkAcquireNextImageKHRSafe :: VkDevice -> VkSwapchainKHR -> Word64 -> VkSemaphore -> VkFence -> Ptr Word32 -> IO VkResult type VkQueuePresentKHR = "vkQueuePresentKHR" pattern VkQueuePresentKHR :: CString -- | Success codes: VK_SUCCESS, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkQueuePresentKHR -- ( VkQueue queue -- , const VkPresentInfoKHR* pPresentInfo -- ) ---- -- vkQueuePresentKHR registry at www.khronos.org type HS_vkQueuePresentKHR = VkQueue " queue" -> Ptr VkPresentInfoKHR " pPresentInfo" -> IO VkResult type PFN_vkQueuePresentKHR = FunPtr HS_vkQueuePresentKHR -- | Success codes: VK_SUCCESS, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkQueuePresentKHR -- ( VkQueue queue -- , const VkPresentInfoKHR* pPresentInfo -- ) ---- -- vkQueuePresentKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueuePresentKHR <- vkGetInstanceProc @VkQueuePresentKHR vkInstance ---- -- or less efficient: -- --
-- myQueuePresentKHR <- vkGetProc @VkQueuePresentKHR ---- -- Note: vkQueuePresentKHRUnsafe and -- vkQueuePresentKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueuePresentKHR is an alias of -- vkQueuePresentKHRUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueuePresentKHRSafe. vkQueuePresentKHR :: VkQueue -> Ptr VkPresentInfoKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkQueuePresentKHR -- ( VkQueue queue -- , const VkPresentInfoKHR* pPresentInfo -- ) ---- -- vkQueuePresentKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueuePresentKHR <- vkGetInstanceProc @VkQueuePresentKHR vkInstance ---- -- or less efficient: -- --
-- myQueuePresentKHR <- vkGetProc @VkQueuePresentKHR ---- -- Note: vkQueuePresentKHRUnsafe and -- vkQueuePresentKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueuePresentKHR is an alias of -- vkQueuePresentKHRUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueuePresentKHRSafe. vkQueuePresentKHRUnsafe :: VkQueue -> Ptr VkPresentInfoKHR -> IO VkResult -- | Success codes: VK_SUCCESS, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkQueuePresentKHR -- ( VkQueue queue -- , const VkPresentInfoKHR* pPresentInfo -- ) ---- -- vkQueuePresentKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueuePresentKHR <- vkGetInstanceProc @VkQueuePresentKHR vkInstance ---- -- or less efficient: -- --
-- myQueuePresentKHR <- vkGetProc @VkQueuePresentKHR ---- -- Note: vkQueuePresentKHRUnsafe and -- vkQueuePresentKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueuePresentKHR is an alias of -- vkQueuePresentKHRUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueuePresentKHRSafe. vkQueuePresentKHRSafe :: VkQueue -> Ptr VkPresentInfoKHR -> IO VkResult newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkColorComponentBitmask (a :: FlagType) VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask -- | bitpos = 0 pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a -- | bitpos = 1 pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a -- | bitpos = 2 pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a -- | bitpos = 3 pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a -- | type = enum -- -- VkColorSpaceKHR registry at www.khronos.org newtype VkColorSpaceKHR VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit type VkColorComponentFlags = VkColorComponentBitmask FlagMask newtype VkCompositeAlphaBitmaskKHR (a :: FlagType) VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 1 pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 2 pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 3 pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | type = enum -- -- VkPresentModeKHR registry at www.khronos.org newtype VkPresentModeKHR VkPresentModeKHR :: Int32 -> VkPresentModeKHR pattern VK_PRESENT_MODE_IMMEDIATE_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_MAILBOX_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_RELAXED_KHR :: VkPresentModeKHR -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSharingMode registry at www.khronos.org newtype VkSharingMode VkSharingMode :: Int32 -> VkSharingMode pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType newtype VkSurfaceCounterBitmaskEXT (a :: FlagType) VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a newtype VkSurfaceTransformBitmaskKHR (a :: FlagType) VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 1 pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 2 pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 3 pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 4 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 5 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 6 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 7 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 8 pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask newtype VkSwapchainCreateBitmaskKHR (a :: FlagType) VkSwapchainCreateBitmaskKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR pattern VkSwapchainCreateFlagBitsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagBit pattern VkSwapchainCreateFlagsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagMask type VkSwapchainCreateFlagBitsKHR = VkSwapchainCreateBitmaskKHR FlagBit type VkSwapchainCreateFlagsKHR = VkSwapchainCreateBitmaskKHR FlagMask -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t swapchainCount;
-- const VkSwapchainKHR* pSwapchains;
-- const uint32_t* pImageIndices;
-- VkResult* pResults;
-- } VkPresentInfoKHR;
--
--
-- VkPresentInfoKHR registry at www.khronos.org
type VkPresentInfoKHR = VkStruct VkPresentInfoKHR'
-- |
-- typedef struct VkPresentRegionKHR {
-- uint32_t rectangleCount;
-- const VkRectLayerKHR* pRectangles;
-- } VkPresentRegionKHR;
--
--
-- VkPresentRegionKHR registry at www.khronos.org
type VkPresentRegionKHR = VkStruct VkPresentRegionKHR'
-- |
-- typedef struct VkPresentRegionsKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const VkPresentRegionKHR* pRegions;
-- } VkPresentRegionsKHR;
--
--
-- VkPresentRegionsKHR registry at www.khronos.org
type VkPresentRegionsKHR = VkStruct VkPresentRegionsKHR'
-- |
-- typedef struct VkPresentTimeGOOGLE {
-- uint32_t presentID;
-- uint64_t desiredPresentTime;
-- } VkPresentTimeGOOGLE;
--
--
-- VkPresentTimeGOOGLE registry at www.khronos.org
type VkPresentTimeGOOGLE = VkStruct VkPresentTimeGOOGLE'
-- |
-- typedef struct VkPresentTimesInfoGOOGLE {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const VkPresentTimeGOOGLE* pTimes;
-- } VkPresentTimesInfoGOOGLE;
--
--
-- VkPresentTimesInfoGOOGLE registry at www.khronos.org
type VkPresentTimesInfoGOOGLE = VkStruct VkPresentTimesInfoGOOGLE'
-- |
-- typedef struct VkSwapchainCounterCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceCounterFlagsEXT surfaceCounters;
-- } VkSwapchainCounterCreateInfoEXT;
--
--
-- VkSwapchainCounterCreateInfoEXT registry at www.khronos.org
type VkSwapchainCounterCreateInfoEXT = VkStruct VkSwapchainCounterCreateInfoEXT'
-- |
-- typedef struct VkSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainCreateFlagsKHR flags;
-- VkSurfaceKHR surface;
-- uint32_t minImageCount;
-- VkFormat imageFormat;
-- VkColorSpaceKHR imageColorSpace;
-- VkExtent2D imageExtent;
-- uint32_t imageArrayLayers;
-- VkImageUsageFlags imageUsage;
-- VkSharingMode imageSharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkSurfaceTransformFlagBitsKHR preTransform;
-- VkCompositeAlphaFlagBitsKHR compositeAlpha;
-- VkPresentModeKHR presentMode;
-- VkBool32 clipped;
-- VkSwapchainKHR oldSwapchain;
-- } VkSwapchainCreateInfoKHR;
--
--
-- VkSwapchainCreateInfoKHR registry at www.khronos.org
type VkSwapchainCreateInfoKHR = VkStruct VkSwapchainCreateInfoKHR'
type VK_KHR_SWAPCHAIN_SPEC_VERSION = 70
pattern VK_KHR_SWAPCHAIN_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_SWAPCHAIN_EXTENSION_NAME = "VK_KHR_swapchain"
pattern VK_KHR_SWAPCHAIN_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_PRESENT_INFO_KHR :: VkStructureType
pattern VK_IMAGE_LAYOUT_PRESENT_SRC_KHR :: VkImageLayout
pattern VK_SUBOPTIMAL_KHR :: VkResult
pattern VK_ERROR_OUT_OF_DATE_KHR :: VkResult
-- | VkSwapchainKHR
pattern VK_OBJECT_TYPE_SWAPCHAIN_KHR :: VkObjectType
-- |
-- typedef struct VkAcquireNextImageInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint64_t timeout;
-- VkSemaphore semaphore;
-- VkFence fence;
-- uint32_t deviceMask;
-- } VkAcquireNextImageInfoKHR;
--
--
-- VkAcquireNextImageInfoKHR registry at www.khronos.org
type VkAcquireNextImageInfoKHR = VkStruct VkAcquireNextImageInfoKHR'
-- |
-- typedef struct VkBindImageMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindImageMemoryInfo;
--
--
-- VkBindImageMemoryInfo registry at www.khronos.org
type VkBindImageMemoryInfo = VkStruct VkBindImageMemoryInfo'
-- |
-- typedef struct VkBindImageMemorySwapchainInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint32_t imageIndex;
-- } VkBindImageMemorySwapchainInfoKHR;
--
--
-- VkBindImageMemorySwapchainInfoKHR registry at www.khronos.org
type VkBindImageMemorySwapchainInfoKHR = VkStruct VkBindImageMemorySwapchainInfoKHR'
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
type VkGetDeviceGroupPresentCapabilitiesKHR = "vkGetDeviceGroupPresentCapabilitiesKHR"
pattern VkGetDeviceGroupPresentCapabilitiesKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkGetDeviceGroupPresentCapabilitiesKHR -- ( VkDevice device -- , VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities -- ) ---- -- vkGetDeviceGroupPresentCapabilitiesKHR registry at -- www.khronos.org type HS_vkGetDeviceGroupPresentCapabilitiesKHR = VkDevice " device" -> Ptr VkDeviceGroupPresentCapabilitiesKHR " pDeviceGroupPresentCapabilities" -> IO VkResult type PFN_vkGetDeviceGroupPresentCapabilitiesKHR = FunPtr HS_vkGetDeviceGroupPresentCapabilitiesKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDeviceGroupPresentCapabilitiesKHR -- ( VkDevice device -- , VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities -- ) ---- -- vkGetDeviceGroupPresentCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetDeviceProc @VkGetDeviceGroupPresentCapabilitiesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetProc @VkGetDeviceGroupPresentCapabilitiesKHR ---- -- Note: vkGetDeviceGroupPresentCapabilitiesKHRUnsafe and -- vkGetDeviceGroupPresentCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPresentCapabilitiesKHR is an -- alias of vkGetDeviceGroupPresentCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupPresentCapabilitiesKHRSafe. vkGetDeviceGroupPresentCapabilitiesKHR :: VkDevice -> Ptr VkDeviceGroupPresentCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDeviceGroupPresentCapabilitiesKHR -- ( VkDevice device -- , VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities -- ) ---- -- vkGetDeviceGroupPresentCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetDeviceProc @VkGetDeviceGroupPresentCapabilitiesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetProc @VkGetDeviceGroupPresentCapabilitiesKHR ---- -- Note: vkGetDeviceGroupPresentCapabilitiesKHRUnsafe and -- vkGetDeviceGroupPresentCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPresentCapabilitiesKHR is an -- alias of vkGetDeviceGroupPresentCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupPresentCapabilitiesKHRSafe. vkGetDeviceGroupPresentCapabilitiesKHRUnsafe :: VkDevice -> Ptr VkDeviceGroupPresentCapabilitiesKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetDeviceGroupPresentCapabilitiesKHR -- ( VkDevice device -- , VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities -- ) ---- -- vkGetDeviceGroupPresentCapabilitiesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetDeviceProc @VkGetDeviceGroupPresentCapabilitiesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPresentCapabilitiesKHR <- vkGetProc @VkGetDeviceGroupPresentCapabilitiesKHR ---- -- Note: vkGetDeviceGroupPresentCapabilitiesKHRUnsafe and -- vkGetDeviceGroupPresentCapabilitiesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPresentCapabilitiesKHR is an -- alias of vkGetDeviceGroupPresentCapabilitiesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupPresentCapabilitiesKHRSafe. vkGetDeviceGroupPresentCapabilitiesKHRSafe :: VkDevice -> Ptr VkDeviceGroupPresentCapabilitiesKHR -> IO VkResult type VkGetDeviceGroupSurfacePresentModesKHR = "vkGetDeviceGroupSurfacePresentModesKHR" pattern VkGetDeviceGroupSurfacePresentModesKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetDeviceGroupSurfacePresentModesKHR -- ( VkDevice device -- , VkSurfaceKHR surface -- , VkDeviceGroupPresentModeFlagsKHR* pModes -- ) ---- -- vkGetDeviceGroupSurfacePresentModesKHR registry at -- www.khronos.org type HS_vkGetDeviceGroupSurfacePresentModesKHR = VkDevice " device" -> VkSurfaceKHR " surface" -> Ptr VkDeviceGroupPresentModeFlagsKHR " pModes" -> IO VkResult type PFN_vkGetDeviceGroupSurfacePresentModesKHR = FunPtr HS_vkGetDeviceGroupSurfacePresentModesKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetDeviceGroupSurfacePresentModesKHR -- ( VkDevice device -- , VkSurfaceKHR surface -- , VkDeviceGroupPresentModeFlagsKHR* pModes -- ) ---- -- vkGetDeviceGroupSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetDeviceProc @VkGetDeviceGroupSurfacePresentModesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetProc @VkGetDeviceGroupSurfacePresentModesKHR ---- -- Note: vkGetDeviceGroupSurfacePresentModesKHRUnsafe and -- vkGetDeviceGroupSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupSurfacePresentModesKHR is an -- alias of vkGetDeviceGroupSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupSurfacePresentModesKHRSafe. vkGetDeviceGroupSurfacePresentModesKHR :: VkDevice -> VkSurfaceKHR -> Ptr VkDeviceGroupPresentModeFlagsKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetDeviceGroupSurfacePresentModesKHR -- ( VkDevice device -- , VkSurfaceKHR surface -- , VkDeviceGroupPresentModeFlagsKHR* pModes -- ) ---- -- vkGetDeviceGroupSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetDeviceProc @VkGetDeviceGroupSurfacePresentModesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetProc @VkGetDeviceGroupSurfacePresentModesKHR ---- -- Note: vkGetDeviceGroupSurfacePresentModesKHRUnsafe and -- vkGetDeviceGroupSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupSurfacePresentModesKHR is an -- alias of vkGetDeviceGroupSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupSurfacePresentModesKHRSafe. vkGetDeviceGroupSurfacePresentModesKHRUnsafe :: VkDevice -> VkSurfaceKHR -> Ptr VkDeviceGroupPresentModeFlagsKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetDeviceGroupSurfacePresentModesKHR -- ( VkDevice device -- , VkSurfaceKHR surface -- , VkDeviceGroupPresentModeFlagsKHR* pModes -- ) ---- -- vkGetDeviceGroupSurfacePresentModesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetDeviceProc @VkGetDeviceGroupSurfacePresentModesKHR vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupSurfacePresentModesKHR <- vkGetProc @VkGetDeviceGroupSurfacePresentModesKHR ---- -- Note: vkGetDeviceGroupSurfacePresentModesKHRUnsafe and -- vkGetDeviceGroupSurfacePresentModesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupSurfacePresentModesKHR is an -- alias of vkGetDeviceGroupSurfacePresentModesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetDeviceGroupSurfacePresentModesKHRSafe. vkGetDeviceGroupSurfacePresentModesKHRSafe :: VkDevice -> VkSurfaceKHR -> Ptr VkDeviceGroupPresentModeFlagsKHR -> IO VkResult type VkGetPhysicalDevicePresentRectanglesKHR = "vkGetPhysicalDevicePresentRectanglesKHR" pattern VkGetPhysicalDevicePresentRectanglesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDevicePresentRectanglesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pRectCount -- , VkRect2D* pRects -- ) ---- -- vkGetPhysicalDevicePresentRectanglesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDevicePresentRectanglesKHR = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr Word32 " pRectCount" -> Ptr VkRect2D " pRects" -> IO VkResult type PFN_vkGetPhysicalDevicePresentRectanglesKHR = FunPtr HS_vkGetPhysicalDevicePresentRectanglesKHR -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDevicePresentRectanglesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pRectCount -- , VkRect2D* pRects -- ) ---- -- vkGetPhysicalDevicePresentRectanglesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetInstanceProc @VkGetPhysicalDevicePresentRectanglesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetProc @VkGetPhysicalDevicePresentRectanglesKHR ---- -- Note: vkGetPhysicalDevicePresentRectanglesKHRUnsafe -- and vkGetPhysicalDevicePresentRectanglesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDevicePresentRectanglesKHR is an -- alias of vkGetPhysicalDevicePresentRectanglesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDevicePresentRectanglesKHRSafe. vkGetPhysicalDevicePresentRectanglesKHR :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkRect2D -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDevicePresentRectanglesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pRectCount -- , VkRect2D* pRects -- ) ---- -- vkGetPhysicalDevicePresentRectanglesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetInstanceProc @VkGetPhysicalDevicePresentRectanglesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetProc @VkGetPhysicalDevicePresentRectanglesKHR ---- -- Note: vkGetPhysicalDevicePresentRectanglesKHRUnsafe -- and vkGetPhysicalDevicePresentRectanglesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDevicePresentRectanglesKHR is an -- alias of vkGetPhysicalDevicePresentRectanglesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDevicePresentRectanglesKHRSafe. vkGetPhysicalDevicePresentRectanglesKHRUnsafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkRect2D -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDevicePresentRectanglesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pRectCount -- , VkRect2D* pRects -- ) ---- -- vkGetPhysicalDevicePresentRectanglesKHR registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetInstanceProc @VkGetPhysicalDevicePresentRectanglesKHR vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDevicePresentRectanglesKHR <- vkGetProc @VkGetPhysicalDevicePresentRectanglesKHR ---- -- Note: vkGetPhysicalDevicePresentRectanglesKHRUnsafe -- and vkGetPhysicalDevicePresentRectanglesKHRSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDevicePresentRectanglesKHR is an -- alias of vkGetPhysicalDevicePresentRectanglesKHRUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDevicePresentRectanglesKHRSafe. vkGetPhysicalDevicePresentRectanglesKHRSafe :: VkPhysicalDevice -> VkSurfaceKHR -> Ptr Word32 -> Ptr VkRect2D -> IO VkResult type VkAcquireNextImage2KHR = "vkAcquireNextImage2KHR" pattern VkAcquireNextImage2KHR :: CString -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImage2KHR -- ( VkDevice device -- , const VkAcquireNextImageInfoKHR* pAcquireInfo -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImage2KHR registry at www.khronos.org type HS_vkAcquireNextImage2KHR = VkDevice " device" -> Ptr VkAcquireNextImageInfoKHR " pAcquireInfo" -> Ptr Word32 " pImageIndex" -> IO VkResult type PFN_vkAcquireNextImage2KHR = FunPtr HS_vkAcquireNextImage2KHR -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImage2KHR -- ( VkDevice device -- , const VkAcquireNextImageInfoKHR* pAcquireInfo -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImage2KHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImage2KHR <- vkGetDeviceProc @VkAcquireNextImage2KHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImage2KHR <- vkGetProc @VkAcquireNextImage2KHR ---- -- Note: vkAcquireNextImage2KHRUnsafe and -- vkAcquireNextImage2KHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImage2KHR is an alias of -- vkAcquireNextImage2KHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImage2KHRSafe. vkAcquireNextImage2KHR :: VkDevice -> Ptr VkAcquireNextImageInfoKHR -> Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImage2KHR -- ( VkDevice device -- , const VkAcquireNextImageInfoKHR* pAcquireInfo -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImage2KHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImage2KHR <- vkGetDeviceProc @VkAcquireNextImage2KHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImage2KHR <- vkGetProc @VkAcquireNextImage2KHR ---- -- Note: vkAcquireNextImage2KHRUnsafe and -- vkAcquireNextImage2KHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImage2KHR is an alias of -- vkAcquireNextImage2KHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImage2KHRSafe. vkAcquireNextImage2KHRUnsafe :: VkDevice -> Ptr VkAcquireNextImageInfoKHR -> Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT, -- VK_NOT_READY, VK_SUBOPTIMAL_KHR. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkAcquireNextImage2KHR -- ( VkDevice device -- , const VkAcquireNextImageInfoKHR* pAcquireInfo -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImage2KHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAcquireNextImage2KHR <- vkGetDeviceProc @VkAcquireNextImage2KHR vkDevice ---- -- or less efficient: -- --
-- myAcquireNextImage2KHR <- vkGetProc @VkAcquireNextImage2KHR ---- -- Note: vkAcquireNextImage2KHRUnsafe and -- vkAcquireNextImage2KHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAcquireNextImage2KHR is an alias of -- vkAcquireNextImage2KHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAcquireNextImage2KHRSafe. vkAcquireNextImage2KHRSafe :: VkDevice -> Ptr VkAcquireNextImageInfoKHR -> Ptr Word32 -> IO VkResult -- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- |
-- typedef struct VkRectLayerKHR {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- uint32_t layer;
-- } VkRectLayerKHR;
--
--
-- VkRectLayerKHR registry at www.khronos.org
type VkRectLayerKHR = VkStruct VkRectLayerKHR'
pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_CAPABILITIES_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_SWAPCHAIN_CREATE_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR :: VkStructureType
-- | Allow images with VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT
--
-- bitpos = 0
pattern VK_SWAPCHAIN_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR :: VkSwapchainCreateBitmaskKHR a
-- | Swapchain is protected
--
-- bitpos = 1
pattern VK_SWAPCHAIN_CREATE_PROTECTED_BIT_KHR :: VkSwapchainCreateBitmaskKHR a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkAcquireNextImage2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDevicePresentRectanglesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceGroupSurfacePresentModesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceGroupPresentCapabilitiesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueuePresentKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkAcquireNextImageKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetSwapchainImagesKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySwapchainKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSwapchainKHR"
module Graphics.Vulkan.Ext.VK_KHR_display_swapchain
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkDisplayPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkRect2D srcRect;
-- VkRect2D dstRect;
-- VkBool32 persistent;
-- } VkDisplayPresentInfoKHR;
--
--
-- VkDisplayPresentInfoKHR registry at www.khronos.org
type VkDisplayPresentInfoKHR = VkStruct VkDisplayPresentInfoKHR'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t swapchainCount;
-- const VkSwapchainKHR* pSwapchains;
-- const uint32_t* pImageIndices;
-- VkResult* pResults;
-- } VkPresentInfoKHR;
--
--
-- VkPresentInfoKHR registry at www.khronos.org
type VkPresentInfoKHR = VkStruct VkPresentInfoKHR'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- | API result codes
--
-- type = enum
--
-- VkResult registry at www.khronos.org
newtype VkResult
VkResult :: Int32 -> VkResult
-- | Command completed successfully
pattern VK_SUCCESS :: VkResult
-- | A fence or query has not yet completed
pattern VK_NOT_READY :: VkResult
-- | A wait operation has not completed in the specified time
pattern VK_TIMEOUT :: VkResult
-- | An event is signaled
pattern VK_EVENT_SET :: VkResult
-- | An event is unsignaled
pattern VK_EVENT_RESET :: VkResult
-- | A return array was too small for the result
pattern VK_INCOMPLETE :: VkResult
-- | A host memory allocation has failed
pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult
-- | A device memory allocation has failed
pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult
-- | Initialization of a object has failed
pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult
-- | The logical device has been lost. See
pattern VK_ERROR_DEVICE_LOST :: VkResult
-- | Mapping of a memory object has failed
pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult
-- | Layer specified does not exist
pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult
-- | Extension specified does not exist
pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult
-- | Requested feature is not available on this device
pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult
-- | Unable to find a Vulkan driver
pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult
-- | Too many objects of the type have already been created
pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult
-- | Requested format is not supported on this device
pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult
-- | A requested pool allocation has failed due to fragmentation of the
-- pool's memory
pattern VK_ERROR_FRAGMENTED_POOL :: VkResult
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkCreateSharedSwapchainsKHR = "vkCreateSharedSwapchainsKHR"
pattern VkCreateSharedSwapchainsKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INCOMPATIBLE_DISPLAY_KHR, VK_ERROR_DEVICE_LOST,
-- VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkCreateSharedSwapchainsKHR -- ( VkDevice device -- , uint32_t swapchainCount -- , const VkSwapchainCreateInfoKHR* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchains -- ) ---- -- vkCreateSharedSwapchainsKHR registry at www.khronos.org type HS_vkCreateSharedSwapchainsKHR = VkDevice " device" -> Word32 " swapchainCount" -> Ptr VkSwapchainCreateInfoKHR " pCreateInfos" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSwapchainKHR " pSwapchains" -> IO VkResult type PFN_vkCreateSharedSwapchainsKHR = FunPtr HS_vkCreateSharedSwapchainsKHR -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INCOMPATIBLE_DISPLAY_KHR, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkCreateSharedSwapchainsKHR -- ( VkDevice device -- , uint32_t swapchainCount -- , const VkSwapchainCreateInfoKHR* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchains -- ) ---- -- vkCreateSharedSwapchainsKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSharedSwapchainsKHR <- vkGetDeviceProc @VkCreateSharedSwapchainsKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSharedSwapchainsKHR <- vkGetProc @VkCreateSharedSwapchainsKHR ---- -- Note: vkCreateSharedSwapchainsKHRUnsafe and -- vkCreateSharedSwapchainsKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSharedSwapchainsKHR is an alias of -- vkCreateSharedSwapchainsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSharedSwapchainsKHRSafe. vkCreateSharedSwapchainsKHR :: VkDevice -> Word32 -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INCOMPATIBLE_DISPLAY_KHR, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkCreateSharedSwapchainsKHR -- ( VkDevice device -- , uint32_t swapchainCount -- , const VkSwapchainCreateInfoKHR* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchains -- ) ---- -- vkCreateSharedSwapchainsKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSharedSwapchainsKHR <- vkGetDeviceProc @VkCreateSharedSwapchainsKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSharedSwapchainsKHR <- vkGetProc @VkCreateSharedSwapchainsKHR ---- -- Note: vkCreateSharedSwapchainsKHRUnsafe and -- vkCreateSharedSwapchainsKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSharedSwapchainsKHR is an alias of -- vkCreateSharedSwapchainsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSharedSwapchainsKHRSafe. vkCreateSharedSwapchainsKHRUnsafe :: VkDevice -> Word32 -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INCOMPATIBLE_DISPLAY_KHR, VK_ERROR_DEVICE_LOST, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkCreateSharedSwapchainsKHR -- ( VkDevice device -- , uint32_t swapchainCount -- , const VkSwapchainCreateInfoKHR* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkSwapchainKHR* pSwapchains -- ) ---- -- vkCreateSharedSwapchainsKHR registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSharedSwapchainsKHR <- vkGetDeviceProc @VkCreateSharedSwapchainsKHR vkDevice ---- -- or less efficient: -- --
-- myCreateSharedSwapchainsKHR <- vkGetProc @VkCreateSharedSwapchainsKHR ---- -- Note: vkCreateSharedSwapchainsKHRUnsafe and -- vkCreateSharedSwapchainsKHRSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSharedSwapchainsKHR is an alias of -- vkCreateSharedSwapchainsKHRUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSharedSwapchainsKHRSafe. vkCreateSharedSwapchainsKHRSafe :: VkDevice -> Word32 -> Ptr VkSwapchainCreateInfoKHR -> Ptr VkAllocationCallbacks -> Ptr VkSwapchainKHR -> IO VkResult newtype VkColorComponentBitmask (a :: FlagType) VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask -- | bitpos = 0 pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a -- | bitpos = 1 pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a -- | bitpos = 2 pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a -- | bitpos = 3 pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a -- | type = enum -- -- VkColorSpaceKHR registry at www.khronos.org newtype VkColorSpaceKHR VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit type VkColorComponentFlags = VkColorComponentBitmask FlagMask newtype VkCompositeAlphaBitmaskKHR (a :: FlagType) VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 1 pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 2 pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a -- | bitpos = 3 pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | type = enum -- -- VkPresentModeKHR registry at www.khronos.org newtype VkPresentModeKHR VkPresentModeKHR :: Int32 -> VkPresentModeKHR pattern VK_PRESENT_MODE_IMMEDIATE_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_MAILBOX_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_KHR :: VkPresentModeKHR pattern VK_PRESENT_MODE_FIFO_RELAXED_KHR :: VkPresentModeKHR -- | type = enum -- -- VkSharingMode registry at www.khronos.org newtype VkSharingMode VkSharingMode :: Int32 -> VkSharingMode pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode newtype VkSurfaceCounterBitmaskEXT (a :: FlagType) VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a newtype VkSurfaceTransformBitmaskKHR (a :: FlagType) VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask -- | bitpos = 0 pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 1 pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 2 pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 3 pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 4 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 5 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 6 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 7 pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a -- | bitpos = 8 pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask newtype VkSwapchainCreateBitmaskKHR (a :: FlagType) VkSwapchainCreateBitmaskKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR pattern VkSwapchainCreateFlagBitsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagBit pattern VkSwapchainCreateFlagsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagMask type VkSwapchainCreateFlagBitsKHR = VkSwapchainCreateBitmaskKHR FlagBit type VkSwapchainCreateFlagsKHR = VkSwapchainCreateBitmaskKHR FlagMask -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkSwapchainCounterCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceCounterFlagsEXT surfaceCounters;
-- } VkSwapchainCounterCreateInfoEXT;
--
--
-- VkSwapchainCounterCreateInfoEXT registry at www.khronos.org
type VkSwapchainCounterCreateInfoEXT = VkStruct VkSwapchainCounterCreateInfoEXT'
-- |
-- typedef struct VkSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainCreateFlagsKHR flags;
-- VkSurfaceKHR surface;
-- uint32_t minImageCount;
-- VkFormat imageFormat;
-- VkColorSpaceKHR imageColorSpace;
-- VkExtent2D imageExtent;
-- uint32_t imageArrayLayers;
-- VkImageUsageFlags imageUsage;
-- VkSharingMode imageSharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkSurfaceTransformFlagBitsKHR preTransform;
-- VkCompositeAlphaFlagBitsKHR compositeAlpha;
-- VkPresentModeKHR presentMode;
-- VkBool32 clipped;
-- VkSwapchainKHR oldSwapchain;
-- } VkSwapchainCreateInfoKHR;
--
--
-- VkSwapchainCreateInfoKHR registry at www.khronos.org
type VkSwapchainCreateInfoKHR = VkStruct VkSwapchainCreateInfoKHR'
type VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION = 9
pattern VK_KHR_DISPLAY_SWAPCHAIN_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME = "VK_KHR_display_swapchain"
pattern VK_KHR_DISPLAY_SWAPCHAIN_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DISPLAY_PRESENT_INFO_KHR :: VkStructureType
pattern VK_ERROR_INCOMPATIBLE_DISPLAY_KHR :: VkResult
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSharedSwapchainsKHR"
module Graphics.Vulkan.Ext.VK_EXT_display_control
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkColorComponentBitmask (a :: FlagType)
VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask
pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit
pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask
-- | bitpos = 0
pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a
-- | bitpos = 1
pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a
-- | bitpos = 2
pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a
-- | bitpos = 3
pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a
-- | type = enum
--
-- VkColorSpaceKHR registry at www.khronos.org
newtype VkColorSpaceKHR
VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR
pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR
type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit
type VkColorComponentFlags = VkColorComponentBitmask FlagMask
newtype VkCompositeAlphaBitmaskKHR (a :: FlagType)
VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR
pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit
pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit
type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDisplayEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayEventTypeEXT displayEvent;
-- } VkDisplayEventInfoEXT;
--
--
-- VkDisplayEventInfoEXT registry at www.khronos.org
type VkDisplayEventInfoEXT = VkStruct VkDisplayEventInfoEXT'
-- | type = enum
--
-- VkDisplayEventTypeEXT registry at www.khronos.org
newtype VkDisplayEventTypeEXT
VkDisplayEventTypeEXT :: Int32 -> VkDisplayEventTypeEXT
pattern VK_DISPLAY_EVENT_TYPE_FIRST_PIXEL_OUT_EXT :: VkDisplayEventTypeEXT
newtype VkDisplayPlaneAlphaBitmaskKHR (a :: FlagType)
VkDisplayPlaneAlphaBitmaskKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR
pattern VkDisplayPlaneAlphaFlagBitsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagBit
pattern VkDisplayPlaneAlphaFlagsKHR :: VkFlags -> VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_DISPLAY_PLANE_ALPHA_OPAQUE_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_DISPLAY_PLANE_ALPHA_GLOBAL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_DISPLAY_PLANE_ALPHA_PER_PIXEL_PREMULTIPLIED_BIT_KHR :: VkDisplayPlaneAlphaBitmaskKHR a
-- | type = enum
--
-- VkDisplayPowerStateEXT registry at www.khronos.org
newtype VkDisplayPowerStateEXT
VkDisplayPowerStateEXT :: Int32 -> VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_OFF_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_SUSPEND_EXT :: VkDisplayPowerStateEXT
pattern VK_DISPLAY_POWER_STATE_ON_EXT :: VkDisplayPowerStateEXT
type VkDisplayPlaneAlphaFlagBitsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagBit
type VkDisplayPlaneAlphaFlagsKHR = VkDisplayPlaneAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkDisplayPowerInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayPowerStateEXT powerState;
-- } VkDisplayPowerInfoEXT;
--
--
-- VkDisplayPowerInfoEXT registry at www.khronos.org
type VkDisplayPowerInfoEXT = VkStruct VkDisplayPowerInfoEXT'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- | type = enum
--
-- VkPresentModeKHR registry at www.khronos.org
newtype VkPresentModeKHR
VkPresentModeKHR :: Int32 -> VkPresentModeKHR
pattern VK_PRESENT_MODE_IMMEDIATE_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_MAILBOX_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_FIFO_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_FIFO_RELAXED_KHR :: VkPresentModeKHR
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
-- |
-- typedef struct VkSwapchainCounterCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceCounterFlagsEXT surfaceCounters;
-- } VkSwapchainCounterCreateInfoEXT;
--
--
-- VkSwapchainCounterCreateInfoEXT registry at www.khronos.org
type VkSwapchainCounterCreateInfoEXT = VkStruct VkSwapchainCounterCreateInfoEXT'
newtype VkSwapchainCreateBitmaskKHR (a :: FlagType)
VkSwapchainCreateBitmaskKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR
pattern VkSwapchainCreateFlagBitsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagBit
pattern VkSwapchainCreateFlagsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagMask
type VkSwapchainCreateFlagBitsKHR = VkSwapchainCreateBitmaskKHR FlagBit
type VkSwapchainCreateFlagsKHR = VkSwapchainCreateBitmaskKHR FlagMask
-- |
-- typedef struct VkSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainCreateFlagsKHR flags;
-- VkSurfaceKHR surface;
-- uint32_t minImageCount;
-- VkFormat imageFormat;
-- VkColorSpaceKHR imageColorSpace;
-- VkExtent2D imageExtent;
-- uint32_t imageArrayLayers;
-- VkImageUsageFlags imageUsage;
-- VkSharingMode imageSharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkSurfaceTransformFlagBitsKHR preTransform;
-- VkCompositeAlphaFlagBitsKHR compositeAlpha;
-- VkPresentModeKHR presentMode;
-- VkBool32 clipped;
-- VkSwapchainKHR oldSwapchain;
-- } VkSwapchainCreateInfoKHR;
--
--
-- VkSwapchainCreateInfoKHR registry at www.khronos.org
type VkSwapchainCreateInfoKHR = VkStruct VkSwapchainCreateInfoKHR'
type VkDisplayPowerControlEXT = "vkDisplayPowerControlEXT"
pattern VkDisplayPowerControlEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- -- VkResult vkDisplayPowerControlEXT -- ( VkDevice device -- , VkDisplayKHR display -- , const VkDisplayPowerInfoEXT* pDisplayPowerInfo -- ) ---- -- vkDisplayPowerControlEXT registry at www.khronos.org type HS_vkDisplayPowerControlEXT = VkDevice " device" -> VkDisplayKHR " display" -> Ptr VkDisplayPowerInfoEXT " pDisplayPowerInfo" -> IO VkResult type PFN_vkDisplayPowerControlEXT = FunPtr HS_vkDisplayPowerControlEXT type VkRegisterDeviceEventEXT = "vkRegisterDeviceEventEXT" pattern VkRegisterDeviceEventEXT :: CString -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkRegisterDeviceEventEXT -- ( VkDevice device -- , const VkDeviceEventInfoEXT* pDeviceEventInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkRegisterDeviceEventEXT registry at www.khronos.org type HS_vkRegisterDeviceEventEXT = VkDevice " device" -> Ptr VkDeviceEventInfoEXT " pDeviceEventInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkFence " pFence" -> IO VkResult type PFN_vkRegisterDeviceEventEXT = FunPtr HS_vkRegisterDeviceEventEXT type VkRegisterDisplayEventEXT = "vkRegisterDisplayEventEXT" pattern VkRegisterDisplayEventEXT :: CString -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkRegisterDisplayEventEXT -- ( VkDevice device -- , VkDisplayKHR display -- , const VkDisplayEventInfoEXT* pDisplayEventInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkRegisterDisplayEventEXT registry at www.khronos.org type HS_vkRegisterDisplayEventEXT = VkDevice " device" -> VkDisplayKHR " display" -> Ptr VkDisplayEventInfoEXT " pDisplayEventInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkFence " pFence" -> IO VkResult type PFN_vkRegisterDisplayEventEXT = FunPtr HS_vkRegisterDisplayEventEXT type VkGetSwapchainCounterEXT = "vkGetSwapchainCounterEXT" pattern VkGetSwapchainCounterEXT :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_DEVICE_LOST, -- VK_ERROR_OUT_OF_DATE_KHR. -- --
-- VkResult vkGetSwapchainCounterEXT -- ( VkDevice device -- , VkSwapchainKHR swapchain -- , VkSurfaceCounterFlagBitsEXT counter -- , uint64_t* pCounterValue -- ) ---- -- vkGetSwapchainCounterEXT registry at www.khronos.org type HS_vkGetSwapchainCounterEXT = VkDevice " device" -> VkSwapchainKHR " swapchain" -> VkSurfaceCounterFlagBitsEXT " counter" -> Ptr Word64 " pCounterValue" -> IO VkResult type PFN_vkGetSwapchainCounterEXT = FunPtr HS_vkGetSwapchainCounterEXT -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
-- |
-- typedef struct VkDisplayModeCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeCreateFlagsKHR flags;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModeCreateInfoKHR;
--
--
-- VkDisplayModeCreateInfoKHR registry at www.khronos.org
type VkDisplayModeCreateInfoKHR = VkStruct VkDisplayModeCreateInfoKHR'
-- |
-- typedef struct VkDisplayModeParametersKHR {
-- VkExtent2D visibleRegion;
-- uint32_t refreshRate;
-- } VkDisplayModeParametersKHR;
--
--
-- VkDisplayModeParametersKHR registry at www.khronos.org
type VkDisplayModeParametersKHR = VkStruct VkDisplayModeParametersKHR'
-- |
-- typedef struct VkDisplayModeProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayModePropertiesKHR displayModeProperties;
-- } VkDisplayModeProperties2KHR;
--
--
-- VkDisplayModeProperties2KHR registry at www.khronos.org
type VkDisplayModeProperties2KHR = VkStruct VkDisplayModeProperties2KHR'
-- |
-- typedef struct VkDisplayModePropertiesKHR {
-- VkDisplayModeKHR displayMode;
-- VkDisplayModeParametersKHR parameters;
-- } VkDisplayModePropertiesKHR;
--
--
-- VkDisplayModePropertiesKHR registry at www.khronos.org
type VkDisplayModePropertiesKHR = VkStruct VkDisplayModePropertiesKHR'
-- |
-- typedef struct VkDisplayPlaneCapabilities2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlaneCapabilitiesKHR capabilities;
-- } VkDisplayPlaneCapabilities2KHR;
--
--
-- VkDisplayPlaneCapabilities2KHR registry at www.khronos.org
type VkDisplayPlaneCapabilities2KHR = VkStruct VkDisplayPlaneCapabilities2KHR'
-- |
-- typedef struct VkDisplayPlaneCapabilitiesKHR {
-- VkDisplayPlaneAlphaFlagsKHR supportedAlpha;
-- VkOffset2D minSrcPosition;
-- VkOffset2D maxSrcPosition;
-- VkExtent2D minSrcExtent;
-- VkExtent2D maxSrcExtent;
-- VkOffset2D minDstPosition;
-- VkOffset2D maxDstPosition;
-- VkExtent2D minDstExtent;
-- VkExtent2D maxDstExtent;
-- } VkDisplayPlaneCapabilitiesKHR;
--
--
-- VkDisplayPlaneCapabilitiesKHR registry at www.khronos.org
type VkDisplayPlaneCapabilitiesKHR = VkStruct VkDisplayPlaneCapabilitiesKHR'
-- |
-- typedef struct VkDisplayPlaneInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplayModeKHR mode;
-- uint32_t planeIndex;
-- } VkDisplayPlaneInfo2KHR;
--
--
-- VkDisplayPlaneInfo2KHR registry at www.khronos.org
type VkDisplayPlaneInfo2KHR = VkStruct VkDisplayPlaneInfo2KHR'
-- |
-- typedef struct VkDisplayPlaneProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPlanePropertiesKHR displayPlaneProperties;
-- } VkDisplayPlaneProperties2KHR;
--
--
-- VkDisplayPlaneProperties2KHR registry at www.khronos.org
type VkDisplayPlaneProperties2KHR = VkStruct VkDisplayPlaneProperties2KHR'
-- |
-- typedef struct VkDisplayPlanePropertiesKHR {
-- VkDisplayKHR currentDisplay;
-- uint32_t currentStackIndex;
-- } VkDisplayPlanePropertiesKHR;
--
--
-- VkDisplayPlanePropertiesKHR registry at www.khronos.org
type VkDisplayPlanePropertiesKHR = VkStruct VkDisplayPlanePropertiesKHR'
-- |
-- typedef struct VkDisplayPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkRect2D srcRect;
-- VkRect2D dstRect;
-- VkBool32 persistent;
-- } VkDisplayPresentInfoKHR;
--
--
-- VkDisplayPresentInfoKHR registry at www.khronos.org
type VkDisplayPresentInfoKHR = VkStruct VkDisplayPresentInfoKHR'
-- |
-- typedef struct VkDisplayProperties2KHR {
-- VkStructureType sType;
-- void* pNext;
-- VkDisplayPropertiesKHR displayProperties;
-- } VkDisplayProperties2KHR;
--
--
-- VkDisplayProperties2KHR registry at www.khronos.org
type VkDisplayProperties2KHR = VkStruct VkDisplayProperties2KHR'
-- |
-- typedef struct VkDisplayPropertiesKHR {
-- VkDisplayKHR display;
-- const char* displayName;
-- VkExtent2D physicalDimensions;
-- VkExtent2D physicalResolution;
-- VkSurfaceTransformFlagsKHR supportedTransforms;
-- VkBool32 planeReorderPossible;
-- VkBool32 persistentContent;
-- } VkDisplayPropertiesKHR;
--
--
-- VkDisplayPropertiesKHR registry at www.khronos.org
type VkDisplayPropertiesKHR = VkStruct VkDisplayPropertiesKHR'
-- |
-- typedef struct VkDisplaySurfaceCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDisplaySurfaceCreateFlagsKHR flags;
-- VkDisplayModeKHR displayMode;
-- uint32_t planeIndex;
-- uint32_t planeStackIndex;
-- VkSurfaceTransformFlagBitsKHR transform;
-- float globalAlpha;
-- VkDisplayPlaneAlphaFlagBitsKHR alphaMode;
-- VkExtent2D imageExtent;
-- } VkDisplaySurfaceCreateInfoKHR;
--
--
-- VkDisplaySurfaceCreateInfoKHR registry at www.khronos.org
type VkDisplaySurfaceCreateInfoKHR = VkStruct VkDisplaySurfaceCreateInfoKHR'
type VK_EXT_DISPLAY_CONTROL_SPEC_VERSION = 1
pattern VK_EXT_DISPLAY_CONTROL_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DISPLAY_CONTROL_EXTENSION_NAME = "VK_EXT_display_control"
pattern VK_EXT_DISPLAY_CONTROL_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DISPLAY_POWER_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_DISPLAY_EVENT_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_SWAPCHAIN_COUNTER_CREATE_INFO_EXT :: VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetSwapchainCounterEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkRegisterDisplayEventEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkRegisterDeviceEventEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDisplayPowerControlEXT"
module Graphics.Vulkan.Ext.VK_AMD_texture_gather_bias_lod
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkTextureLODGatherFormatPropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supportsTextureGatherLODBiasAMD;
-- } VkTextureLODGatherFormatPropertiesAMD;
--
--
-- VkTextureLODGatherFormatPropertiesAMD registry at
-- www.khronos.org
type VkTextureLODGatherFormatPropertiesAMD = VkStruct VkTextureLODGatherFormatPropertiesAMD'
type VK_AMD_TEXTURE_GATHER_BIAS_LOD_SPEC_VERSION = 1
pattern VK_AMD_TEXTURE_GATHER_BIAS_LOD_SPEC_VERSION :: (Num a, Eq a) => a
type VK_AMD_TEXTURE_GATHER_BIAS_LOD_EXTENSION_NAME = "VK_AMD_texture_gather_bias_lod"
pattern VK_AMD_TEXTURE_GATHER_BIAS_LOD_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_TEXTURE_LOD_GATHER_FORMAT_PROPERTIES_AMD :: VkStructureType
module Graphics.Vulkan.Ext.VK_EXT_validation_flags
-- |
-- typedef struct VkApplicationInfo {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pApplicationName;
-- uint32_t applicationVersion;
-- const char* pEngineName;
-- uint32_t engineVersion;
-- uint32_t apiVersion;
-- } VkApplicationInfo;
--
--
-- VkApplicationInfo registry at www.khronos.org
type VkApplicationInfo = VkStruct VkApplicationInfo'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkInstanceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkInstanceCreateFlags flags;
-- const VkApplicationInfo* pApplicationInfo;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- } VkInstanceCreateInfo;
--
--
-- VkInstanceCreateInfo registry at www.khronos.org
type VkInstanceCreateInfo = VkStruct VkInstanceCreateInfo'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- | type = enum
--
-- VkValidationCacheHeaderVersionEXT registry at www.khronos.org
newtype VkValidationCacheHeaderVersionEXT
VkValidationCacheHeaderVersionEXT :: Int32 -> VkValidationCacheHeaderVersionEXT
pattern VK_VALIDATION_CACHE_HEADER_VERSION_ONE_EXT :: VkValidationCacheHeaderVersionEXT
-- | type = enum
--
-- VkValidationCheckEXT registry at www.khronos.org
newtype VkValidationCheckEXT
VkValidationCheckEXT :: Int32 -> VkValidationCheckEXT
pattern VK_VALIDATION_CHECK_ALL_EXT :: VkValidationCheckEXT
pattern VK_VALIDATION_CHECK_SHADERS_EXT :: VkValidationCheckEXT
-- |
-- typedef struct VkValidationFlagsEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t disabledValidationCheckCount;
-- VkValidationCheckEXT* pDisabledValidationChecks;
-- } VkValidationFlagsEXT;
--
--
-- VkValidationFlagsEXT registry at www.khronos.org
type VkValidationFlagsEXT = VkStruct VkValidationFlagsEXT'
type VK_EXT_VALIDATION_FLAGS_SPEC_VERSION = 1
pattern VK_EXT_VALIDATION_FLAGS_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME = "VK_EXT_validation_flags"
pattern VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT :: VkStructureType
module Graphics.Vulkan.Ext.VK_EXT_validation_cache
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkShaderModuleCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkShaderModuleCreateFlags flags;
-- size_t codeSize;
-- const uint32_t* pCode;
-- } VkShaderModuleCreateInfo;
--
--
-- VkShaderModuleCreateInfo registry at www.khronos.org
type VkShaderModuleCreateInfo = VkStruct VkShaderModuleCreateInfo'
-- |
-- typedef struct VkShaderModuleValidationCacheCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkValidationCacheEXT validationCache;
-- } VkShaderModuleValidationCacheCreateInfoEXT;
--
--
-- VkShaderModuleValidationCacheCreateInfoEXT registry at
-- www.khronos.org
type VkShaderModuleValidationCacheCreateInfoEXT = VkStruct VkShaderModuleValidationCacheCreateInfoEXT'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkValidationCacheCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkValidationCacheCreateFlagsEXT flags;
-- size_t initialDataSize;
-- const void* pInitialData;
-- } VkValidationCacheCreateInfoEXT;
--
--
-- VkValidationCacheCreateInfoEXT registry at www.khronos.org
type VkValidationCacheCreateInfoEXT = VkStruct VkValidationCacheCreateInfoEXT'
-- | type = enum
--
-- VkValidationCacheHeaderVersionEXT registry at www.khronos.org
newtype VkValidationCacheHeaderVersionEXT
VkValidationCacheHeaderVersionEXT :: Int32 -> VkValidationCacheHeaderVersionEXT
pattern VK_VALIDATION_CACHE_HEADER_VERSION_ONE_EXT :: VkValidationCacheHeaderVersionEXT
-- | type = enum
--
-- VkValidationCheckEXT registry at www.khronos.org
newtype VkValidationCheckEXT
VkValidationCheckEXT :: Int32 -> VkValidationCheckEXT
pattern VK_VALIDATION_CHECK_ALL_EXT :: VkValidationCheckEXT
pattern VK_VALIDATION_CHECK_SHADERS_EXT :: VkValidationCheckEXT
type VkCreateValidationCacheEXT = "vkCreateValidationCacheEXT"
pattern VkCreateValidationCacheEXT :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY.
--
-- -- VkResult vkCreateValidationCacheEXT -- ( VkDevice device -- , const VkValidationCacheCreateInfoEXT* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkValidationCacheEXT* pValidationCache -- ) ---- -- vkCreateValidationCacheEXT registry at www.khronos.org type HS_vkCreateValidationCacheEXT = VkDevice " device" -> Ptr VkValidationCacheCreateInfoEXT " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkValidationCacheEXT " pValidationCache" -> IO VkResult type PFN_vkCreateValidationCacheEXT = FunPtr HS_vkCreateValidationCacheEXT type VkDestroyValidationCacheEXT = "vkDestroyValidationCacheEXT" pattern VkDestroyValidationCacheEXT :: CString -- |
-- void vkDestroyValidationCacheEXT -- ( VkDevice device -- , VkValidationCacheEXT validationCache -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyValidationCacheEXT registry at www.khronos.org type HS_vkDestroyValidationCacheEXT = VkDevice " device" -> VkValidationCacheEXT " validationCache" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyValidationCacheEXT = FunPtr HS_vkDestroyValidationCacheEXT type VkMergeValidationCachesEXT = "vkMergeValidationCachesEXT" pattern VkMergeValidationCachesEXT :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkMergeValidationCachesEXT -- ( VkDevice device -- , VkValidationCacheEXT dstCache -- , uint32_t srcCacheCount -- , const VkValidationCacheEXT* pSrcCaches -- ) ---- -- vkMergeValidationCachesEXT registry at www.khronos.org type HS_vkMergeValidationCachesEXT = VkDevice " device" -> VkValidationCacheEXT " dstCache" -> Word32 " srcCacheCount" -> Ptr VkValidationCacheEXT " pSrcCaches" -> IO VkResult type PFN_vkMergeValidationCachesEXT = FunPtr HS_vkMergeValidationCachesEXT type VkGetValidationCacheDataEXT = "vkGetValidationCacheDataEXT" pattern VkGetValidationCacheDataEXT :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetValidationCacheDataEXT -- ( VkDevice device -- , VkValidationCacheEXT validationCache -- , size_t* pDataSize -- , void* pData -- ) ---- -- vkGetValidationCacheDataEXT registry at www.khronos.org type HS_vkGetValidationCacheDataEXT = VkDevice " device" -> VkValidationCacheEXT " validationCache" -> Ptr CSize " pDataSize" -> Ptr Void " pData" -> IO VkResult type PFN_vkGetValidationCacheDataEXT = FunPtr HS_vkGetValidationCacheDataEXT -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkValidationFlagsEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t disabledValidationCheckCount;
-- VkValidationCheckEXT* pDisabledValidationChecks;
-- } VkValidationFlagsEXT;
--
--
-- VkValidationFlagsEXT registry at www.khronos.org
type VkValidationFlagsEXT = VkStruct VkValidationFlagsEXT'
type VK_EXT_VALIDATION_CACHE_SPEC_VERSION = 1
pattern VK_EXT_VALIDATION_CACHE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_VALIDATION_CACHE_EXTENSION_NAME = "VK_EXT_validation_cache"
pattern VK_EXT_VALIDATION_CACHE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_VALIDATION_CACHE_CREATE_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT :: VkStructureType
-- | VkValidationCacheEXT
pattern VK_OBJECT_TYPE_VALIDATION_CACHE_EXT :: VkObjectType
pattern VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT :: () => () => VkDebugReportObjectTypeEXT
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetValidationCacheDataEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkMergeValidationCachesEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyValidationCacheEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateValidationCacheEXT"
module Graphics.Vulkan.Ext.VK_NV_framebuffer_mixed_samples
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | type = enum
--
-- VkCoverageModulationModeNV registry at www.khronos.org
newtype VkCoverageModulationModeNV
VkCoverageModulationModeNV :: Int32 -> VkCoverageModulationModeNV
pattern VK_COVERAGE_MODULATION_MODE_NONE_NV :: VkCoverageModulationModeNV
pattern VK_COVERAGE_MODULATION_MODE_RGB_NV :: VkCoverageModulationModeNV
pattern VK_COVERAGE_MODULATION_MODE_ALPHA_NV :: VkCoverageModulationModeNV
pattern VK_COVERAGE_MODULATION_MODE_RGBA_NV :: VkCoverageModulationModeNV
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineCoverageModulationStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCoverageModulationStateCreateFlagsNV flags;
-- VkCoverageModulationModeNV coverageModulationMode;
-- VkBool32 coverageModulationTableEnable;
-- uint32_t coverageModulationTableCount;
-- const float* pCoverageModulationTable;
-- } VkPipelineCoverageModulationStateCreateInfoNV;
--
--
-- VkPipelineCoverageModulationStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineCoverageModulationStateCreateInfoNV = VkStruct VkPipelineCoverageModulationStateCreateInfoNV'
-- |
-- typedef struct VkPipelineMultisampleStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineMultisampleStateCreateFlags flags;
-- VkSampleCountFlagBits rasterizationSamples;
-- VkBool32 sampleShadingEnable;
-- float minSampleShading;
-- const VkSampleMask* pSampleMask;
-- VkBool32 alphaToCoverageEnable;
-- VkBool32 alphaToOneEnable;
-- } VkPipelineMultisampleStateCreateInfo;
--
--
-- VkPipelineMultisampleStateCreateInfo registry at
-- www.khronos.org
type VkPipelineMultisampleStateCreateInfo = VkStruct VkPipelineMultisampleStateCreateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_NV_FRAMEBUFFER_MIXED_SAMPLES_SPEC_VERSION = 1
pattern VK_NV_FRAMEBUFFER_MIXED_SAMPLES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_FRAMEBUFFER_MIXED_SAMPLES_EXTENSION_NAME = "VK_NV_framebuffer_mixed_samples"
pattern VK_NV_FRAMEBUFFER_MIXED_SAMPLES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV :: VkStructureType
module Graphics.Vulkan.Ext.VK_NV_fragment_coverage_to_color
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineCoverageToColorStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCoverageToColorStateCreateFlagsNV flags;
-- VkBool32 coverageToColorEnable;
-- uint32_t coverageToColorLocation;
-- } VkPipelineCoverageToColorStateCreateInfoNV;
--
--
-- VkPipelineCoverageToColorStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineCoverageToColorStateCreateInfoNV = VkStruct VkPipelineCoverageToColorStateCreateInfoNV'
-- |
-- typedef struct VkPipelineMultisampleStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineMultisampleStateCreateFlags flags;
-- VkSampleCountFlagBits rasterizationSamples;
-- VkBool32 sampleShadingEnable;
-- float minSampleShading;
-- const VkSampleMask* pSampleMask;
-- VkBool32 alphaToCoverageEnable;
-- VkBool32 alphaToOneEnable;
-- } VkPipelineMultisampleStateCreateInfo;
--
--
-- VkPipelineMultisampleStateCreateInfo registry at
-- www.khronos.org
type VkPipelineMultisampleStateCreateInfo = VkStruct VkPipelineMultisampleStateCreateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_NV_FRAGMENT_COVERAGE_TO_COLOR_SPEC_VERSION = 1
pattern VK_NV_FRAGMENT_COVERAGE_TO_COLOR_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_FRAGMENT_COVERAGE_TO_COLOR_EXTENSION_NAME = "VK_NV_fragment_coverage_to_color"
pattern VK_NV_FRAGMENT_COVERAGE_TO_COLOR_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PIPELINE_COVERAGE_TO_COLOR_STATE_CREATE_INFO_NV :: VkStructureType
module Graphics.Vulkan.Ext.VK_EXT_vertex_attribute_divisor
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
-- |
-- typedef struct VkPipelineVertexInputDivisorStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t vertexBindingDivisorCount;
-- const VkVertexInputBindingDivisorDescriptionEXT* pVertexBindingDivisors;
-- } VkPipelineVertexInputDivisorStateCreateInfoEXT;
--
--
-- VkPipelineVertexInputDivisorStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineVertexInputDivisorStateCreateInfoEXT = VkStruct VkPipelineVertexInputDivisorStateCreateInfoEXT'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineVertexInputStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineVertexInputStateCreateFlags flags;
-- uint32_t vertexBindingDescriptionCount;
-- const VkVertexInputBindingDescription* pVertexBindingDescriptions;
-- uint32_t vertexAttributeDescriptionCount;
-- const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
-- } VkPipelineVertexInputStateCreateInfo;
--
--
-- VkPipelineVertexInputStateCreateInfo registry at
-- www.khronos.org
type VkPipelineVertexInputStateCreateInfo = VkStruct VkPipelineVertexInputStateCreateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkVertexInputAttributeDescription {
-- uint32_t location;
-- uint32_t binding;
-- VkFormat format;
-- uint32_t offset;
-- } VkVertexInputAttributeDescription;
--
--
-- VkVertexInputAttributeDescription registry at www.khronos.org
type VkVertexInputAttributeDescription = VkStruct VkVertexInputAttributeDescription'
-- |
-- typedef struct VkVertexInputBindingDescription {
-- uint32_t binding;
-- uint32_t stride;
-- VkVertexInputRate inputRate;
-- } VkVertexInputBindingDescription;
--
--
-- VkVertexInputBindingDescription registry at www.khronos.org
type VkVertexInputBindingDescription = VkStruct VkVertexInputBindingDescription'
-- |
-- typedef struct VkVertexInputBindingDivisorDescriptionEXT {
-- uint32_t binding;
-- uint32_t divisor;
-- } VkVertexInputBindingDivisorDescriptionEXT;
--
--
-- VkVertexInputBindingDivisorDescriptionEXT registry at
-- www.khronos.org
type VkVertexInputBindingDivisorDescriptionEXT = VkStruct VkVertexInputBindingDivisorDescriptionEXT'
-- | type = enum
--
-- VkVertexInputRate registry at www.khronos.org
newtype VkVertexInputRate
VkVertexInputRate :: Int32 -> VkVertexInputRate
pattern VK_VERTEX_INPUT_RATE_VERTEX :: VkVertexInputRate
pattern VK_VERTEX_INPUT_RATE_INSTANCE :: VkVertexInputRate
type VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_SPEC_VERSION = 1
pattern VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_EXTENSION_NAME = "VK_EXT_vertex_attribute_divisor"
pattern VK_EXT_VERTEX_ATTRIBUTE_DIVISOR_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VERTEX_ATTRIBUTE_DIVISOR_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_DIVISOR_STATE_CREATE_INFO_EXT :: VkStructureType
module Graphics.Vulkan.Ext.VK_EXT_sample_locations
newtype VkAccessBitmask (a :: FlagType)
VkAccessBitmask :: VkFlags -> VkAccessBitmask
pattern VkAccessFlagBits :: VkFlags -> VkAccessBitmask FlagBit
pattern VkAccessFlags :: VkFlags -> VkAccessBitmask FlagMask
-- | Controls coherency of indirect command reads
--
-- bitpos = 0
pattern VK_ACCESS_INDIRECT_COMMAND_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of index reads
--
-- bitpos = 1
pattern VK_ACCESS_INDEX_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of vertex attribute reads
--
-- bitpos = 2
pattern VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of uniform buffer reads
--
-- bitpos = 3
pattern VK_ACCESS_UNIFORM_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of input attachment reads
--
-- bitpos = 4
pattern VK_ACCESS_INPUT_ATTACHMENT_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of shader reads
--
-- bitpos = 5
pattern VK_ACCESS_SHADER_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of shader writes
--
-- bitpos = 6
pattern VK_ACCESS_SHADER_WRITE_BIT :: VkAccessBitmask a
-- | Controls coherency of color attachment reads
--
-- bitpos = 7
pattern VK_ACCESS_COLOR_ATTACHMENT_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of color attachment writes
--
-- bitpos = 8
pattern VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a
-- | Controls coherency of depth/stencil attachment reads
--
-- bitpos = 9
pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of depth/stencil attachment writes
--
-- bitpos = 10
pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a
-- | Controls coherency of transfer reads
--
-- bitpos = 11
pattern VK_ACCESS_TRANSFER_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of transfer writes
--
-- bitpos = 12
pattern VK_ACCESS_TRANSFER_WRITE_BIT :: VkAccessBitmask a
-- | Controls coherency of host reads
--
-- bitpos = 13
pattern VK_ACCESS_HOST_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of host writes
--
-- bitpos = 14
pattern VK_ACCESS_HOST_WRITE_BIT :: VkAccessBitmask a
-- | Controls coherency of memory reads
--
-- bitpos = 15
pattern VK_ACCESS_MEMORY_READ_BIT :: VkAccessBitmask a
-- | Controls coherency of memory writes
--
-- bitpos = 16
pattern VK_ACCESS_MEMORY_WRITE_BIT :: VkAccessBitmask a
type VkAccessFlagBits = VkAccessBitmask FlagBit
type VkAccessFlags = VkAccessBitmask FlagMask
-- |
-- typedef struct VkAttachmentSampleLocationsEXT {
-- uint32_t attachmentIndex;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkAttachmentSampleLocationsEXT;
--
--
-- VkAttachmentSampleLocationsEXT registry at www.khronos.org
type VkAttachmentSampleLocationsEXT = VkStruct VkAttachmentSampleLocationsEXT'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | / Union allowing specification of floating point, integer, or
-- unsigned integer color data. Actual value selected is based on
-- imageattachment being cleared.
--
--
-- typedef union VkClearColorValue {
-- float float32[4];
-- int32_t int32[4];
-- uint32_t uint32[4];
-- } VkClearColorValue;
--
--
-- VkClearColorValue registry at www.khronos.org
type VkClearColorValue = VkStruct VkClearColorValue'
-- |
-- typedef struct VkClearDepthStencilValue {
-- float depth;
-- uint32_t stencil;
-- } VkClearDepthStencilValue;
--
--
-- VkClearDepthStencilValue registry at www.khronos.org
type VkClearDepthStencilValue = VkStruct VkClearDepthStencilValue'
-- | // Union allowing specification of color or depth and stencil values.
-- Actual value selected is based on attachment being cleared.
--
--
-- typedef union VkClearValue {
-- VkClearColorValue color;
-- VkClearDepthStencilValue depthStencil;
-- } VkClearValue;
--
--
-- VkClearValue registry at www.khronos.org
type VkClearValue = VkStruct VkClearValue'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkMultisamplePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkExtent2D maxSampleLocationGridSize;
-- } VkMultisamplePropertiesEXT;
--
--
-- VkMultisamplePropertiesEXT registry at www.khronos.org
type VkMultisamplePropertiesEXT = VkStruct VkMultisamplePropertiesEXT'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineMultisampleStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineMultisampleStateCreateFlags flags;
-- VkSampleCountFlagBits rasterizationSamples;
-- VkBool32 sampleShadingEnable;
-- float minSampleShading;
-- const VkSampleMask* pSampleMask;
-- VkBool32 alphaToCoverageEnable;
-- VkBool32 alphaToOneEnable;
-- } VkPipelineMultisampleStateCreateInfo;
--
--
-- VkPipelineMultisampleStateCreateInfo registry at
-- www.khronos.org
type VkPipelineMultisampleStateCreateInfo = VkStruct VkPipelineMultisampleStateCreateInfo'
-- |
-- typedef struct VkPipelineSampleLocationsStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 sampleLocationsEnable;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkPipelineSampleLocationsStateCreateInfoEXT;
--
--
-- VkPipelineSampleLocationsStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineSampleLocationsStateCreateInfoEXT = VkStruct VkPipelineSampleLocationsStateCreateInfoEXT'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- |
-- typedef struct VkRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPass renderPass;
-- VkFramebuffer framebuffer;
-- VkRect2D renderArea;
-- uint32_t clearValueCount;
-- const VkClearValue* pClearValues;
-- } VkRenderPassBeginInfo;
--
--
-- VkRenderPassBeginInfo registry at www.khronos.org
type VkRenderPassBeginInfo = VkStruct VkRenderPassBeginInfo'
-- |
-- typedef struct VkRenderPassSampleLocationsBeginInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t attachmentInitialSampleLocationsCount;
-- const VkAttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations;
-- uint32_t postSubpassSampleLocationsCount;
-- const VkSubpassSampleLocationsEXT* pPostSubpassSampleLocations;
-- } VkRenderPassSampleLocationsBeginInfoEXT;
--
--
-- VkRenderPassSampleLocationsBeginInfoEXT registry at
-- www.khronos.org
type VkRenderPassSampleLocationsBeginInfoEXT = VkStruct VkRenderPassSampleLocationsBeginInfoEXT'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- |
-- typedef struct VkSampleLocationEXT {
-- float x;
-- float y;
-- } VkSampleLocationEXT;
--
--
-- VkSampleLocationEXT registry at www.khronos.org
type VkSampleLocationEXT = VkStruct VkSampleLocationEXT'
-- |
-- typedef struct VkSampleLocationsInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSampleCountFlagBits sampleLocationsPerPixel;
-- VkExtent2D sampleLocationGridSize;
-- uint32_t sampleLocationsCount;
-- const VkSampleLocationEXT* pSampleLocations;
-- } VkSampleLocationsInfoEXT;
--
--
-- VkSampleLocationsInfoEXT registry at www.khronos.org
type VkSampleLocationsInfoEXT = VkStruct VkSampleLocationsInfoEXT'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkSubpassSampleLocationsEXT {
-- uint32_t subpassIndex;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkSubpassSampleLocationsEXT;
--
--
-- VkSubpassSampleLocationsEXT registry at www.khronos.org
type VkSubpassSampleLocationsEXT = VkStruct VkSubpassSampleLocationsEXT'
type VkCmdSetSampleLocationsEXT = "vkCmdSetSampleLocationsEXT"
pattern VkCmdSetSampleLocationsEXT :: CString
-- | Queues: graphics.
--
-- Renderpass: both
--
-- -- void vkCmdSetSampleLocationsEXT -- ( VkCommandBuffer commandBuffer -- , const VkSampleLocationsInfoEXT* pSampleLocationsInfo -- ) ---- -- vkCmdSetSampleLocationsEXT registry at www.khronos.org type HS_vkCmdSetSampleLocationsEXT = VkCommandBuffer " commandBuffer" -> Ptr VkSampleLocationsInfoEXT " pSampleLocationsInfo" -> IO () type PFN_vkCmdSetSampleLocationsEXT = FunPtr HS_vkCmdSetSampleLocationsEXT type VkGetPhysicalDeviceMultisamplePropertiesEXT = "vkGetPhysicalDeviceMultisamplePropertiesEXT" pattern VkGetPhysicalDeviceMultisamplePropertiesEXT :: CString -- |
-- void vkGetPhysicalDeviceMultisamplePropertiesEXT -- ( VkPhysicalDevice physicalDevice -- , VkSampleCountFlagBits samples -- , VkMultisamplePropertiesEXT* pMultisampleProperties -- ) ---- -- vkGetPhysicalDeviceMultisamplePropertiesEXT registry at -- www.khronos.org type HS_vkGetPhysicalDeviceMultisamplePropertiesEXT = VkPhysicalDevice " physicalDevice" -> VkSampleCountFlagBits " samples" -> Ptr VkMultisamplePropertiesEXT " pMultisampleProperties" -> IO () type PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT = FunPtr HS_vkGetPhysicalDeviceMultisamplePropertiesEXT type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- | Alias for VkImageFormatProperties2
type VkImageFormatProperties2KHR = VkImageFormatProperties2
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
type VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION = 1
pattern VK_EXT_SAMPLE_LOCATIONS_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME = "VK_EXT_sample_locations"
pattern VK_EXT_SAMPLE_LOCATIONS_EXTENSION_NAME :: CString
-- | bitpos = 12
pattern VK_IMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT :: VkImageCreateBitmask a
pattern VK_STRUCTURE_TYPE_SAMPLE_LOCATIONS_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_SAMPLE_LOCATIONS_BEGIN_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SAMPLE_LOCATIONS_STATE_CREATE_INFO_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLE_LOCATIONS_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_MULTISAMPLE_PROPERTIES_EXT :: VkStructureType
pattern VK_DYNAMIC_STATE_SAMPLE_LOCATIONS_EXT :: VkDynamicState
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceMultisamplePropertiesEXT"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetSampleLocationsEXT"
module Graphics.Vulkan.Ext.VK_EXT_conservative_rasterization
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- | type = enum
--
-- VkConservativeRasterizationModeEXT registry at www.khronos.org
newtype VkConservativeRasterizationModeEXT
VkConservativeRasterizationModeEXT :: Int32 -> VkConservativeRasterizationModeEXT
pattern VK_CONSERVATIVE_RASTERIZATION_MODE_DISABLED_EXT :: VkConservativeRasterizationModeEXT
pattern VK_CONSERVATIVE_RASTERIZATION_MODE_OVERESTIMATE_EXT :: VkConservativeRasterizationModeEXT
pattern VK_CONSERVATIVE_RASTERIZATION_MODE_UNDERESTIMATE_EXT :: VkConservativeRasterizationModeEXT
newtype VkCullModeBitmask (a :: FlagType)
VkCullModeBitmask :: VkFlags -> VkCullModeBitmask
pattern VkCullModeFlagBits :: VkFlags -> VkCullModeBitmask FlagBit
pattern VkCullModeFlags :: VkFlags -> VkCullModeBitmask FlagMask
pattern VK_CULL_MODE_NONE :: VkCullModeBitmask a
-- | bitpos = 0
pattern VK_CULL_MODE_FRONT_BIT :: VkCullModeBitmask a
-- | bitpos = 1
pattern VK_CULL_MODE_BACK_BIT :: VkCullModeBitmask a
pattern VK_CULL_MODE_FRONT_AND_BACK :: VkCullModeBitmask a
type VkCullModeFlagBits = VkCullModeBitmask FlagBit
type VkCullModeFlags = VkCullModeBitmask FlagMask
-- | type = enum
--
-- VkFrontFace registry at www.khronos.org
newtype VkFrontFace
VkFrontFace :: Int32 -> VkFrontFace
pattern VK_FRONT_FACE_COUNTER_CLOCKWISE :: VkFrontFace
pattern VK_FRONT_FACE_CLOCKWISE :: VkFrontFace
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineRasterizationConservativeStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationConservativeStateCreateFlagsEXT flags;
-- VkConservativeRasterizationModeEXT conservativeRasterizationMode;
-- float extraPrimitiveOverestimationSize;
-- } VkPipelineRasterizationConservativeStateCreateInfoEXT;
--
--
-- VkPipelineRasterizationConservativeStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineRasterizationConservativeStateCreateInfoEXT = VkStruct VkPipelineRasterizationConservativeStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineRasterizationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationStateCreateFlags flags;
-- VkBool32 depthClampEnable;
-- VkBool32 rasterizerDiscardEnable;
-- VkPolygonMode polygonMode;
-- VkCullModeFlags cullMode;
-- VkFrontFace frontFace;
-- VkBool32 depthBiasEnable;
-- float depthBiasConstantFactor;
-- float depthBiasClamp;
-- float depthBiasSlopeFactor;
-- float lineWidth;
-- } VkPipelineRasterizationStateCreateInfo;
--
--
-- VkPipelineRasterizationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineRasterizationStateCreateInfo = VkStruct VkPipelineRasterizationStateCreateInfo'
-- | type = enum
--
-- VkPolygonMode registry at www.khronos.org
newtype VkPolygonMode
VkPolygonMode :: Int32 -> VkPolygonMode
pattern VK_POLYGON_MODE_FILL :: VkPolygonMode
pattern VK_POLYGON_MODE_LINE :: VkPolygonMode
pattern VK_POLYGON_MODE_POINT :: VkPolygonMode
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_EXT_CONSERVATIVE_RASTERIZATION_SPEC_VERSION = 1
pattern VK_EXT_CONSERVATIVE_RASTERIZATION_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME = "VK_EXT_conservative_rasterization"
pattern VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_CONSERVATIVE_STATE_CREATE_INFO_EXT :: VkStructureType
module Graphics.Vulkan.Ext.VK_EXT_blend_operation_advanced
-- | type = enum
--
-- VkBlendFactor registry at www.khronos.org
newtype VkBlendFactor
VkBlendFactor :: Int32 -> VkBlendFactor
pattern VK_BLEND_FACTOR_ZERO :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_DST_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_DST_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_CONSTANT_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_CONSTANT_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_ALPHA_SATURATE :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC1_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC1_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA :: VkBlendFactor
-- | type = enum
--
-- VkBlendOp registry at www.khronos.org
newtype VkBlendOp
VkBlendOp :: Int32 -> VkBlendOp
pattern VK_BLEND_OP_ADD :: VkBlendOp
pattern VK_BLEND_OP_SUBTRACT :: VkBlendOp
pattern VK_BLEND_OP_REVERSE_SUBTRACT :: VkBlendOp
pattern VK_BLEND_OP_MIN :: VkBlendOp
pattern VK_BLEND_OP_MAX :: VkBlendOp
-- | type = enum
--
-- VkBlendOverlapEXT registry at www.khronos.org
newtype VkBlendOverlapEXT
VkBlendOverlapEXT :: Int32 -> VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_UNCORRELATED_EXT :: VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_DISJOINT_EXT :: VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_CONJOINT_EXT :: VkBlendOverlapEXT
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkColorComponentBitmask (a :: FlagType)
VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask
pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit
pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask
-- | bitpos = 0
pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a
-- | bitpos = 1
pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a
-- | bitpos = 2
pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a
-- | bitpos = 3
pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a
-- | type = enum
--
-- VkColorSpaceKHR registry at www.khronos.org
newtype VkColorSpaceKHR
VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR
pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR
type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit
type VkColorComponentFlags = VkColorComponentBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- | type = enum
--
-- VkLogicOp registry at www.khronos.org
newtype VkLogicOp
VkLogicOp :: Int32 -> VkLogicOp
pattern VK_LOGIC_OP_CLEAR :: VkLogicOp
pattern VK_LOGIC_OP_AND :: VkLogicOp
pattern VK_LOGIC_OP_AND_REVERSE :: VkLogicOp
pattern VK_LOGIC_OP_COPY :: VkLogicOp
pattern VK_LOGIC_OP_AND_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_NO_OP :: VkLogicOp
pattern VK_LOGIC_OP_XOR :: VkLogicOp
pattern VK_LOGIC_OP_OR :: VkLogicOp
pattern VK_LOGIC_OP_NOR :: VkLogicOp
pattern VK_LOGIC_OP_EQUIVALENT :: VkLogicOp
pattern VK_LOGIC_OP_INVERT :: VkLogicOp
pattern VK_LOGIC_OP_OR_REVERSE :: VkLogicOp
pattern VK_LOGIC_OP_COPY_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_OR_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_NAND :: VkLogicOp
pattern VK_LOGIC_OP_SET :: VkLogicOp
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceFeatures {
-- VkBool32 robustBufferAccess;
-- VkBool32 fullDrawIndexUint32;
-- VkBool32 imageCubeArray;
-- VkBool32 independentBlend;
-- VkBool32 geometryShader;
-- VkBool32 tessellationShader;
-- VkBool32 sampleRateShading;
-- VkBool32 dualSrcBlend;
-- VkBool32 logicOp;
-- VkBool32 multiDrawIndirect;
-- VkBool32 drawIndirectFirstInstance;
-- VkBool32 depthClamp;
-- VkBool32 depthBiasClamp;
-- VkBool32 fillModeNonSolid;
-- VkBool32 depthBounds;
-- VkBool32 wideLines;
-- VkBool32 largePoints;
-- VkBool32 alphaToOne;
-- VkBool32 multiViewport;
-- VkBool32 samplerAnisotropy;
-- VkBool32 textureCompressionETC2;
-- VkBool32 textureCompressionASTC_LDR;
-- VkBool32 textureCompressionBC;
-- VkBool32 occlusionQueryPrecise;
-- VkBool32 pipelineStatisticsQuery;
-- VkBool32 vertexPipelineStoresAndAtomics;
-- VkBool32 fragmentStoresAndAtomics;
-- VkBool32 shaderTessellationAndGeometryPointSize;
-- VkBool32 shaderImageGatherExtended;
-- VkBool32 shaderStorageImageExtendedFormats;
-- VkBool32 shaderStorageImageMultisample;
-- VkBool32 shaderStorageImageReadWithoutFormat;
-- VkBool32 shaderStorageImageWriteWithoutFormat;
-- VkBool32 shaderUniformBufferArrayDynamicIndexing;
-- VkBool32 shaderSampledImageArrayDynamicIndexing;
-- VkBool32 shaderStorageBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageImageArrayDynamicIndexing;
-- VkBool32 shaderClipDistance;
-- VkBool32 shaderCullDistance;
-- VkBool32 shaderFloat64;
-- VkBool32 shaderInt64;
-- VkBool32 shaderInt16;
-- VkBool32 shaderResourceResidency;
-- VkBool32 shaderResourceMinLod;
-- VkBool32 sparseBinding;
-- VkBool32 sparseResidencyBuffer;
-- VkBool32 sparseResidencyImage2D;
-- VkBool32 sparseResidencyImage3D;
-- VkBool32 sparseResidency2Samples;
-- VkBool32 sparseResidency4Samples;
-- VkBool32 sparseResidency8Samples;
-- VkBool32 sparseResidency16Samples;
-- VkBool32 sparseResidencyAliased;
-- VkBool32 variableMultisampleRate;
-- VkBool32 inheritedQueries;
-- } VkPhysicalDeviceFeatures;
--
--
-- VkPhysicalDeviceFeatures registry at www.khronos.org
type VkPhysicalDeviceFeatures = VkStruct VkPhysicalDeviceFeatures'
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
-- |
-- typedef struct VkPipelineColorBlendAdvancedStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 srcPremultiplied;
-- VkBool32 dstPremultiplied;
-- VkBlendOverlapEXT blendOverlap;
-- } VkPipelineColorBlendAdvancedStateCreateInfoEXT;
--
--
-- VkPipelineColorBlendAdvancedStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineColorBlendAdvancedStateCreateInfoEXT = VkStruct VkPipelineColorBlendAdvancedStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineColorBlendAttachmentState {
-- VkBool32 blendEnable;
-- VkBlendFactor srcColorBlendFactor;
-- VkBlendFactor dstColorBlendFactor;
-- VkBlendOp colorBlendOp;
-- VkBlendFactor srcAlphaBlendFactor;
-- VkBlendFactor dstAlphaBlendFactor;
-- VkBlendOp alphaBlendOp;
-- VkColorComponentFlags colorWriteMask;
-- } VkPipelineColorBlendAttachmentState;
--
--
-- VkPipelineColorBlendAttachmentState registry at www.khronos.org
type VkPipelineColorBlendAttachmentState = VkStruct VkPipelineColorBlendAttachmentState'
-- |
-- typedef struct VkPipelineColorBlendStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineColorBlendStateCreateFlags flags;
-- VkBool32 logicOpEnable;
-- VkLogicOp logicOp;
-- uint32_t attachmentCount;
-- const VkPipelineColorBlendAttachmentState* pAttachments;
-- float blendConstants[4];
-- } VkPipelineColorBlendStateCreateInfo;
--
--
-- VkPipelineColorBlendStateCreateInfo registry at www.khronos.org
type VkPipelineColorBlendStateCreateInfo = VkStruct VkPipelineColorBlendStateCreateInfo'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_EXT_BLEND_OPERATION_ADVANCED_SPEC_VERSION = 2
pattern VK_EXT_BLEND_OPERATION_ADVANCED_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME = "VK_EXT_blend_operation_advanced"
pattern VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_FEATURES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_ADVANCED_STATE_CREATE_INFO_EXT :: VkStructureType
pattern VK_BLEND_OP_ZERO_EXT :: VkBlendOp
pattern VK_BLEND_OP_SRC_EXT :: VkBlendOp
pattern VK_BLEND_OP_DST_EXT :: VkBlendOp
pattern VK_BLEND_OP_SRC_OVER_EXT :: VkBlendOp
pattern VK_BLEND_OP_DST_OVER_EXT :: VkBlendOp
pattern VK_BLEND_OP_SRC_IN_EXT :: VkBlendOp
pattern VK_BLEND_OP_DST_IN_EXT :: VkBlendOp
pattern VK_BLEND_OP_SRC_OUT_EXT :: VkBlendOp
pattern VK_BLEND_OP_DST_OUT_EXT :: VkBlendOp
pattern VK_BLEND_OP_SRC_ATOP_EXT :: VkBlendOp
pattern VK_BLEND_OP_DST_ATOP_EXT :: VkBlendOp
pattern VK_BLEND_OP_XOR_EXT :: VkBlendOp
pattern VK_BLEND_OP_MULTIPLY_EXT :: VkBlendOp
pattern VK_BLEND_OP_SCREEN_EXT :: VkBlendOp
pattern VK_BLEND_OP_OVERLAY_EXT :: VkBlendOp
pattern VK_BLEND_OP_DARKEN_EXT :: VkBlendOp
pattern VK_BLEND_OP_LIGHTEN_EXT :: VkBlendOp
pattern VK_BLEND_OP_COLORDODGE_EXT :: VkBlendOp
pattern VK_BLEND_OP_COLORBURN_EXT :: VkBlendOp
pattern VK_BLEND_OP_HARDLIGHT_EXT :: VkBlendOp
pattern VK_BLEND_OP_SOFTLIGHT_EXT :: VkBlendOp
pattern VK_BLEND_OP_DIFFERENCE_EXT :: VkBlendOp
pattern VK_BLEND_OP_EXCLUSION_EXT :: VkBlendOp
pattern VK_BLEND_OP_INVERT_EXT :: VkBlendOp
pattern VK_BLEND_OP_INVERT_RGB_EXT :: VkBlendOp
pattern VK_BLEND_OP_LINEARDODGE_EXT :: VkBlendOp
pattern VK_BLEND_OP_LINEARBURN_EXT :: VkBlendOp
pattern VK_BLEND_OP_VIVIDLIGHT_EXT :: VkBlendOp
pattern VK_BLEND_OP_LINEARLIGHT_EXT :: VkBlendOp
pattern VK_BLEND_OP_PINLIGHT_EXT :: VkBlendOp
pattern VK_BLEND_OP_HARDMIX_EXT :: VkBlendOp
pattern VK_BLEND_OP_HSL_HUE_EXT :: VkBlendOp
pattern VK_BLEND_OP_HSL_SATURATION_EXT :: VkBlendOp
pattern VK_BLEND_OP_HSL_COLOR_EXT :: VkBlendOp
pattern VK_BLEND_OP_HSL_LUMINOSITY_EXT :: VkBlendOp
pattern VK_BLEND_OP_PLUS_EXT :: VkBlendOp
pattern VK_BLEND_OP_PLUS_CLAMPED_EXT :: VkBlendOp
pattern VK_BLEND_OP_PLUS_CLAMPED_ALPHA_EXT :: VkBlendOp
pattern VK_BLEND_OP_PLUS_DARKER_EXT :: VkBlendOp
pattern VK_BLEND_OP_MINUS_EXT :: VkBlendOp
pattern VK_BLEND_OP_MINUS_CLAMPED_EXT :: VkBlendOp
pattern VK_BLEND_OP_CONTRAST_EXT :: VkBlendOp
pattern VK_BLEND_OP_INVERT_OVG_EXT :: VkBlendOp
pattern VK_BLEND_OP_RED_EXT :: VkBlendOp
pattern VK_BLEND_OP_GREEN_EXT :: VkBlendOp
pattern VK_BLEND_OP_BLUE_EXT :: VkBlendOp
-- | bitpos = 19
pattern VK_ACCESS_COLOR_ATTACHMENT_READ_NONCOHERENT_BIT_EXT :: VkAccessBitmask a
module Graphics.Vulkan.Ext.VK_AMD_rasterization_order
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkCullModeBitmask (a :: FlagType)
VkCullModeBitmask :: VkFlags -> VkCullModeBitmask
pattern VkCullModeFlagBits :: VkFlags -> VkCullModeBitmask FlagBit
pattern VkCullModeFlags :: VkFlags -> VkCullModeBitmask FlagMask
pattern VK_CULL_MODE_NONE :: VkCullModeBitmask a
-- | bitpos = 0
pattern VK_CULL_MODE_FRONT_BIT :: VkCullModeBitmask a
-- | bitpos = 1
pattern VK_CULL_MODE_BACK_BIT :: VkCullModeBitmask a
pattern VK_CULL_MODE_FRONT_AND_BACK :: VkCullModeBitmask a
type VkCullModeFlagBits = VkCullModeBitmask FlagBit
type VkCullModeFlags = VkCullModeBitmask FlagMask
-- | type = enum
--
-- VkFrontFace registry at www.khronos.org
newtype VkFrontFace
VkFrontFace :: Int32 -> VkFrontFace
pattern VK_FRONT_FACE_COUNTER_CLOCKWISE :: VkFrontFace
pattern VK_FRONT_FACE_CLOCKWISE :: VkFrontFace
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineRasterizationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationStateCreateFlags flags;
-- VkBool32 depthClampEnable;
-- VkBool32 rasterizerDiscardEnable;
-- VkPolygonMode polygonMode;
-- VkCullModeFlags cullMode;
-- VkFrontFace frontFace;
-- VkBool32 depthBiasEnable;
-- float depthBiasConstantFactor;
-- float depthBiasClamp;
-- float depthBiasSlopeFactor;
-- float lineWidth;
-- } VkPipelineRasterizationStateCreateInfo;
--
--
-- VkPipelineRasterizationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineRasterizationStateCreateInfo = VkStruct VkPipelineRasterizationStateCreateInfo'
-- |
-- typedef struct VkPipelineRasterizationStateRasterizationOrderAMD {
-- VkStructureType sType;
-- const void* pNext;
-- VkRasterizationOrderAMD rasterizationOrder;
-- } VkPipelineRasterizationStateRasterizationOrderAMD;
--
--
-- VkPipelineRasterizationStateRasterizationOrderAMD registry at
-- www.khronos.org
type VkPipelineRasterizationStateRasterizationOrderAMD = VkStruct VkPipelineRasterizationStateRasterizationOrderAMD'
-- | type = enum
--
-- VkPolygonMode registry at www.khronos.org
newtype VkPolygonMode
VkPolygonMode :: Int32 -> VkPolygonMode
pattern VK_POLYGON_MODE_FILL :: VkPolygonMode
pattern VK_POLYGON_MODE_LINE :: VkPolygonMode
pattern VK_POLYGON_MODE_POINT :: VkPolygonMode
-- | type = enum
--
-- VkRasterizationOrderAMD registry at www.khronos.org
newtype VkRasterizationOrderAMD
VkRasterizationOrderAMD :: Int32 -> VkRasterizationOrderAMD
pattern VK_RASTERIZATION_ORDER_STRICT_AMD :: VkRasterizationOrderAMD
pattern VK_RASTERIZATION_ORDER_RELAXED_AMD :: VkRasterizationOrderAMD
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VK_AMD_RASTERIZATION_ORDER_SPEC_VERSION = 1
pattern VK_AMD_RASTERIZATION_ORDER_SPEC_VERSION :: (Num a, Eq a) => a
type VK_AMD_RASTERIZATION_ORDER_EXTENSION_NAME = "VK_AMD_rasterization_order"
pattern VK_AMD_RASTERIZATION_ORDER_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_RASTERIZATION_ORDER_AMD :: VkStructureType
module Graphics.Vulkan.Core_1_1
type VkEnumerateInstanceVersion = "vkEnumerateInstanceVersion"
pattern VkEnumerateInstanceVersion :: CString
-- | Success codes: VK_SUCCESS.
--
-- -- VkResult vkEnumerateInstanceVersion -- ( uint32_t* pApiVersion -- ) ---- -- vkEnumerateInstanceVersion registry at www.khronos.org type HS_vkEnumerateInstanceVersion = Ptr Word32 " pApiVersion" -> IO VkResult type PFN_vkEnumerateInstanceVersion = FunPtr HS_vkEnumerateInstanceVersion -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkEnumerateInstanceVersion -- ( uint32_t* pApiVersion -- ) ---- -- vkEnumerateInstanceVersion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceVersion <- vkGetInstanceProc @VkEnumerateInstanceVersion vkInstance ---- -- or less efficient: -- --
-- myEnumerateInstanceVersion <- vkGetProc @VkEnumerateInstanceVersion ---- -- Note: vkEnumerateInstanceVersionUnsafe and -- vkEnumerateInstanceVersionSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumerateInstanceVersion is an alias of -- vkEnumerateInstanceVersionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceVersionSafe. vkEnumerateInstanceVersion :: Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkEnumerateInstanceVersion -- ( uint32_t* pApiVersion -- ) ---- -- vkEnumerateInstanceVersion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceVersion <- vkGetInstanceProc @VkEnumerateInstanceVersion vkInstance ---- -- or less efficient: -- --
-- myEnumerateInstanceVersion <- vkGetProc @VkEnumerateInstanceVersion ---- -- Note: vkEnumerateInstanceVersionUnsafe and -- vkEnumerateInstanceVersionSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumerateInstanceVersion is an alias of -- vkEnumerateInstanceVersionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceVersionSafe. vkEnumerateInstanceVersionUnsafe :: Ptr Word32 -> IO VkResult -- | Success codes: VK_SUCCESS. -- --
-- VkResult vkEnumerateInstanceVersion -- ( uint32_t* pApiVersion -- ) ---- -- vkEnumerateInstanceVersion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceVersion <- vkGetInstanceProc @VkEnumerateInstanceVersion vkInstance ---- -- or less efficient: -- --
-- myEnumerateInstanceVersion <- vkGetProc @VkEnumerateInstanceVersion ---- -- Note: vkEnumerateInstanceVersionUnsafe and -- vkEnumerateInstanceVersionSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumerateInstanceVersion is an alias of -- vkEnumerateInstanceVersionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceVersionSafe. vkEnumerateInstanceVersionSafe :: Ptr Word32 -> IO VkResult -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkShaderInfoTypeAMD registry at www.khronos.org
newtype VkShaderInfoTypeAMD
VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD
newtype VkShaderStageBitmask (a :: FlagType)
VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask
pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit
pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask
-- | bitpos = 0
pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a
-- | bitpos = 1
pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a
-- | bitpos = 2
pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a
-- | bitpos = 3
pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a
-- | bitpos = 4
pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a
-- | bitpos = 5
pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a
type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit
type VkShaderStageFlags = VkShaderStageBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
newtype VkSubgroupFeatureBitmask (a :: FlagType)
VkSubgroupFeatureBitmask :: VkFlags -> VkSubgroupFeatureBitmask
pattern VkSubgroupFeatureFlagBits :: VkFlags -> VkSubgroupFeatureBitmask FlagBit
pattern VkSubgroupFeatureFlags :: VkFlags -> VkSubgroupFeatureBitmask FlagMask
-- | Basic subgroup operations
--
-- bitpos = 0
pattern VK_SUBGROUP_FEATURE_BASIC_BIT :: VkSubgroupFeatureBitmask a
-- | Vote subgroup operations
--
-- bitpos = 1
pattern VK_SUBGROUP_FEATURE_VOTE_BIT :: VkSubgroupFeatureBitmask a
-- | Arithmetic subgroup operations
--
-- bitpos = 2
pattern VK_SUBGROUP_FEATURE_ARITHMETIC_BIT :: VkSubgroupFeatureBitmask a
-- | Ballot subgroup operations
--
-- bitpos = 3
pattern VK_SUBGROUP_FEATURE_BALLOT_BIT :: VkSubgroupFeatureBitmask a
-- | Shuffle subgroup operations
--
-- bitpos = 4
pattern VK_SUBGROUP_FEATURE_SHUFFLE_BIT :: VkSubgroupFeatureBitmask a
-- | Shuffle relative subgroup operations
--
-- bitpos = 5
pattern VK_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT :: VkSubgroupFeatureBitmask a
-- | Clustered subgroup operations
--
-- bitpos = 6
pattern VK_SUBGROUP_FEATURE_CLUSTERED_BIT :: VkSubgroupFeatureBitmask a
-- | Quad subgroup operations
--
-- bitpos = 7
pattern VK_SUBGROUP_FEATURE_QUAD_BIT :: VkSubgroupFeatureBitmask a
type VkSubgroupFeatureFlagBits = VkSubgroupFeatureBitmask FlagBit
type VkSubgroupFeatureFlags = VkSubgroupFeatureBitmask FlagMask
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES :: VkStructureType
-- |
-- typedef struct VkBindBufferMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindBufferMemoryInfo;
--
--
-- VkBindBufferMemoryInfo registry at www.khronos.org
type VkBindBufferMemoryInfo = VkStruct VkBindBufferMemoryInfo'
-- |
-- typedef struct VkBindImageMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindImageMemoryInfo;
--
--
-- VkBindImageMemoryInfo registry at www.khronos.org
type VkBindImageMemoryInfo = VkStruct VkBindImageMemoryInfo'
type VkBindBufferMemory2 = "vkBindBufferMemory2"
pattern VkBindBufferMemory2 :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkBindBufferMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindBufferMemoryInfo* pBindInfos -- ) ---- -- vkBindBufferMemory2 registry at www.khronos.org type HS_vkBindBufferMemory2 = VkDevice " device" -> Word32 " bindInfoCount" -> Ptr VkBindBufferMemoryInfo " pBindInfos" -> IO VkResult type PFN_vkBindBufferMemory2 = FunPtr HS_vkBindBufferMemory2 -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindBufferMemoryInfo* pBindInfos -- ) ---- -- vkBindBufferMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory2 <- vkGetDeviceProc @VkBindBufferMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory2 <- vkGetProc @VkBindBufferMemory2 ---- -- Note: vkBindBufferMemory2Unsafe and -- vkBindBufferMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory2 is an alias of -- vkBindBufferMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemory2Safe. vkBindBufferMemory2 :: VkDevice -> Word32 -> Ptr VkBindBufferMemoryInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindBufferMemoryInfo* pBindInfos -- ) ---- -- vkBindBufferMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory2 <- vkGetDeviceProc @VkBindBufferMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory2 <- vkGetProc @VkBindBufferMemory2 ---- -- Note: vkBindBufferMemory2Unsafe and -- vkBindBufferMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory2 is an alias of -- vkBindBufferMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemory2Safe. vkBindBufferMemory2Unsafe :: VkDevice -> Word32 -> Ptr VkBindBufferMemoryInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindBufferMemoryInfo* pBindInfos -- ) ---- -- vkBindBufferMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory2 <- vkGetDeviceProc @VkBindBufferMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory2 <- vkGetProc @VkBindBufferMemory2 ---- -- Note: vkBindBufferMemory2Unsafe and -- vkBindBufferMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory2 is an alias of -- vkBindBufferMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemory2Safe. vkBindBufferMemory2Safe :: VkDevice -> Word32 -> Ptr VkBindBufferMemoryInfo -> IO VkResult type VkBindImageMemory2 = "vkBindImageMemory2" pattern VkBindImageMemory2 :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindImageMemoryInfo* pBindInfos -- ) ---- -- vkBindImageMemory2 registry at www.khronos.org type HS_vkBindImageMemory2 = VkDevice " device" -> Word32 " bindInfoCount" -> Ptr VkBindImageMemoryInfo " pBindInfos" -> IO VkResult type PFN_vkBindImageMemory2 = FunPtr HS_vkBindImageMemory2 -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindImageMemoryInfo* pBindInfos -- ) ---- -- vkBindImageMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory2 <- vkGetDeviceProc @VkBindImageMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory2 <- vkGetProc @VkBindImageMemory2 ---- -- Note: vkBindImageMemory2Unsafe and -- vkBindImageMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory2 is an alias of -- vkBindImageMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindImageMemory2Safe. vkBindImageMemory2 :: VkDevice -> Word32 -> Ptr VkBindImageMemoryInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindImageMemoryInfo* pBindInfos -- ) ---- -- vkBindImageMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory2 <- vkGetDeviceProc @VkBindImageMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory2 <- vkGetProc @VkBindImageMemory2 ---- -- Note: vkBindImageMemory2Unsafe and -- vkBindImageMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory2 is an alias of -- vkBindImageMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindImageMemory2Safe. vkBindImageMemory2Unsafe :: VkDevice -> Word32 -> Ptr VkBindImageMemoryInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory2 -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindImageMemoryInfo* pBindInfos -- ) ---- -- vkBindImageMemory2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory2 <- vkGetDeviceProc @VkBindImageMemory2 vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory2 <- vkGetProc @VkBindImageMemory2 ---- -- Note: vkBindImageMemory2Unsafe and -- vkBindImageMemory2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory2 is an alias of -- vkBindImageMemory2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindImageMemory2Safe. vkBindImageMemory2Safe :: VkDevice -> Word32 -> Ptr VkBindImageMemoryInfo -> IO VkResult type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkBindBufferMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- } VkBindBufferMemoryDeviceGroupInfo;
--
--
-- VkBindBufferMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindBufferMemoryDeviceGroupInfo = VkStruct VkBindBufferMemoryDeviceGroupInfo'
-- | Alias for VkBindBufferMemoryDeviceGroupInfo
type VkBindBufferMemoryDeviceGroupInfoKHR = VkBindBufferMemoryDeviceGroupInfo
-- | Alias for VkBindBufferMemoryInfo
type VkBindBufferMemoryInfoKHR = VkBindBufferMemoryInfo
-- |
-- typedef struct VkBindImageMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- uint32_t splitInstanceBindRegionCount;
-- const VkRect2D* pSplitInstanceBindRegions;
-- } VkBindImageMemoryDeviceGroupInfo;
--
--
-- VkBindImageMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindImageMemoryDeviceGroupInfo = VkStruct VkBindImageMemoryDeviceGroupInfo'
-- | Alias for VkBindImageMemoryDeviceGroupInfo
type VkBindImageMemoryDeviceGroupInfoKHR = VkBindImageMemoryDeviceGroupInfo
-- | Alias for VkBindImageMemoryInfo
type VkBindImageMemoryInfoKHR = VkBindImageMemoryInfo
-- |
-- typedef struct VkBindImageMemorySwapchainInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint32_t imageIndex;
-- } VkBindImageMemorySwapchainInfoKHR;
--
--
-- VkBindImageMemorySwapchainInfoKHR registry at www.khronos.org
type VkBindImageMemorySwapchainInfoKHR = VkStruct VkBindImageMemorySwapchainInfoKHR'
-- |
-- typedef struct VkBindImagePlaneMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkBindImagePlaneMemoryInfo;
--
--
-- VkBindImagePlaneMemoryInfo registry at www.khronos.org
type VkBindImagePlaneMemoryInfo = VkStruct VkBindImagePlaneMemoryInfo'
-- | Alias for VkBindImagePlaneMemoryInfo
type VkBindImagePlaneMemoryInfoKHR = VkBindImagePlaneMemoryInfo
-- |
-- typedef struct VkBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t bufferBindCount;
-- const VkSparseBufferMemoryBindInfo* pBufferBinds;
-- uint32_t imageOpaqueBindCount;
-- const VkSparseImageOpaqueMemoryBindInfo* pImageOpaqueBinds;
-- uint32_t imageBindCount;
-- const VkSparseImageMemoryBindInfo* pImageBinds;
-- uint32_t signalSemaphoreCount;
-- const VkSemaphore* pSignalSemaphores;
-- } VkBindSparseInfo;
--
--
-- VkBindSparseInfo registry at www.khronos.org
type VkBindSparseInfo = VkStruct VkBindSparseInfo'
pattern VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO :: VkStructureType
-- | bitpos = 10
pattern VK_IMAGE_CREATE_ALIAS_BIT :: VkImageCreateBitmask a
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- |
-- typedef struct VkPhysicalDeviceFeatures {
-- VkBool32 robustBufferAccess;
-- VkBool32 fullDrawIndexUint32;
-- VkBool32 imageCubeArray;
-- VkBool32 independentBlend;
-- VkBool32 geometryShader;
-- VkBool32 tessellationShader;
-- VkBool32 sampleRateShading;
-- VkBool32 dualSrcBlend;
-- VkBool32 logicOp;
-- VkBool32 multiDrawIndirect;
-- VkBool32 drawIndirectFirstInstance;
-- VkBool32 depthClamp;
-- VkBool32 depthBiasClamp;
-- VkBool32 fillModeNonSolid;
-- VkBool32 depthBounds;
-- VkBool32 wideLines;
-- VkBool32 largePoints;
-- VkBool32 alphaToOne;
-- VkBool32 multiViewport;
-- VkBool32 samplerAnisotropy;
-- VkBool32 textureCompressionETC2;
-- VkBool32 textureCompressionASTC_LDR;
-- VkBool32 textureCompressionBC;
-- VkBool32 occlusionQueryPrecise;
-- VkBool32 pipelineStatisticsQuery;
-- VkBool32 vertexPipelineStoresAndAtomics;
-- VkBool32 fragmentStoresAndAtomics;
-- VkBool32 shaderTessellationAndGeometryPointSize;
-- VkBool32 shaderImageGatherExtended;
-- VkBool32 shaderStorageImageExtendedFormats;
-- VkBool32 shaderStorageImageMultisample;
-- VkBool32 shaderStorageImageReadWithoutFormat;
-- VkBool32 shaderStorageImageWriteWithoutFormat;
-- VkBool32 shaderUniformBufferArrayDynamicIndexing;
-- VkBool32 shaderSampledImageArrayDynamicIndexing;
-- VkBool32 shaderStorageBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageImageArrayDynamicIndexing;
-- VkBool32 shaderClipDistance;
-- VkBool32 shaderCullDistance;
-- VkBool32 shaderFloat64;
-- VkBool32 shaderInt64;
-- VkBool32 shaderInt16;
-- VkBool32 shaderResourceResidency;
-- VkBool32 shaderResourceMinLod;
-- VkBool32 sparseBinding;
-- VkBool32 sparseResidencyBuffer;
-- VkBool32 sparseResidencyImage2D;
-- VkBool32 sparseResidencyImage3D;
-- VkBool32 sparseResidency2Samples;
-- VkBool32 sparseResidency4Samples;
-- VkBool32 sparseResidency8Samples;
-- VkBool32 sparseResidency16Samples;
-- VkBool32 sparseResidencyAliased;
-- VkBool32 variableMultisampleRate;
-- VkBool32 inheritedQueries;
-- } VkPhysicalDeviceFeatures;
--
--
-- VkPhysicalDeviceFeatures registry at www.khronos.org
type VkPhysicalDeviceFeatures = VkStruct VkPhysicalDeviceFeatures'
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES :: VkStructureType
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
pattern VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO :: VkStructureType
-- | / Union allowing specification of floating point, integer, or
-- unsigned integer color data. Actual value selected is based on
-- imageattachment being cleared.
--
--
-- typedef union VkClearColorValue {
-- float float32[4];
-- int32_t int32[4];
-- uint32_t uint32[4];
-- } VkClearColorValue;
--
--
-- VkClearColorValue registry at www.khronos.org
type VkClearColorValue = VkStruct VkClearColorValue'
-- |
-- typedef struct VkClearDepthStencilValue {
-- float depth;
-- uint32_t stencil;
-- } VkClearDepthStencilValue;
--
--
-- VkClearDepthStencilValue registry at www.khronos.org
type VkClearDepthStencilValue = VkStruct VkClearDepthStencilValue'
-- | // Union allowing specification of color or depth and stencil values.
-- Actual value selected is based on attachment being cleared.
--
--
-- typedef union VkClearValue {
-- VkClearColorValue color;
-- VkClearDepthStencilValue depthStencil;
-- } VkClearValue;
--
--
-- VkClearValue registry at www.khronos.org
type VkClearValue = VkStruct VkClearValue'
-- |
-- typedef struct VkCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkCommandBufferUsageFlags flags;
-- const VkCommandBufferInheritanceInfo* pInheritanceInfo;
-- } VkCommandBufferBeginInfo;
--
--
-- VkCommandBufferBeginInfo registry at www.khronos.org
type VkCommandBufferBeginInfo = VkStruct VkCommandBufferBeginInfo'
-- |
-- typedef struct VkCommandBufferInheritanceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPass renderPass;
-- uint32_t subpass;
-- VkFramebuffer framebuffer;
-- VkBool32 occlusionQueryEnable;
-- VkQueryControlFlags queryFlags;
-- VkQueryPipelineStatisticFlags pipelineStatistics;
-- } VkCommandBufferInheritanceInfo;
--
--
-- VkCommandBufferInheritanceInfo registry at www.khronos.org
type VkCommandBufferInheritanceInfo = VkStruct VkCommandBufferInheritanceInfo'
-- | type = enum
--
-- VkCommandBufferLevel registry at www.khronos.org
newtype VkCommandBufferLevel
VkCommandBufferLevel :: Int32 -> VkCommandBufferLevel
pattern VK_COMMAND_BUFFER_LEVEL_PRIMARY :: VkCommandBufferLevel
pattern VK_COMMAND_BUFFER_LEVEL_SECONDARY :: VkCommandBufferLevel
newtype VkCommandBufferResetBitmask (a :: FlagType)
VkCommandBufferResetBitmask :: VkFlags -> VkCommandBufferResetBitmask
pattern VkCommandBufferResetFlagBits :: VkFlags -> VkCommandBufferResetBitmask FlagBit
pattern VkCommandBufferResetFlags :: VkFlags -> VkCommandBufferResetBitmask FlagMask
-- | Release resources owned by the buffer
--
-- bitpos = 0
pattern VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT :: VkCommandBufferResetBitmask a
newtype VkCommandBufferUsageBitmask (a :: FlagType)
VkCommandBufferUsageBitmask :: VkFlags -> VkCommandBufferUsageBitmask
pattern VkCommandBufferUsageFlagBits :: VkFlags -> VkCommandBufferUsageBitmask FlagBit
pattern VkCommandBufferUsageFlags :: VkFlags -> VkCommandBufferUsageBitmask FlagMask
-- | bitpos = 0
pattern VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT :: VkCommandBufferUsageBitmask a
-- | bitpos = 1
pattern VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT :: VkCommandBufferUsageBitmask a
-- | Command buffer may be submitted/executed more than once simultaneously
--
-- bitpos = 2
pattern VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT :: VkCommandBufferUsageBitmask a
newtype VkCommandPoolCreateBitmask (a :: FlagType)
VkCommandPoolCreateBitmask :: VkFlags -> VkCommandPoolCreateBitmask
pattern VkCommandPoolCreateFlagBits :: VkFlags -> VkCommandPoolCreateBitmask FlagBit
pattern VkCommandPoolCreateFlags :: VkFlags -> VkCommandPoolCreateBitmask FlagMask
-- | Command buffers have a short lifetime
--
-- bitpos = 0
pattern VK_COMMAND_POOL_CREATE_TRANSIENT_BIT :: VkCommandPoolCreateBitmask a
-- | Command buffers may release their memory individually
--
-- bitpos = 1
pattern VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT :: VkCommandPoolCreateBitmask a
newtype VkCommandPoolResetBitmask (a :: FlagType)
VkCommandPoolResetBitmask :: VkFlags -> VkCommandPoolResetBitmask
pattern VkCommandPoolResetFlagBits :: VkFlags -> VkCommandPoolResetBitmask FlagBit
pattern VkCommandPoolResetFlags :: VkFlags -> VkCommandPoolResetBitmask FlagMask
-- | Release resources owned by the pool
--
-- bitpos = 0
pattern VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT :: VkCommandPoolResetBitmask a
type VkCommandBufferResetFlagBits = VkCommandBufferResetBitmask FlagBit
type VkCommandBufferResetFlags = VkCommandBufferResetBitmask FlagMask
type VkCommandBufferUsageFlagBits = VkCommandBufferUsageBitmask FlagBit
type VkCommandBufferUsageFlags = VkCommandBufferUsageBitmask FlagMask
type VkCommandPoolCreateFlagBits = VkCommandPoolCreateBitmask FlagBit
type VkCommandPoolCreateFlags = VkCommandPoolCreateBitmask FlagMask
type VkCommandPoolResetFlagBits = VkCommandPoolResetBitmask FlagBit
type VkCommandPoolResetFlags = VkCommandPoolResetBitmask FlagMask
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
newtype VkMemoryAllocateBitmask (a :: FlagType)
VkMemoryAllocateBitmask :: VkFlags -> VkMemoryAllocateBitmask
pattern VkMemoryAllocateFlagBits :: VkFlags -> VkMemoryAllocateBitmask FlagBit
pattern VkMemoryAllocateFlags :: VkFlags -> VkMemoryAllocateBitmask FlagMask
-- | Force allocation on specific devices
--
-- bitpos = 0
pattern VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT :: VkMemoryAllocateBitmask a
newtype VkMemoryHeapBitmask (a :: FlagType)
VkMemoryHeapBitmask :: VkFlags -> VkMemoryHeapBitmask
pattern VkMemoryHeapFlagBits :: VkFlags -> VkMemoryHeapBitmask FlagBit
pattern VkMemoryHeapFlags :: VkFlags -> VkMemoryHeapBitmask FlagMask
-- | If set, heap represents device memory
--
-- bitpos = 0
pattern VK_MEMORY_HEAP_DEVICE_LOCAL_BIT :: VkMemoryHeapBitmask a
newtype VkMemoryPropertyBitmask (a :: FlagType)
VkMemoryPropertyBitmask :: VkFlags -> VkMemoryPropertyBitmask
pattern VkMemoryPropertyFlagBits :: VkFlags -> VkMemoryPropertyBitmask FlagBit
pattern VkMemoryPropertyFlags :: VkFlags -> VkMemoryPropertyBitmask FlagMask
-- | If otherwise stated, then allocate memory on device
--
-- bitpos = 0
pattern VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT :: VkMemoryPropertyBitmask a
-- | Memory is mappable by host
--
-- bitpos = 1
pattern VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT :: VkMemoryPropertyBitmask a
-- | Memory will have io coherency. If not set, application may need to
-- use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to
-- flushinvalidate host cache
--
-- bitpos = 2
pattern VK_MEMORY_PROPERTY_HOST_COHERENT_BIT :: VkMemoryPropertyBitmask a
-- | Memory will be cached by the host
--
-- bitpos = 3
pattern VK_MEMORY_PROPERTY_HOST_CACHED_BIT :: VkMemoryPropertyBitmask a
-- | Memory may be allocated by the driver when it is required
--
-- bitpos = 4
pattern VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT :: VkMemoryPropertyBitmask a
type VkMemoryAllocateFlagBits = VkMemoryAllocateBitmask FlagBit
newtype VkMemoryAllocateFlagBitsKHR
VkMemoryAllocateFlagBitsKHR :: VkFlags -> VkMemoryAllocateFlagBitsKHR
type VkMemoryAllocateFlags = VkMemoryAllocateBitmask FlagMask
type VkMemoryHeapFlagBits = VkMemoryHeapBitmask FlagBit
type VkMemoryHeapFlags = VkMemoryHeapBitmask FlagMask
type VkMemoryPropertyFlagBits = VkMemoryPropertyBitmask FlagBit
type VkMemoryPropertyFlags = VkMemoryPropertyBitmask FlagMask
-- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
newtype VkPeerMemoryFeatureBitmask (a :: FlagType)
VkPeerMemoryFeatureBitmask :: VkFlags -> VkPeerMemoryFeatureBitmask
pattern VkPeerMemoryFeatureFlagBits :: VkFlags -> VkPeerMemoryFeatureBitmask FlagBit
pattern VkPeerMemoryFeatureFlags :: VkFlags -> VkPeerMemoryFeatureBitmask FlagMask
-- | Can read with vkCmdCopy commands
--
-- bitpos = 0
pattern VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can write with vkCmdCopy commands
--
-- bitpos = 1
pattern VK_PEER_MEMORY_FEATURE_COPY_DST_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can read with any access type/command
--
-- bitpos = 2
pattern VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can write with and access type/command
--
-- bitpos = 3
pattern VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT :: VkPeerMemoryFeatureBitmask a
type VkPeerMemoryFeatureFlagBits = VkPeerMemoryFeatureBitmask FlagBit
newtype VkPeerMemoryFeatureFlagBitsKHR
VkPeerMemoryFeatureFlagBitsKHR :: VkFlags -> VkPeerMemoryFeatureFlagBitsKHR
type VkPeerMemoryFeatureFlags = VkPeerMemoryFeatureBitmask FlagMask
-- | type = enum
--
-- VkPipelineBindPoint registry at www.khronos.org
newtype VkPipelineBindPoint
VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint
-- | type = enum
--
-- VkPipelineCacheHeaderVersion registry at www.khronos.org
newtype VkPipelineCacheHeaderVersion
VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion
pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion
newtype VkPipelineCreateBitmask (a :: FlagType)
VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask
pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit
pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 1
pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 2
pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a
newtype VkPipelineStageBitmask (a :: FlagType)
VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask
pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit
pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask
-- | Before subsequent commands are processed
--
-- bitpos = 0
pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Draw/DispatchIndirect command fetch
--
-- bitpos = 1
pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a
-- | Vertex/index fetch
--
-- bitpos = 2
pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a
-- | Vertex shading
--
-- bitpos = 3
pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation control shading
--
-- bitpos = 4
pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation evaluation shading
--
-- bitpos = 5
pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a
-- | Geometry shading
--
-- bitpos = 6
pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a
-- | Fragment shading
--
-- bitpos = 7
pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a
-- | Early fragment (depth and stencil) tests
--
-- bitpos = 8
pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Late fragment (depth and stencil) tests
--
-- bitpos = 9
pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Color attachment writes
--
-- bitpos = 10
pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a
-- | Compute shading
--
-- bitpos = 11
pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a
-- | Transfer/copy operations
--
-- bitpos = 12
pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a
-- | After previous commands have completed
--
-- bitpos = 13
pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Indicates host (CPU) is a source/sink of the dependency
--
-- bitpos = 14
pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a
-- | All stages of the graphics pipeline
--
-- bitpos = 15
pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a
-- | All stages supported on the queue
--
-- bitpos = 16
pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a
newtype VkPipelineCacheCreateFlagBits
VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits
newtype VkPipelineColorBlendStateCreateFlagBits
VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits
type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit
type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask
newtype VkPipelineDepthStencilStateCreateFlagBits
VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits
newtype VkPipelineDynamicStateCreateFlagBits
VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits
newtype VkPipelineInputAssemblyStateCreateFlagBits
VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits
newtype VkPipelineLayoutCreateFlagBits
VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits
newtype VkPipelineMultisampleStateCreateFlagBits
VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits
newtype VkPipelineRasterizationStateCreateFlagBits
VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits
newtype VkPipelineShaderStageCreateFlagBits
VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits
type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit
type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask
newtype VkPipelineTessellationStateCreateFlagBits
VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits
newtype VkPipelineVertexInputStateCreateFlagBits
VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits
newtype VkPipelineViewportStateCreateFlagBits
VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits
newtype VkQueryControlBitmask (a :: FlagType)
VkQueryControlBitmask :: VkFlags -> VkQueryControlBitmask
pattern VkQueryControlFlagBits :: VkFlags -> VkQueryControlBitmask FlagBit
pattern VkQueryControlFlags :: VkFlags -> VkQueryControlBitmask FlagMask
-- | Require precise results to be collected by the query
--
-- bitpos = 0
pattern VK_QUERY_CONTROL_PRECISE_BIT :: VkQueryControlBitmask a
newtype VkQueryPipelineStatisticBitmask (a :: FlagType)
VkQueryPipelineStatisticBitmask :: VkFlags -> VkQueryPipelineStatisticBitmask
pattern VkQueryPipelineStatisticFlagBits :: VkFlags -> VkQueryPipelineStatisticBitmask FlagBit
pattern VkQueryPipelineStatisticFlags :: VkFlags -> VkQueryPipelineStatisticBitmask FlagMask
-- | Optional
--
-- bitpos = 0
pattern VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 1
pattern VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 2
pattern VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 3
pattern VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 4
pattern VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 5
pattern VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 6
pattern VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 7
pattern VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 8
pattern VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 9
pattern VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
-- | Optional
--
-- bitpos = 10
pattern VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a
newtype VkQueryResultBitmask (a :: FlagType)
VkQueryResultBitmask :: VkFlags -> VkQueryResultBitmask
pattern VkQueryResultFlagBits :: VkFlags -> VkQueryResultBitmask FlagBit
pattern VkQueryResultFlags :: VkFlags -> VkQueryResultBitmask FlagMask
-- | Results of the queries are written to the destination buffer as 64-bit
-- values
--
-- bitpos = 0
pattern VK_QUERY_RESULT_64_BIT :: VkQueryResultBitmask a
-- | Results of the queries are waited on before proceeding with the result
-- copy
--
-- bitpos = 1
pattern VK_QUERY_RESULT_WAIT_BIT :: VkQueryResultBitmask a
-- | Besides the results of the query, the availability of the results is
-- also written
--
-- bitpos = 2
pattern VK_QUERY_RESULT_WITH_AVAILABILITY_BIT :: VkQueryResultBitmask a
-- | Copy the partial results of the query even if the final results are
-- not available
--
-- bitpos = 3
pattern VK_QUERY_RESULT_PARTIAL_BIT :: VkQueryResultBitmask a
-- | type = enum
--
-- VkQueryType registry at www.khronos.org
newtype VkQueryType
VkQueryType :: Int32 -> VkQueryType
pattern VK_QUERY_TYPE_OCCLUSION :: VkQueryType
-- | Optional
pattern VK_QUERY_TYPE_PIPELINE_STATISTICS :: VkQueryType
pattern VK_QUERY_TYPE_TIMESTAMP :: VkQueryType
type VkQueryControlFlagBits = VkQueryControlBitmask FlagBit
type VkQueryControlFlags = VkQueryControlBitmask FlagMask
type VkQueryPipelineStatisticFlagBits = VkQueryPipelineStatisticBitmask FlagBit
type VkQueryPipelineStatisticFlags = VkQueryPipelineStatisticBitmask FlagMask
newtype VkQueryPoolCreateFlagBits
VkQueryPoolCreateFlagBits :: VkFlags -> VkQueryPoolCreateFlagBits
type VkQueryResultFlagBits = VkQueryResultBitmask FlagBit
type VkQueryResultFlags = VkQueryResultBitmask FlagMask
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- |
-- typedef struct VkRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPass renderPass;
-- VkFramebuffer framebuffer;
-- VkRect2D renderArea;
-- uint32_t clearValueCount;
-- const VkClearValue* pClearValues;
-- } VkRenderPassBeginInfo;
--
--
-- VkRenderPassBeginInfo registry at www.khronos.org
type VkRenderPassBeginInfo = VkStruct VkRenderPassBeginInfo'
-- |
-- typedef struct VkSparseBufferMemoryBindInfo {
-- VkBuffer buffer;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseBufferMemoryBindInfo;
--
--
-- VkSparseBufferMemoryBindInfo registry at www.khronos.org
type VkSparseBufferMemoryBindInfo = VkStruct VkSparseBufferMemoryBindInfo'
-- |
-- typedef struct VkSparseImageMemoryBind {
-- VkImageSubresource subresource;
-- VkOffset3D offset;
-- VkExtent3D extent;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseImageMemoryBind;
--
--
-- VkSparseImageMemoryBind registry at www.khronos.org
type VkSparseImageMemoryBind = VkStruct VkSparseImageMemoryBind'
-- |
-- typedef struct VkSparseImageMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseImageMemoryBind* pBinds;
-- } VkSparseImageMemoryBindInfo;
--
--
-- VkSparseImageMemoryBindInfo registry at www.khronos.org
type VkSparseImageMemoryBindInfo = VkStruct VkSparseImageMemoryBindInfo'
-- |
-- typedef struct VkSparseImageOpaqueMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseImageOpaqueMemoryBindInfo;
--
--
-- VkSparseImageOpaqueMemoryBindInfo registry at www.khronos.org
type VkSparseImageOpaqueMemoryBindInfo = VkStruct VkSparseImageOpaqueMemoryBindInfo'
-- |
-- typedef struct VkSparseMemoryBind {
-- VkDeviceSize resourceOffset;
-- VkDeviceSize size;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseMemoryBind;
--
--
-- VkSparseMemoryBind registry at www.khronos.org
type VkSparseMemoryBind = VkStruct VkSparseMemoryBind'
newtype VkSparseImageFormatBitmask (a :: FlagType)
VkSparseImageFormatBitmask :: VkFlags -> VkSparseImageFormatBitmask
pattern VkSparseImageFormatFlagBits :: VkFlags -> VkSparseImageFormatBitmask FlagBit
pattern VkSparseImageFormatFlags :: VkFlags -> VkSparseImageFormatBitmask FlagMask
-- | Image uses a single mip tail region for all array layers
--
-- bitpos = 0
pattern VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT :: VkSparseImageFormatBitmask a
-- | Image requires mip level dimensions to be an integer multiple of the
-- sparse image block dimensions for non-tail mip levels.
--
-- bitpos = 1
pattern VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT :: VkSparseImageFormatBitmask a
-- | Image uses a non-standard sparse image block dimensions
--
-- bitpos = 2
pattern VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT :: VkSparseImageFormatBitmask a
newtype VkSparseMemoryBindBitmask (a :: FlagType)
VkSparseMemoryBindBitmask :: VkFlags -> VkSparseMemoryBindBitmask
pattern VkSparseMemoryBindFlagBits :: VkFlags -> VkSparseMemoryBindBitmask FlagBit
pattern VkSparseMemoryBindFlags :: VkFlags -> VkSparseMemoryBindBitmask FlagMask
-- | Operation binds resource metadata to memory
--
-- bitpos = 0
pattern VK_SPARSE_MEMORY_BIND_METADATA_BIT :: VkSparseMemoryBindBitmask a
type VkSparseImageFormatFlagBits = VkSparseImageFormatBitmask FlagBit
type VkSparseImageFormatFlags = VkSparseImageFormatBitmask FlagMask
type VkSparseMemoryBindFlagBits = VkSparseMemoryBindBitmask FlagBit
type VkSparseMemoryBindFlags = VkSparseMemoryBindBitmask FlagMask
-- |
-- typedef struct VkSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- const VkPipelineStageFlags* pWaitDstStageMask;
-- uint32_t commandBufferCount;
-- const VkCommandBuffer* pCommandBuffers;
-- uint32_t signalSemaphoreCount;
-- const VkSemaphore* pSignalSemaphores;
-- } VkSubmitInfo;
--
--
-- VkSubmitInfo registry at www.khronos.org
type VkSubmitInfo = VkStruct VkSubmitInfo'
type VkGetDeviceGroupPeerMemoryFeatures = "vkGetDeviceGroupPeerMemoryFeatures"
pattern VkGetDeviceGroupPeerMemoryFeatures :: CString
-- | -- void vkGetDeviceGroupPeerMemoryFeatures -- ( VkDevice device -- , uint32_t heapIndex -- , uint32_t localDeviceIndex -- , uint32_t remoteDeviceIndex -- , VkPeerMemoryFeatureFlags* pPeerMemoryFeatures -- ) ---- -- vkGetDeviceGroupPeerMemoryFeatures registry at www.khronos.org type HS_vkGetDeviceGroupPeerMemoryFeatures = VkDevice " device" -> Word32 " heapIndex" -> Word32 " localDeviceIndex" -> Word32 " remoteDeviceIndex" -> Ptr VkPeerMemoryFeatureFlags " pPeerMemoryFeatures" -> IO () type PFN_vkGetDeviceGroupPeerMemoryFeatures = FunPtr HS_vkGetDeviceGroupPeerMemoryFeatures -- |
-- void vkGetDeviceGroupPeerMemoryFeatures -- ( VkDevice device -- , uint32_t heapIndex -- , uint32_t localDeviceIndex -- , uint32_t remoteDeviceIndex -- , VkPeerMemoryFeatureFlags* pPeerMemoryFeatures -- ) ---- -- vkGetDeviceGroupPeerMemoryFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetDeviceProc @VkGetDeviceGroupPeerMemoryFeatures vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetProc @VkGetDeviceGroupPeerMemoryFeatures ---- -- Note: vkGetDeviceGroupPeerMemoryFeaturesUnsafe and -- vkGetDeviceGroupPeerMemoryFeaturesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPeerMemoryFeatures is an alias -- of vkGetDeviceGroupPeerMemoryFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceGroupPeerMemoryFeaturesSafe. vkGetDeviceGroupPeerMemoryFeatures :: VkDevice -> Word32 -> Word32 -> Word32 -> Ptr VkPeerMemoryFeatureFlags -> IO () -- |
-- void vkGetDeviceGroupPeerMemoryFeatures -- ( VkDevice device -- , uint32_t heapIndex -- , uint32_t localDeviceIndex -- , uint32_t remoteDeviceIndex -- , VkPeerMemoryFeatureFlags* pPeerMemoryFeatures -- ) ---- -- vkGetDeviceGroupPeerMemoryFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetDeviceProc @VkGetDeviceGroupPeerMemoryFeatures vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetProc @VkGetDeviceGroupPeerMemoryFeatures ---- -- Note: vkGetDeviceGroupPeerMemoryFeaturesUnsafe and -- vkGetDeviceGroupPeerMemoryFeaturesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPeerMemoryFeatures is an alias -- of vkGetDeviceGroupPeerMemoryFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceGroupPeerMemoryFeaturesSafe. vkGetDeviceGroupPeerMemoryFeaturesUnsafe :: VkDevice -> Word32 -> Word32 -> Word32 -> Ptr VkPeerMemoryFeatureFlags -> IO () -- |
-- void vkGetDeviceGroupPeerMemoryFeatures -- ( VkDevice device -- , uint32_t heapIndex -- , uint32_t localDeviceIndex -- , uint32_t remoteDeviceIndex -- , VkPeerMemoryFeatureFlags* pPeerMemoryFeatures -- ) ---- -- vkGetDeviceGroupPeerMemoryFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetDeviceProc @VkGetDeviceGroupPeerMemoryFeatures vkDevice ---- -- or less efficient: -- --
-- myGetDeviceGroupPeerMemoryFeatures <- vkGetProc @VkGetDeviceGroupPeerMemoryFeatures ---- -- Note: vkGetDeviceGroupPeerMemoryFeaturesUnsafe and -- vkGetDeviceGroupPeerMemoryFeaturesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetDeviceGroupPeerMemoryFeatures is an alias -- of vkGetDeviceGroupPeerMemoryFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceGroupPeerMemoryFeaturesSafe. vkGetDeviceGroupPeerMemoryFeaturesSafe :: VkDevice -> Word32 -> Word32 -> Word32 -> Ptr VkPeerMemoryFeatureFlags -> IO () type VkCmdSetDeviceMask = "vkCmdSetDeviceMask" pattern VkCmdSetDeviceMask :: CString -- | Queues: graphics, compute, transfer. -- -- Renderpass: both -- --
-- void vkCmdSetDeviceMask -- ( VkCommandBuffer commandBuffer -- , uint32_t deviceMask -- ) ---- -- vkCmdSetDeviceMask registry at www.khronos.org type HS_vkCmdSetDeviceMask = VkCommandBuffer " commandBuffer" -> Word32 " deviceMask" -> IO () type PFN_vkCmdSetDeviceMask = FunPtr HS_vkCmdSetDeviceMask -- | Queues: graphics, compute, transfer. -- -- Renderpass: both -- --
-- void vkCmdSetDeviceMask -- ( VkCommandBuffer commandBuffer -- , uint32_t deviceMask -- ) ---- -- vkCmdSetDeviceMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDeviceMask <- vkGetInstanceProc @VkCmdSetDeviceMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetDeviceMask <- vkGetProc @VkCmdSetDeviceMask ---- -- Note: vkCmdSetDeviceMaskUnsafe and -- vkCmdSetDeviceMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDeviceMask is an alias of -- vkCmdSetDeviceMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDeviceMaskSafe. vkCmdSetDeviceMask :: VkCommandBuffer -> Word32 -> IO () -- | Queues: graphics, compute, transfer. -- -- Renderpass: both -- --
-- void vkCmdSetDeviceMask -- ( VkCommandBuffer commandBuffer -- , uint32_t deviceMask -- ) ---- -- vkCmdSetDeviceMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDeviceMask <- vkGetInstanceProc @VkCmdSetDeviceMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetDeviceMask <- vkGetProc @VkCmdSetDeviceMask ---- -- Note: vkCmdSetDeviceMaskUnsafe and -- vkCmdSetDeviceMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDeviceMask is an alias of -- vkCmdSetDeviceMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDeviceMaskSafe. vkCmdSetDeviceMaskUnsafe :: VkCommandBuffer -> Word32 -> IO () -- | Queues: graphics, compute, transfer. -- -- Renderpass: both -- --
-- void vkCmdSetDeviceMask -- ( VkCommandBuffer commandBuffer -- , uint32_t deviceMask -- ) ---- -- vkCmdSetDeviceMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDeviceMask <- vkGetInstanceProc @VkCmdSetDeviceMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetDeviceMask <- vkGetProc @VkCmdSetDeviceMask ---- -- Note: vkCmdSetDeviceMaskUnsafe and -- vkCmdSetDeviceMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDeviceMask is an alias of -- vkCmdSetDeviceMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDeviceMaskSafe. vkCmdSetDeviceMaskSafe :: VkCommandBuffer -> Word32 -> IO () type VkCmdDispatchBase = "vkCmdDispatchBase" pattern VkCmdDispatchBase :: CString -- | Queues: compute. -- -- Renderpass: outside -- --
-- void vkCmdDispatchBase -- ( VkCommandBuffer commandBuffer -- , uint32_t baseGroupX -- , uint32_t baseGroupY -- , uint32_t baseGroupZ -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatchBase registry at www.khronos.org type HS_vkCmdDispatchBase = VkCommandBuffer " commandBuffer" -> Word32 " baseGroupX" -> Word32 " baseGroupY" -> Word32 " baseGroupZ" -> Word32 " groupCountX" -> Word32 " groupCountY" -> Word32 " groupCountZ" -> IO () type PFN_vkCmdDispatchBase = FunPtr HS_vkCmdDispatchBase -- | Queues: compute. -- -- Renderpass: outside -- --
-- void vkCmdDispatchBase -- ( VkCommandBuffer commandBuffer -- , uint32_t baseGroupX -- , uint32_t baseGroupY -- , uint32_t baseGroupZ -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatchBase registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchBase <- vkGetInstanceProc @VkCmdDispatchBase vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchBase <- vkGetProc @VkCmdDispatchBase ---- -- Note: vkCmdDispatchBaseUnsafe and -- vkCmdDispatchBaseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchBase is an alias of -- vkCmdDispatchBaseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDispatchBaseSafe. vkCmdDispatchBase :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: compute. -- -- Renderpass: outside -- --
-- void vkCmdDispatchBase -- ( VkCommandBuffer commandBuffer -- , uint32_t baseGroupX -- , uint32_t baseGroupY -- , uint32_t baseGroupZ -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatchBase registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchBase <- vkGetInstanceProc @VkCmdDispatchBase vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchBase <- vkGetProc @VkCmdDispatchBase ---- -- Note: vkCmdDispatchBaseUnsafe and -- vkCmdDispatchBaseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchBase is an alias of -- vkCmdDispatchBaseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDispatchBaseSafe. vkCmdDispatchBaseUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: compute. -- -- Renderpass: outside -- --
-- void vkCmdDispatchBase -- ( VkCommandBuffer commandBuffer -- , uint32_t baseGroupX -- , uint32_t baseGroupY -- , uint32_t baseGroupZ -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatchBase registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchBase <- vkGetInstanceProc @VkCmdDispatchBase vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchBase <- vkGetProc @VkCmdDispatchBase ---- -- Note: vkCmdDispatchBaseUnsafe and -- vkCmdDispatchBaseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchBase is an alias of -- vkCmdDispatchBaseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDispatchBaseSafe. vkCmdDispatchBaseSafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> Word32 -> IO () pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO :: VkStructureType -- | bitpos = 3 pattern VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT :: VkPipelineCreateBitmask a -- | bitpos = 4 pattern VK_PIPELINE_CREATE_DISPATCH_BASE :: VkPipelineCreateBitmask a -- | Dependency is across devices -- -- bitpos = 2 pattern VK_DEPENDENCY_DEVICE_GROUP_BIT :: VkDependencyBitmask a pattern VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO :: VkStructureType -- | Allows using -- VkBindImageMemoryDeviceGroupInfo::pSplitInstanceBindRegions when -- binding memory to the image -- -- bitpos = 6 pattern VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT :: VkImageCreateBitmask a -- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
type VkEnumeratePhysicalDeviceGroups = "vkEnumeratePhysicalDeviceGroups"
pattern VkEnumeratePhysicalDeviceGroups :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INITIALIZATION_FAILED.
--
-- -- VkResult vkEnumeratePhysicalDeviceGroups -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceGroupCount -- , VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties -- ) ---- -- vkEnumeratePhysicalDeviceGroups registry at www.khronos.org type HS_vkEnumeratePhysicalDeviceGroups = VkInstance " instance" -> Ptr Word32 " pPhysicalDeviceGroupCount" -> Ptr VkPhysicalDeviceGroupProperties " pPhysicalDeviceGroupProperties" -> IO VkResult type PFN_vkEnumeratePhysicalDeviceGroups = FunPtr HS_vkEnumeratePhysicalDeviceGroups -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDeviceGroups -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceGroupCount -- , VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties -- ) ---- -- vkEnumeratePhysicalDeviceGroups registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetInstanceProc @VkEnumeratePhysicalDeviceGroups vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetProc @VkEnumeratePhysicalDeviceGroups ---- -- Note: vkEnumeratePhysicalDeviceGroupsUnsafe and -- vkEnumeratePhysicalDeviceGroupsSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDeviceGroups is an alias of -- vkEnumeratePhysicalDeviceGroupsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDeviceGroupsSafe. vkEnumeratePhysicalDeviceGroups :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDeviceGroupProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDeviceGroups -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceGroupCount -- , VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties -- ) ---- -- vkEnumeratePhysicalDeviceGroups registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetInstanceProc @VkEnumeratePhysicalDeviceGroups vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetProc @VkEnumeratePhysicalDeviceGroups ---- -- Note: vkEnumeratePhysicalDeviceGroupsUnsafe and -- vkEnumeratePhysicalDeviceGroupsSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDeviceGroups is an alias of -- vkEnumeratePhysicalDeviceGroupsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDeviceGroupsSafe. vkEnumeratePhysicalDeviceGroupsUnsafe :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDeviceGroupProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDeviceGroups -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceGroupCount -- , VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties -- ) ---- -- vkEnumeratePhysicalDeviceGroups registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetInstanceProc @VkEnumeratePhysicalDeviceGroups vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDeviceGroups <- vkGetProc @VkEnumeratePhysicalDeviceGroups ---- -- Note: vkEnumeratePhysicalDeviceGroupsUnsafe and -- vkEnumeratePhysicalDeviceGroupsSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDeviceGroups is an alias of -- vkEnumeratePhysicalDeviceGroupsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDeviceGroupsSafe. vkEnumeratePhysicalDeviceGroupsSafe :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDeviceGroupProperties -> IO VkResult -- | Alias for VkPhysicalDevice16BitStorageFeatures type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures -- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_MAX_DEVICE_GROUP_SIZE :: (Num a, Eq a) => a
-- | If set, heap allocations allocate multiple instances by default
--
-- bitpos = 1
pattern VK_MEMORY_HEAP_MULTI_INSTANCE_BIT :: VkMemoryHeapBitmask a
-- |
-- typedef struct VkBufferMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- } VkBufferMemoryRequirementsInfo2;
--
--
-- VkBufferMemoryRequirementsInfo2 registry at www.khronos.org
type VkBufferMemoryRequirementsInfo2 = VkStruct VkBufferMemoryRequirementsInfo2'
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- |
-- typedef struct VkSparseImageFormatProperties {
-- VkImageAspectFlags aspectMask;
-- VkExtent3D imageGranularity;
-- VkSparseImageFormatFlags flags;
-- } VkSparseImageFormatProperties;
--
--
-- VkSparseImageFormatProperties registry at www.khronos.org
type VkSparseImageFormatProperties = VkStruct VkSparseImageFormatProperties'
-- |
-- typedef struct VkSparseImageMemoryRequirements {
-- VkSparseImageFormatProperties formatProperties;
-- uint32_t imageMipTailFirstLod;
-- VkDeviceSize imageMipTailSize;
-- VkDeviceSize imageMipTailOffset;
-- VkDeviceSize imageMipTailStride;
-- } VkSparseImageMemoryRequirements;
--
--
-- VkSparseImageMemoryRequirements registry at www.khronos.org
type VkSparseImageMemoryRequirements = VkStruct VkSparseImageMemoryRequirements'
-- |
-- typedef struct VkSparseImageMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageMemoryRequirements memoryRequirements;
-- } VkSparseImageMemoryRequirements2;
--
--
-- VkSparseImageMemoryRequirements2 registry at www.khronos.org
type VkSparseImageMemoryRequirements2 = VkStruct VkSparseImageMemoryRequirements2'
type VkGetImageMemoryRequirements2 = "vkGetImageMemoryRequirements2"
pattern VkGetImageMemoryRequirements2 :: CString
-- | -- void vkGetImageMemoryRequirements2 -- ( VkDevice device -- , const VkImageMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements2 registry at www.khronos.org type HS_vkGetImageMemoryRequirements2 = VkDevice " device" -> Ptr VkImageMemoryRequirementsInfo2 " pInfo" -> Ptr VkMemoryRequirements2 " pMemoryRequirements" -> IO () type PFN_vkGetImageMemoryRequirements2 = FunPtr HS_vkGetImageMemoryRequirements2 -- |
-- void vkGetImageMemoryRequirements2 -- ( VkDevice device -- , const VkImageMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements2 <- vkGetDeviceProc @VkGetImageMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements2 <- vkGetProc @VkGetImageMemoryRequirements2 ---- -- Note: vkGetImageMemoryRequirements2Unsafe and -- vkGetImageMemoryRequirements2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements2 is an alias of -- vkGetImageMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirements2Safe. vkGetImageMemoryRequirements2 :: VkDevice -> Ptr VkImageMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () -- |
-- void vkGetImageMemoryRequirements2 -- ( VkDevice device -- , const VkImageMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements2 <- vkGetDeviceProc @VkGetImageMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements2 <- vkGetProc @VkGetImageMemoryRequirements2 ---- -- Note: vkGetImageMemoryRequirements2Unsafe and -- vkGetImageMemoryRequirements2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements2 is an alias of -- vkGetImageMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirements2Safe. vkGetImageMemoryRequirements2Unsafe :: VkDevice -> Ptr VkImageMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () -- |
-- void vkGetImageMemoryRequirements2 -- ( VkDevice device -- , const VkImageMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements2 <- vkGetDeviceProc @VkGetImageMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements2 <- vkGetProc @VkGetImageMemoryRequirements2 ---- -- Note: vkGetImageMemoryRequirements2Unsafe and -- vkGetImageMemoryRequirements2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements2 is an alias of -- vkGetImageMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirements2Safe. vkGetImageMemoryRequirements2Safe :: VkDevice -> Ptr VkImageMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () type VkGetBufferMemoryRequirements2 = "vkGetBufferMemoryRequirements2" pattern VkGetBufferMemoryRequirements2 :: CString -- |
-- void vkGetBufferMemoryRequirements2 -- ( VkDevice device -- , const VkBufferMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements2 registry at www.khronos.org type HS_vkGetBufferMemoryRequirements2 = VkDevice " device" -> Ptr VkBufferMemoryRequirementsInfo2 " pInfo" -> Ptr VkMemoryRequirements2 " pMemoryRequirements" -> IO () type PFN_vkGetBufferMemoryRequirements2 = FunPtr HS_vkGetBufferMemoryRequirements2 -- |
-- void vkGetBufferMemoryRequirements2 -- ( VkDevice device -- , const VkBufferMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements2 <- vkGetDeviceProc @VkGetBufferMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements2 <- vkGetProc @VkGetBufferMemoryRequirements2 ---- -- Note: vkGetBufferMemoryRequirements2Unsafe and -- vkGetBufferMemoryRequirements2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements2 is an alias of -- vkGetBufferMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirements2Safe. vkGetBufferMemoryRequirements2 :: VkDevice -> Ptr VkBufferMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () -- |
-- void vkGetBufferMemoryRequirements2 -- ( VkDevice device -- , const VkBufferMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements2 <- vkGetDeviceProc @VkGetBufferMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements2 <- vkGetProc @VkGetBufferMemoryRequirements2 ---- -- Note: vkGetBufferMemoryRequirements2Unsafe and -- vkGetBufferMemoryRequirements2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements2 is an alias of -- vkGetBufferMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirements2Safe. vkGetBufferMemoryRequirements2Unsafe :: VkDevice -> Ptr VkBufferMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () -- |
-- void vkGetBufferMemoryRequirements2 -- ( VkDevice device -- , const VkBufferMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements2 <- vkGetDeviceProc @VkGetBufferMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements2 <- vkGetProc @VkGetBufferMemoryRequirements2 ---- -- Note: vkGetBufferMemoryRequirements2Unsafe and -- vkGetBufferMemoryRequirements2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements2 is an alias of -- vkGetBufferMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirements2Safe. vkGetBufferMemoryRequirements2Safe :: VkDevice -> Ptr VkBufferMemoryRequirementsInfo2 -> Ptr VkMemoryRequirements2 -> IO () type VkGetImageSparseMemoryRequirements2 = "vkGetImageSparseMemoryRequirements2" pattern VkGetImageSparseMemoryRequirements2 :: CString -- |
-- void vkGetImageSparseMemoryRequirements2 -- ( VkDevice device -- , const VkImageSparseMemoryRequirementsInfo2* pInfo -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements2* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements2 registry at www.khronos.org type HS_vkGetImageSparseMemoryRequirements2 = VkDevice " device" -> Ptr VkImageSparseMemoryRequirementsInfo2 " pInfo" -> Ptr Word32 " pSparseMemoryRequirementCount" -> Ptr VkSparseImageMemoryRequirements2 " pSparseMemoryRequirements" -> IO () type PFN_vkGetImageSparseMemoryRequirements2 = FunPtr HS_vkGetImageSparseMemoryRequirements2 -- |
-- void vkGetImageSparseMemoryRequirements2 -- ( VkDevice device -- , const VkImageSparseMemoryRequirementsInfo2* pInfo -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements2* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetProc @VkGetImageSparseMemoryRequirements2 ---- -- Note: vkGetImageSparseMemoryRequirements2Unsafe and -- vkGetImageSparseMemoryRequirements2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements2 is an alias -- of vkGetImageSparseMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirements2Safe. vkGetImageSparseMemoryRequirements2 :: VkDevice -> Ptr VkImageSparseMemoryRequirementsInfo2 -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements2 -> IO () -- |
-- void vkGetImageSparseMemoryRequirements2 -- ( VkDevice device -- , const VkImageSparseMemoryRequirementsInfo2* pInfo -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements2* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetProc @VkGetImageSparseMemoryRequirements2 ---- -- Note: vkGetImageSparseMemoryRequirements2Unsafe and -- vkGetImageSparseMemoryRequirements2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements2 is an alias -- of vkGetImageSparseMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirements2Safe. vkGetImageSparseMemoryRequirements2Unsafe :: VkDevice -> Ptr VkImageSparseMemoryRequirementsInfo2 -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements2 -> IO () -- |
-- void vkGetImageSparseMemoryRequirements2 -- ( VkDevice device -- , const VkImageSparseMemoryRequirementsInfo2* pInfo -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements2* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements2 vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements2 <- vkGetProc @VkGetImageSparseMemoryRequirements2 ---- -- Note: vkGetImageSparseMemoryRequirements2Unsafe and -- vkGetImageSparseMemoryRequirements2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements2 is an alias -- of vkGetImageSparseMemoryRequirements2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirements2Safe. vkGetImageSparseMemoryRequirements2Safe :: VkDevice -> Ptr VkImageSparseMemoryRequirementsInfo2 -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements2 -> IO () -- |
-- typedef struct VkBufferCopy {
-- VkDeviceSize srcOffset;
-- VkDeviceSize dstOffset;
-- VkDeviceSize size;
-- } VkBufferCopy;
--
--
-- VkBufferCopy registry at www.khronos.org
type VkBufferCopy = VkStruct VkBufferCopy'
-- |
-- typedef struct VkBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkDeviceSize size;
-- VkBufferUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- } VkBufferCreateInfo;
--
--
-- VkBufferCreateInfo registry at www.khronos.org
type VkBufferCreateInfo = VkStruct VkBufferCreateInfo'
-- |
-- typedef struct VkBufferImageCopy {
-- VkDeviceSize bufferOffset;
-- uint32_t bufferRowLength;
-- uint32_t bufferImageHeight;
-- VkImageSubresourceLayers imageSubresource;
-- VkOffset3D imageOffset;
-- VkExtent3D imageExtent;
-- } VkBufferImageCopy;
--
--
-- VkBufferImageCopy registry at www.khronos.org
type VkBufferImageCopy = VkStruct VkBufferImageCopy'
-- |
-- typedef struct VkBufferMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize size;
-- } VkBufferMemoryBarrier;
--
--
-- VkBufferMemoryBarrier registry at www.khronos.org
type VkBufferMemoryBarrier = VkStruct VkBufferMemoryBarrier'
-- | Alias for VkBufferMemoryRequirementsInfo2
type VkBufferMemoryRequirementsInfo2KHR = VkBufferMemoryRequirementsInfo2
-- |
-- typedef struct VkBufferViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferViewCreateFlagsflags;
-- VkBuffer buffer;
-- VkFormat format;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkBufferViewCreateInfo;
--
--
-- VkBufferViewCreateInfo registry at www.khronos.org
type VkBufferViewCreateInfo = VkStruct VkBufferViewCreateInfo'
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- | Alias for VkImageFormatProperties2
type VkImageFormatProperties2KHR = VkImageFormatProperties2
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
-- |
-- typedef struct VkSparseImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageFormatProperties properties;
-- } VkSparseImageFormatProperties2;
--
--
-- VkSparseImageFormatProperties2 registry at www.khronos.org
type VkSparseImageFormatProperties2 = VkStruct VkSparseImageFormatProperties2'
-- | Alias for VkSparseImageFormatProperties2
type VkSparseImageFormatProperties2KHR = VkSparseImageFormatProperties2
-- | Alias for VkSparseImageMemoryRequirements2
type VkSparseImageMemoryRequirements2KHR = VkSparseImageMemoryRequirements2
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2 :: VkStructureType
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
-- |
-- typedef struct VkFormatProperties {
-- VkFormatFeatureFlags linearTilingFeatures;
-- VkFormatFeatureFlags optimalTilingFeatures;
-- VkFormatFeatureFlags bufferFeatures;
-- } VkFormatProperties;
--
--
-- VkFormatProperties registry at www.khronos.org
type VkFormatProperties = VkStruct VkFormatProperties'
-- |
-- typedef struct VkFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkFormatProperties formatProperties;
-- } VkFormatProperties2;
--
--
-- VkFormatProperties2 registry at www.khronos.org
type VkFormatProperties2 = VkStruct VkFormatProperties2'
-- |
-- typedef struct VkQueueFamilyProperties {
-- VkQueueFlags queueFlags;
-- uint32_t queueCount;
-- uint32_t timestampValidBits;
-- VkExtent3D minImageTransferGranularity;
-- } VkQueueFamilyProperties;
--
--
-- VkQueueFamilyProperties registry at www.khronos.org
type VkQueueFamilyProperties = VkStruct VkQueueFamilyProperties'
-- |
-- typedef struct VkQueueFamilyProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkQueueFamilyProperties queueFamilyProperties;
-- } VkQueueFamilyProperties2;
--
--
-- VkQueueFamilyProperties2 registry at www.khronos.org
type VkQueueFamilyProperties2 = VkStruct VkQueueFamilyProperties2'
newtype VkQueueBitmask (a :: FlagType)
VkQueueBitmask :: VkFlags -> VkQueueBitmask
pattern VkQueueFlagBits :: VkFlags -> VkQueueBitmask FlagBit
pattern VkQueueFlags :: VkFlags -> VkQueueBitmask FlagMask
-- | Queue supports graphics operations
--
-- bitpos = 0
pattern VK_QUEUE_GRAPHICS_BIT :: VkQueueBitmask a
-- | Queue supports compute operations
--
-- bitpos = 1
pattern VK_QUEUE_COMPUTE_BIT :: VkQueueBitmask a
-- | Queue supports transfer operations
--
-- bitpos = 2
pattern VK_QUEUE_TRANSFER_BIT :: VkQueueBitmask a
-- | Queue supports sparse resource memory management operations
--
-- bitpos = 3
pattern VK_QUEUE_SPARSE_BINDING_BIT :: VkQueueBitmask a
-- | type = enum
--
-- VkQueueGlobalPriorityEXT registry at www.khronos.org
newtype VkQueueGlobalPriorityEXT
VkQueueGlobalPriorityEXT :: Int32 -> VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT :: VkQueueGlobalPriorityEXT
pattern VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT :: VkQueueGlobalPriorityEXT
type VkQueueFlagBits = VkQueueBitmask FlagBit
type VkQueueFlags = VkQueueBitmask FlagMask
type VkGetPhysicalDeviceFeatures2 = "vkGetPhysicalDeviceFeatures2"
pattern VkGetPhysicalDeviceFeatures2 :: CString
-- | -- void vkGetPhysicalDeviceFeatures2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures2* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures2 registry at www.khronos.org type HS_vkGetPhysicalDeviceFeatures2 = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceFeatures2 " pFeatures" -> IO () type PFN_vkGetPhysicalDeviceFeatures2 = FunPtr HS_vkGetPhysicalDeviceFeatures2 -- |
-- void vkGetPhysicalDeviceFeatures2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures2* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetProc @VkGetPhysicalDeviceFeatures2 ---- -- Note: vkGetPhysicalDeviceFeatures2Unsafe and -- vkGetPhysicalDeviceFeatures2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures2 is an alias of -- vkGetPhysicalDeviceFeatures2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeatures2Safe. vkGetPhysicalDeviceFeatures2 :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures2 -> IO () -- |
-- void vkGetPhysicalDeviceFeatures2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures2* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetProc @VkGetPhysicalDeviceFeatures2 ---- -- Note: vkGetPhysicalDeviceFeatures2Unsafe and -- vkGetPhysicalDeviceFeatures2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures2 is an alias of -- vkGetPhysicalDeviceFeatures2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeatures2Safe. vkGetPhysicalDeviceFeatures2Unsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures2 -> IO () -- |
-- void vkGetPhysicalDeviceFeatures2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures2* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures2 <- vkGetProc @VkGetPhysicalDeviceFeatures2 ---- -- Note: vkGetPhysicalDeviceFeatures2Unsafe and -- vkGetPhysicalDeviceFeatures2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures2 is an alias of -- vkGetPhysicalDeviceFeatures2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeatures2Safe. vkGetPhysicalDeviceFeatures2Safe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures2 -> IO () type VkGetPhysicalDeviceProperties2 = "vkGetPhysicalDeviceProperties2" pattern VkGetPhysicalDeviceProperties2 :: CString -- |
-- void vkGetPhysicalDeviceProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties2 registry at www.khronos.org type HS_vkGetPhysicalDeviceProperties2 = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceProperties2 " pProperties" -> IO () type PFN_vkGetPhysicalDeviceProperties2 = FunPtr HS_vkGetPhysicalDeviceProperties2 -- |
-- void vkGetPhysicalDeviceProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetProc @VkGetPhysicalDeviceProperties2 ---- -- Note: vkGetPhysicalDeviceProperties2Unsafe and -- vkGetPhysicalDeviceProperties2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties2 is an alias of -- vkGetPhysicalDeviceProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceProperties2Safe. vkGetPhysicalDeviceProperties2 :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetProc @VkGetPhysicalDeviceProperties2 ---- -- Note: vkGetPhysicalDeviceProperties2Unsafe and -- vkGetPhysicalDeviceProperties2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties2 is an alias of -- vkGetPhysicalDeviceProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceProperties2Safe. vkGetPhysicalDeviceProperties2Unsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties2 <- vkGetProc @VkGetPhysicalDeviceProperties2 ---- -- Note: vkGetPhysicalDeviceProperties2Unsafe and -- vkGetPhysicalDeviceProperties2Safe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties2 is an alias of -- vkGetPhysicalDeviceProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceProperties2Safe. vkGetPhysicalDeviceProperties2Safe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties2 -> IO () type VkGetPhysicalDeviceFormatProperties2 = "vkGetPhysicalDeviceFormatProperties2" pattern VkGetPhysicalDeviceFormatProperties2 :: CString -- |
-- void vkGetPhysicalDeviceFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties2* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties2 registry at -- www.khronos.org type HS_vkGetPhysicalDeviceFormatProperties2 = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> Ptr VkFormatProperties2 " pFormatProperties" -> IO () type PFN_vkGetPhysicalDeviceFormatProperties2 = FunPtr HS_vkGetPhysicalDeviceFormatProperties2 -- |
-- void vkGetPhysicalDeviceFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties2* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceFormatProperties2 ---- -- Note: vkGetPhysicalDeviceFormatProperties2Unsafe and -- vkGetPhysicalDeviceFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties2 is an -- alias of vkGetPhysicalDeviceFormatProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatProperties2Safe. vkGetPhysicalDeviceFormatProperties2 :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties2* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceFormatProperties2 ---- -- Note: vkGetPhysicalDeviceFormatProperties2Unsafe and -- vkGetPhysicalDeviceFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties2 is an -- alias of vkGetPhysicalDeviceFormatProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatProperties2Safe. vkGetPhysicalDeviceFormatProperties2Unsafe :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties2* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceFormatProperties2 ---- -- Note: vkGetPhysicalDeviceFormatProperties2Unsafe and -- vkGetPhysicalDeviceFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties2 is an -- alias of vkGetPhysicalDeviceFormatProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatProperties2Safe. vkGetPhysicalDeviceFormatProperties2Safe :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties2 -> IO () type VkGetPhysicalDeviceImageFormatProperties2 = "vkGetPhysicalDeviceImageFormatProperties2" pattern VkGetPhysicalDeviceImageFormatProperties2 :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo -- , VkImageFormatProperties2* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties2 registry at -- www.khronos.org type HS_vkGetPhysicalDeviceImageFormatProperties2 = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceImageFormatInfo2 " pImageFormatInfo" -> Ptr VkImageFormatProperties2 " pImageFormatProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceImageFormatProperties2 = FunPtr HS_vkGetPhysicalDeviceImageFormatProperties2 -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo -- , VkImageFormatProperties2* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties2 ---- -- Note: vkGetPhysicalDeviceImageFormatProperties2Unsafe -- and vkGetPhysicalDeviceImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties2 is an -- alias of vkGetPhysicalDeviceImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatProperties2Safe. vkGetPhysicalDeviceImageFormatProperties2 :: VkPhysicalDevice -> Ptr VkPhysicalDeviceImageFormatInfo2 -> Ptr VkImageFormatProperties2 -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo -- , VkImageFormatProperties2* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties2 ---- -- Note: vkGetPhysicalDeviceImageFormatProperties2Unsafe -- and vkGetPhysicalDeviceImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties2 is an -- alias of vkGetPhysicalDeviceImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatProperties2Safe. vkGetPhysicalDeviceImageFormatProperties2Unsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceImageFormatInfo2 -> Ptr VkImageFormatProperties2 -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo -- , VkImageFormatProperties2* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties2 ---- -- Note: vkGetPhysicalDeviceImageFormatProperties2Unsafe -- and vkGetPhysicalDeviceImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties2 is an -- alias of vkGetPhysicalDeviceImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatProperties2Safe. vkGetPhysicalDeviceImageFormatProperties2Safe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceImageFormatInfo2 -> Ptr VkImageFormatProperties2 -> IO VkResult type VkGetPhysicalDeviceQueueFamilyProperties2 = "vkGetPhysicalDeviceQueueFamilyProperties2" pattern VkGetPhysicalDeviceQueueFamilyProperties2 :: CString -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties2 -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties2* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties2 registry at -- www.khronos.org type HS_vkGetPhysicalDeviceQueueFamilyProperties2 = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pQueueFamilyPropertyCount" -> Ptr VkQueueFamilyProperties2 " pQueueFamilyProperties" -> IO () type PFN_vkGetPhysicalDeviceQueueFamilyProperties2 = FunPtr HS_vkGetPhysicalDeviceQueueFamilyProperties2 -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties2 -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties2* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties2 ---- -- Note: vkGetPhysicalDeviceQueueFamilyProperties2Unsafe -- and vkGetPhysicalDeviceQueueFamilyProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties2 is an -- alias of vkGetPhysicalDeviceQueueFamilyProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyProperties2Safe. vkGetPhysicalDeviceQueueFamilyProperties2 :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties2 -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties2* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties2 ---- -- Note: vkGetPhysicalDeviceQueueFamilyProperties2Unsafe -- and vkGetPhysicalDeviceQueueFamilyProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties2 is an -- alias of vkGetPhysicalDeviceQueueFamilyProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyProperties2Safe. vkGetPhysicalDeviceQueueFamilyProperties2Unsafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties2 -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties2* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties2 <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties2 ---- -- Note: vkGetPhysicalDeviceQueueFamilyProperties2Unsafe -- and vkGetPhysicalDeviceQueueFamilyProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties2 is an -- alias of vkGetPhysicalDeviceQueueFamilyProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyProperties2Safe. vkGetPhysicalDeviceQueueFamilyProperties2Safe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties2 -> IO () type VkGetPhysicalDeviceMemoryProperties2 = "vkGetPhysicalDeviceMemoryProperties2" pattern VkGetPhysicalDeviceMemoryProperties2 :: CString -- |
-- void vkGetPhysicalDeviceMemoryProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties2* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties2 registry at -- www.khronos.org type HS_vkGetPhysicalDeviceMemoryProperties2 = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceMemoryProperties2 " pMemoryProperties" -> IO () type PFN_vkGetPhysicalDeviceMemoryProperties2 = FunPtr HS_vkGetPhysicalDeviceMemoryProperties2 -- |
-- void vkGetPhysicalDeviceMemoryProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties2* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetProc @VkGetPhysicalDeviceMemoryProperties2 ---- -- Note: vkGetPhysicalDeviceMemoryProperties2Unsafe and -- vkGetPhysicalDeviceMemoryProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties2 is an -- alias of vkGetPhysicalDeviceMemoryProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryProperties2Safe. vkGetPhysicalDeviceMemoryProperties2 :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceMemoryProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties2* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetProc @VkGetPhysicalDeviceMemoryProperties2 ---- -- Note: vkGetPhysicalDeviceMemoryProperties2Unsafe and -- vkGetPhysicalDeviceMemoryProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties2 is an -- alias of vkGetPhysicalDeviceMemoryProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryProperties2Safe. vkGetPhysicalDeviceMemoryProperties2Unsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceMemoryProperties2 -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties2* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties2 <- vkGetProc @VkGetPhysicalDeviceMemoryProperties2 ---- -- Note: vkGetPhysicalDeviceMemoryProperties2Unsafe and -- vkGetPhysicalDeviceMemoryProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties2 is an -- alias of vkGetPhysicalDeviceMemoryProperties2Unsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryProperties2Safe. vkGetPhysicalDeviceMemoryProperties2Safe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties2 -> IO () type VkGetPhysicalDeviceSparseImageFormatProperties2 = "vkGetPhysicalDeviceSparseImageFormatProperties2" pattern VkGetPhysicalDeviceSparseImageFormatProperties2 :: CString -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties2 registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSparseImageFormatProperties2 = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceSparseImageFormatInfo2 " pFormatInfo" -> Ptr Word32 " pPropertyCount" -> Ptr VkSparseImageFormatProperties2 " pProperties" -> IO () type PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 = FunPtr HS_vkGetPhysicalDeviceSparseImageFormatProperties2 -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties2 ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe and -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties2 -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe. vkGetPhysicalDeviceSparseImageFormatProperties2 :: VkPhysicalDevice -> Ptr VkPhysicalDeviceSparseImageFormatInfo2 -> Ptr Word32 -> Ptr VkSparseImageFormatProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties2 ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe and -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties2 -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe. vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceSparseImageFormatInfo2 -> Ptr Word32 -> Ptr VkSparseImageFormatProperties2 -> IO () -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties2 -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties2 registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties2 vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties2 <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties2 ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe and -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties2 -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Unsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatProperties2Safe. vkGetPhysicalDeviceSparseImageFormatProperties2Safe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceSparseImageFormatInfo2 -> Ptr Word32 -> Ptr VkSparseImageFormatProperties2 -> IO () -- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
-- | Alias for VkFormatProperties2
type VkFormatProperties2KHR = VkFormatProperties2
-- | Alias for VkQueueFamilyProperties2
type VkQueueFamilyProperties2KHR = VkQueueFamilyProperties2
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2 :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2 :: VkStructureType
type VkTrimCommandPool = "vkTrimCommandPool"
pattern VkTrimCommandPool :: CString
-- | -- void vkTrimCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolTrimFlags flags -- ) ---- -- vkTrimCommandPool registry at www.khronos.org type HS_vkTrimCommandPool = VkDevice " device" -> VkCommandPool " commandPool" -> VkCommandPoolTrimFlags " flags" -> IO () type PFN_vkTrimCommandPool = FunPtr HS_vkTrimCommandPool -- |
-- void vkTrimCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolTrimFlags flags -- ) ---- -- vkTrimCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myTrimCommandPool <- vkGetDeviceProc @VkTrimCommandPool vkDevice ---- -- or less efficient: -- --
-- myTrimCommandPool <- vkGetProc @VkTrimCommandPool ---- -- Note: vkTrimCommandPoolUnsafe and -- vkTrimCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkTrimCommandPool is an alias of -- vkTrimCommandPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkTrimCommandPoolSafe. vkTrimCommandPool :: VkDevice -> VkCommandPool -> VkCommandPoolTrimFlags -> IO () -- |
-- void vkTrimCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolTrimFlags flags -- ) ---- -- vkTrimCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myTrimCommandPool <- vkGetDeviceProc @VkTrimCommandPool vkDevice ---- -- or less efficient: -- --
-- myTrimCommandPool <- vkGetProc @VkTrimCommandPool ---- -- Note: vkTrimCommandPoolUnsafe and -- vkTrimCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkTrimCommandPool is an alias of -- vkTrimCommandPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkTrimCommandPoolSafe. vkTrimCommandPoolUnsafe :: VkDevice -> VkCommandPool -> VkCommandPoolTrimFlags -> IO () -- |
-- void vkTrimCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolTrimFlags flags -- ) ---- -- vkTrimCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myTrimCommandPool <- vkGetDeviceProc @VkTrimCommandPool vkDevice ---- -- or less efficient: -- --
-- myTrimCommandPool <- vkGetProc @VkTrimCommandPool ---- -- Note: vkTrimCommandPoolUnsafe and -- vkTrimCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkTrimCommandPool is an alias of -- vkTrimCommandPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkTrimCommandPoolSafe. vkTrimCommandPoolSafe :: VkDevice -> VkCommandPool -> VkCommandPoolTrimFlags -> IO () pattern VK_ERROR_OUT_OF_POOL_MEMORY :: VkResult -- | Format can be used as the source image of image transfer commands -- -- bitpos = 14 pattern VK_FORMAT_FEATURE_TRANSFER_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of image transfer commands -- -- bitpos = 15 pattern VK_FORMAT_FEATURE_TRANSFER_DST_BIT :: VkFormatFeatureBitmask a -- | The 3D image can be viewed as a 2D or 2D array image -- -- bitpos = 5 pattern VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT :: VkImageCreateBitmask a newtype VkAccessBitmask (a :: FlagType) VkAccessBitmask :: VkFlags -> VkAccessBitmask pattern VkAccessFlagBits :: VkFlags -> VkAccessBitmask FlagBit pattern VkAccessFlags :: VkFlags -> VkAccessBitmask FlagMask -- | Controls coherency of indirect command reads -- -- bitpos = 0 pattern VK_ACCESS_INDIRECT_COMMAND_READ_BIT :: VkAccessBitmask a -- | Controls coherency of index reads -- -- bitpos = 1 pattern VK_ACCESS_INDEX_READ_BIT :: VkAccessBitmask a -- | Controls coherency of vertex attribute reads -- -- bitpos = 2 pattern VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT :: VkAccessBitmask a -- | Controls coherency of uniform buffer reads -- -- bitpos = 3 pattern VK_ACCESS_UNIFORM_READ_BIT :: VkAccessBitmask a -- | Controls coherency of input attachment reads -- -- bitpos = 4 pattern VK_ACCESS_INPUT_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of shader reads -- -- bitpos = 5 pattern VK_ACCESS_SHADER_READ_BIT :: VkAccessBitmask a -- | Controls coherency of shader writes -- -- bitpos = 6 pattern VK_ACCESS_SHADER_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of color attachment reads -- -- bitpos = 7 pattern VK_ACCESS_COLOR_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of color attachment writes -- -- bitpos = 8 pattern VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of depth/stencil attachment reads -- -- bitpos = 9 pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of depth/stencil attachment writes -- -- bitpos = 10 pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of transfer reads -- -- bitpos = 11 pattern VK_ACCESS_TRANSFER_READ_BIT :: VkAccessBitmask a -- | Controls coherency of transfer writes -- -- bitpos = 12 pattern VK_ACCESS_TRANSFER_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of host reads -- -- bitpos = 13 pattern VK_ACCESS_HOST_READ_BIT :: VkAccessBitmask a -- | Controls coherency of host writes -- -- bitpos = 14 pattern VK_ACCESS_HOST_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of memory reads -- -- bitpos = 15 pattern VK_ACCESS_MEMORY_READ_BIT :: VkAccessBitmask a -- | Controls coherency of memory writes -- -- bitpos = 16 pattern VK_ACCESS_MEMORY_WRITE_BIT :: VkAccessBitmask a type VkAccessFlagBits = VkAccessBitmask FlagBit type VkAccessFlags = VkAccessBitmask FlagMask -- |
-- typedef struct VkAttachmentDescription {
-- VkAttachmentDescriptionFlags flags;
-- VkFormat format;
-- VkSampleCountFlagBits samples;
-- VkAttachmentLoadOp loadOp;
-- VkAttachmentStoreOp storeOp;
-- VkAttachmentLoadOp stencilLoadOp;
-- VkAttachmentStoreOp stencilStoreOp;
-- VkImageLayout initialLayout;
-- VkImageLayout finalLayout;
-- } VkAttachmentDescription;
--
--
-- VkAttachmentDescription registry at www.khronos.org
type VkAttachmentDescription = VkStruct VkAttachmentDescription'
newtype VkAttachmentDescriptionBitmask (a :: FlagType)
VkAttachmentDescriptionBitmask :: VkFlags -> VkAttachmentDescriptionBitmask
pattern VkAttachmentDescriptionFlagBits :: VkFlags -> VkAttachmentDescriptionBitmask FlagBit
pattern VkAttachmentDescriptionFlags :: VkFlags -> VkAttachmentDescriptionBitmask FlagMask
-- | The attachment may alias physical memory of another attachment in the
-- same render pass
--
-- bitpos = 0
pattern VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT :: VkAttachmentDescriptionBitmask a
-- | type = enum
--
-- VkAttachmentLoadOp registry at www.khronos.org
newtype VkAttachmentLoadOp
VkAttachmentLoadOp :: Int32 -> VkAttachmentLoadOp
pattern VK_ATTACHMENT_LOAD_OP_LOAD :: VkAttachmentLoadOp
pattern VK_ATTACHMENT_LOAD_OP_CLEAR :: VkAttachmentLoadOp
pattern VK_ATTACHMENT_LOAD_OP_DONT_CARE :: VkAttachmentLoadOp
-- | type = enum
--
-- VkAttachmentStoreOp registry at www.khronos.org
newtype VkAttachmentStoreOp
VkAttachmentStoreOp :: Int32 -> VkAttachmentStoreOp
pattern VK_ATTACHMENT_STORE_OP_STORE :: VkAttachmentStoreOp
pattern VK_ATTACHMENT_STORE_OP_DONT_CARE :: VkAttachmentStoreOp
type VkAttachmentDescriptionFlagBits = VkAttachmentDescriptionBitmask FlagBit
type VkAttachmentDescriptionFlags = VkAttachmentDescriptionBitmask FlagMask
-- |
-- typedef struct VkAttachmentReference {
-- uint32_t attachment;
-- VkImageLayout layout;
-- } VkAttachmentReference;
--
--
-- VkAttachmentReference registry at www.khronos.org
type VkAttachmentReference = VkStruct VkAttachmentReference'
-- |
-- typedef struct VkComponentMapping {
-- VkComponentSwizzle r;
-- VkComponentSwizzle g;
-- VkComponentSwizzle b;
-- VkComponentSwizzle a;
-- } VkComponentMapping;
--
--
-- VkComponentMapping registry at www.khronos.org
type VkComponentMapping = VkStruct VkComponentMapping'
-- | type = enum
--
-- VkComponentSwizzle registry at www.khronos.org
newtype VkComponentSwizzle
VkComponentSwizzle :: Int32 -> VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_IDENTITY :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_ZERO :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_ONE :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_R :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_G :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_B :: VkComponentSwizzle
pattern VK_COMPONENT_SWIZZLE_A :: VkComponentSwizzle
newtype VkDependencyBitmask (a :: FlagType)
VkDependencyBitmask :: VkFlags -> VkDependencyBitmask
pattern VkDependencyFlagBits :: VkFlags -> VkDependencyBitmask FlagBit
pattern VkDependencyFlags :: VkFlags -> VkDependencyBitmask FlagMask
-- | Dependency is per pixel region
--
-- bitpos = 0
pattern VK_DEPENDENCY_BY_REGION_BIT :: VkDependencyBitmask a
type VkDependencyFlagBits = VkDependencyBitmask FlagBit
type VkDependencyFlags = VkDependencyBitmask FlagMask
-- |
-- typedef struct VkInputAttachmentAspectReference {
-- uint32_t subpass;
-- uint32_t inputAttachmentIndex;
-- VkImageAspectFlags aspectMask;
-- } VkInputAttachmentAspectReference;
--
--
-- VkInputAttachmentAspectReference registry at www.khronos.org
type VkInputAttachmentAspectReference = VkStruct VkInputAttachmentAspectReference'
-- |
-- typedef struct VkPipelineTessellationDomainOriginStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkTessellationDomainOrigin domainOrigin;
-- } VkPipelineTessellationDomainOriginStateCreateInfo;
--
--
-- VkPipelineTessellationDomainOriginStateCreateInfo registry at
-- www.khronos.org
type VkPipelineTessellationDomainOriginStateCreateInfo = VkStruct VkPipelineTessellationDomainOriginStateCreateInfo'
-- |
-- typedef struct VkPipelineTessellationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineTessellationStateCreateFlags flags;
-- uint32_t patchControlPoints;
-- } VkPipelineTessellationStateCreateInfo;
--
--
-- VkPipelineTessellationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineTessellationStateCreateInfo = VkStruct VkPipelineTessellationStateCreateInfo'
-- | type = enum
--
-- VkPointClippingBehavior registry at www.khronos.org
newtype VkPointClippingBehavior
VkPointClippingBehavior :: Int32 -> VkPointClippingBehavior
pattern VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES :: VkPointClippingBehavior
pattern VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY :: VkPointClippingBehavior
newtype VkPointClippingBehaviorKHR
VkPointClippingBehaviorKHR :: VkFlags -> VkPointClippingBehaviorKHR
-- |
-- typedef struct VkRenderPassCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPassCreateFlags flags;
-- uint32_t attachmentCount;
-- const VkAttachmentDescription* pAttachments;
-- uint32_t subpassCount;
-- const VkSubpassDescription* pSubpasses;
-- uint32_t dependencyCount;
-- const VkSubpassDependency* pDependencies;
-- } VkRenderPassCreateInfo;
--
--
-- VkRenderPassCreateInfo registry at www.khronos.org
type VkRenderPassCreateInfo = VkStruct VkRenderPassCreateInfo'
-- |
-- typedef struct VkRenderPassInputAttachmentAspectCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t aspectReferenceCount;
-- const VkInputAttachmentAspectReference* pAspectReferences;
-- } VkRenderPassInputAttachmentAspectCreateInfo;
--
--
-- VkRenderPassInputAttachmentAspectCreateInfo registry at
-- www.khronos.org
type VkRenderPassInputAttachmentAspectCreateInfo = VkStruct VkRenderPassInputAttachmentAspectCreateInfo'
-- |
-- typedef struct VkSubpassDependency {
-- uint32_t srcSubpass;
-- uint32_t dstSubpass;
-- VkPipelineStageFlags srcStageMask;
-- VkPipelineStageFlags dstStageMask;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkDependencyFlags dependencyFlags;
-- } VkSubpassDependency;
--
--
-- VkSubpassDependency registry at www.khronos.org
type VkSubpassDependency = VkStruct VkSubpassDependency'
-- |
-- typedef struct VkSubpassDescription {
-- VkSubpassDescriptionFlags flags;
-- VkPipelineBindPoint pipelineBindPoint;
-- uint32_t inputAttachmentCount;
-- const VkAttachmentReference* pInputAttachments;
-- uint32_t colorAttachmentCount;
-- const VkAttachmentReference* pColorAttachments;
-- const VkAttachmentReference* pResolveAttachments;
-- const VkAttachmentReference* pDepthStencilAttachment;
-- uint32_t preserveAttachmentCount;
-- const uint32_t* pPreserveAttachments;
-- } VkSubpassDescription;
--
--
-- VkSubpassDescription registry at www.khronos.org
type VkSubpassDescription = VkStruct VkSubpassDescription'
-- | type = enum
--
-- VkSubpassContents registry at www.khronos.org
newtype VkSubpassContents
VkSubpassContents :: Int32 -> VkSubpassContents
pattern VK_SUBPASS_CONTENTS_INLINE :: VkSubpassContents
pattern VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS :: VkSubpassContents
newtype VkSubpassDescriptionBitmask (a :: FlagType)
VkSubpassDescriptionBitmask :: VkFlags -> VkSubpassDescriptionBitmask
pattern VkSubpassDescriptionFlagBits :: VkFlags -> VkSubpassDescriptionBitmask FlagBit
pattern VkSubpassDescriptionFlags :: VkFlags -> VkSubpassDescriptionBitmask FlagMask
type VkSubpassDescriptionFlagBits = VkSubpassDescriptionBitmask FlagBit
type VkSubpassDescriptionFlags = VkSubpassDescriptionBitmask FlagMask
-- | type = enum
--
-- VkTessellationDomainOrigin registry at www.khronos.org
newtype VkTessellationDomainOrigin
VkTessellationDomainOrigin :: Int32 -> VkTessellationDomainOrigin
pattern VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT :: VkTessellationDomainOrigin
pattern VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT :: VkTessellationDomainOrigin
newtype VkTessellationDomainOriginKHR
VkTessellationDomainOriginKHR :: VkFlags -> VkTessellationDomainOriginKHR
-- | bitpos = 7
pattern VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | bitpos = 8
pattern VK_IMAGE_CREATE_EXTENDED_USAGE_BIT :: VkImageCreateBitmask a
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO :: VkStructureType
pattern VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
pattern VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- |
-- typedef struct VkRenderPassMultiviewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t subpassCount;
-- const uint32_t* pViewMasks;
-- uint32_t dependencyCount;
-- const int32_t* pViewOffsets;
-- uint32_t correlationMaskCount;
-- const uint32_t* pCorrelationMasks;
-- } VkRenderPassMultiviewCreateInfo;
--
--
-- VkRenderPassMultiviewCreateInfo registry at www.khronos.org
type VkRenderPassMultiviewCreateInfo = VkStruct VkRenderPassMultiviewCreateInfo'
pattern VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES :: VkStructureType
-- | bitpos = 1
pattern VK_DEPENDENCY_VIEW_LOCAL_BIT :: VkDependencyBitmask a
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES :: VkStructureType
-- |
-- typedef struct VkProtectedSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 protectedSubmit;
-- } VkProtectedSubmitInfo;
--
--
-- VkProtectedSubmitInfo registry at www.khronos.org
type VkProtectedSubmitInfo = VkStruct VkProtectedSubmitInfo'
type VkGetDeviceQueue2 = "vkGetDeviceQueue2"
pattern VkGetDeviceQueue2 :: CString
-- | -- void vkGetDeviceQueue2 -- ( VkDevice device -- , const VkDeviceQueueInfo2* pQueueInfo -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue2 registry at www.khronos.org type HS_vkGetDeviceQueue2 = VkDevice " device" -> Ptr VkDeviceQueueInfo2 " pQueueInfo" -> Ptr VkQueue " pQueue" -> IO () type PFN_vkGetDeviceQueue2 = FunPtr HS_vkGetDeviceQueue2 -- |
-- void vkGetDeviceQueue2 -- ( VkDevice device -- , const VkDeviceQueueInfo2* pQueueInfo -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue2 <- vkGetDeviceProc @VkGetDeviceQueue2 vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue2 <- vkGetProc @VkGetDeviceQueue2 ---- -- Note: vkGetDeviceQueue2Unsafe and -- vkGetDeviceQueue2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue2 is an alias of -- vkGetDeviceQueue2Unsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueue2Safe. vkGetDeviceQueue2 :: VkDevice -> Ptr VkDeviceQueueInfo2 -> Ptr VkQueue -> IO () -- |
-- void vkGetDeviceQueue2 -- ( VkDevice device -- , const VkDeviceQueueInfo2* pQueueInfo -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue2 <- vkGetDeviceProc @VkGetDeviceQueue2 vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue2 <- vkGetProc @VkGetDeviceQueue2 ---- -- Note: vkGetDeviceQueue2Unsafe and -- vkGetDeviceQueue2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue2 is an alias of -- vkGetDeviceQueue2Unsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueue2Safe. vkGetDeviceQueue2Unsafe :: VkDevice -> Ptr VkDeviceQueueInfo2 -> Ptr VkQueue -> IO () -- |
-- void vkGetDeviceQueue2 -- ( VkDevice device -- , const VkDeviceQueueInfo2* pQueueInfo -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue2 registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue2 <- vkGetDeviceProc @VkGetDeviceQueue2 vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue2 <- vkGetProc @VkGetDeviceQueue2 ---- -- Note: vkGetDeviceQueue2Unsafe and -- vkGetDeviceQueue2Safe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue2 is an alias of -- vkGetDeviceQueue2Unsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueue2Safe. vkGetDeviceQueue2Safe :: VkDevice -> Ptr VkDeviceQueueInfo2 -> Ptr VkQueue -> IO () pattern VK_STRUCTURE_TYPE_PROTECTED_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_FEATURES :: VkStructureType pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROTECTED_MEMORY_PROPERTIES :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_INFO_2 :: VkStructureType -- | Queues may support protected operations -- -- bitpos = 4 pattern VK_QUEUE_PROTECTED_BIT :: VkQueueBitmask a -- | Queue is a protected-capable device queue -- -- bitpos = 0 pattern VK_DEVICE_QUEUE_CREATE_PROTECTED_BIT :: VkDeviceQueueCreateBitmask a -- | Memory is protected -- -- bitpos = 5 pattern VK_MEMORY_PROPERTY_PROTECTED_BIT :: VkMemoryPropertyBitmask a -- | Buffer requires protected memory -- -- bitpos = 3 pattern VK_BUFFER_CREATE_PROTECTED_BIT :: VkBufferCreateBitmask a -- | Image requires protected memory -- -- bitpos = 11 pattern VK_IMAGE_CREATE_PROTECTED_BIT :: VkImageCreateBitmask a -- | Command buffers allocated from pool are protected command buffers -- -- bitpos = 2 pattern VK_COMMAND_POOL_CREATE_PROTECTED_BIT :: VkCommandPoolCreateBitmask a -- | type = enum -- -- VkBorderColor registry at www.khronos.org newtype VkBorderColor VkBorderColor :: Int32 -> VkBorderColor pattern VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_INT_TRANSPARENT_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_INT_OPAQUE_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE :: VkBorderColor pattern VK_BORDER_COLOR_INT_OPAQUE_WHITE :: VkBorderColor -- | type = enum -- -- VkChromaLocation registry at www.khronos.org newtype VkChromaLocation VkChromaLocation :: Int32 -> VkChromaLocation pattern VK_CHROMA_LOCATION_COSITED_EVEN :: VkChromaLocation pattern VK_CHROMA_LOCATION_MIDPOINT :: VkChromaLocation newtype VkChromaLocationKHR VkChromaLocationKHR :: VkFlags -> VkChromaLocationKHR -- | type = enum -- -- VkCompareOp registry at www.khronos.org newtype VkCompareOp VkCompareOp :: Int32 -> VkCompareOp pattern VK_COMPARE_OP_NEVER :: VkCompareOp pattern VK_COMPARE_OP_LESS :: VkCompareOp pattern VK_COMPARE_OP_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_LESS_OR_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_GREATER :: VkCompareOp pattern VK_COMPARE_OP_NOT_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_GREATER_OR_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_ALWAYS :: VkCompareOp -- | type = enum -- -- VkFilter registry at www.khronos.org newtype VkFilter VkFilter :: Int32 -> VkFilter pattern VK_FILTER_NEAREST :: VkFilter pattern VK_FILTER_LINEAR :: VkFilter -- | type = enum -- -- VkSamplerAddressMode registry at www.khronos.org newtype VkSamplerAddressMode VkSamplerAddressMode :: Int32 -> VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER :: VkSamplerAddressMode -- | type = enum -- -- VkSamplerMipmapMode registry at www.khronos.org newtype VkSamplerMipmapMode VkSamplerMipmapMode :: Int32 -> VkSamplerMipmapMode -- | Choose nearest mip level pattern VK_SAMPLER_MIPMAP_MODE_NEAREST :: VkSamplerMipmapMode -- | Linear filter between mip levels pattern VK_SAMPLER_MIPMAP_MODE_LINEAR :: VkSamplerMipmapMode -- | type = enum -- -- VkSamplerReductionModeEXT registry at www.khronos.org newtype VkSamplerReductionModeEXT VkSamplerReductionModeEXT :: Int32 -> VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MIN_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MAX_EXT :: VkSamplerReductionModeEXT -- | type = enum -- -- VkSamplerYcbcrModelConversion registry at www.khronos.org newtype VkSamplerYcbcrModelConversion VkSamplerYcbcrModelConversion :: Int32 -> VkSamplerYcbcrModelConversion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY :: VkSamplerYcbcrModelConversion -- | just range expansion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY :: VkSamplerYcbcrModelConversion -- | aka HD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 :: VkSamplerYcbcrModelConversion -- | aka SD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 :: VkSamplerYcbcrModelConversion -- | aka UHD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 :: VkSamplerYcbcrModelConversion -- | type = enum -- -- VkSamplerYcbcrRange registry at www.khronos.org newtype VkSamplerYcbcrRange VkSamplerYcbcrRange :: Int32 -> VkSamplerYcbcrRange -- | Luma 0..1 maps to 0..255, chroma -0.5..0.5 to 1..255 (clamped) pattern VK_SAMPLER_YCBCR_RANGE_ITU_FULL :: VkSamplerYcbcrRange -- | Luma 0..1 maps to 16..235, chroma -0.5..0.5 to 16..240 pattern VK_SAMPLER_YCBCR_RANGE_ITU_NARROW :: VkSamplerYcbcrRange newtype VkSamplerCreateFlagBits VkSamplerCreateFlagBits :: VkFlags -> VkSamplerCreateFlagBits newtype VkSamplerYcbcrModelConversionKHR VkSamplerYcbcrModelConversionKHR :: VkFlags -> VkSamplerYcbcrModelConversionKHR newtype VkSamplerYcbcrRangeKHR VkSamplerYcbcrRangeKHR :: VkFlags -> VkSamplerYcbcrRangeKHR -- |
-- typedef struct VkSamplerCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerCreateFlags flags;
-- VkFilter magFilter;
-- VkFilter minFilter;
-- VkSamplerMipmapMode mipmapMode;
-- VkSamplerAddressMode addressModeU;
-- VkSamplerAddressMode addressModeV;
-- VkSamplerAddressMode addressModeW;
-- float mipLodBias;
-- VkBool32 anisotropyEnable;
-- float maxAnisotropy;
-- VkBool32 compareEnable;
-- VkCompareOp compareOp;
-- float minLod;
-- float maxLod;
-- VkBorderColor borderColor;
-- VkBool32 unnormalizedCoordinates;
-- } VkSamplerCreateInfo;
--
--
-- VkSamplerCreateInfo registry at www.khronos.org
type VkSamplerCreateInfo = VkStruct VkSamplerCreateInfo'
-- |
-- typedef struct VkSamplerYcbcrConversionCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkSamplerYcbcrModelConversion ycbcrModel;
-- VkSamplerYcbcrRange ycbcrRange;
-- VkComponentMapping components;
-- VkChromaLocation xChromaOffset;
-- VkChromaLocation yChromaOffset;
-- VkFilter chromaFilter;
-- VkBool32 forceExplicitReconstruction;
-- } VkSamplerYcbcrConversionCreateInfo;
--
--
-- VkSamplerYcbcrConversionCreateInfo registry at www.khronos.org
type VkSamplerYcbcrConversionCreateInfo = VkStruct VkSamplerYcbcrConversionCreateInfo'
-- |
-- typedef struct VkSamplerYcbcrConversionImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t combinedImageSamplerDescriptorCount;
-- } VkSamplerYcbcrConversionImageFormatProperties;
--
--
-- VkSamplerYcbcrConversionImageFormatProperties registry at
-- www.khronos.org
type VkSamplerYcbcrConversionImageFormatProperties = VkStruct VkSamplerYcbcrConversionImageFormatProperties'
-- |
-- typedef struct VkSamplerYcbcrConversionInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerYcbcrConversion conversion;
-- } VkSamplerYcbcrConversionInfo;
--
--
-- VkSamplerYcbcrConversionInfo registry at www.khronos.org
type VkSamplerYcbcrConversionInfo = VkStruct VkSamplerYcbcrConversionInfo'
type VkCreateSamplerYcbcrConversion = "vkCreateSamplerYcbcrConversion"
pattern VkCreateSamplerYcbcrConversion :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateSamplerYcbcrConversion -- ( VkDevice device -- , const VkSamplerYcbcrConversionCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSamplerYcbcrConversion* pYcbcrConversion -- ) ---- -- vkCreateSamplerYcbcrConversion registry at www.khronos.org type HS_vkCreateSamplerYcbcrConversion = VkDevice " device" -> Ptr VkSamplerYcbcrConversionCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSamplerYcbcrConversion " pYcbcrConversion" -> IO VkResult type PFN_vkCreateSamplerYcbcrConversion = FunPtr HS_vkCreateSamplerYcbcrConversion -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSamplerYcbcrConversion -- ( VkDevice device -- , const VkSamplerYcbcrConversionCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSamplerYcbcrConversion* pYcbcrConversion -- ) ---- -- vkCreateSamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSamplerYcbcrConversion <- vkGetDeviceProc @VkCreateSamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myCreateSamplerYcbcrConversion <- vkGetProc @VkCreateSamplerYcbcrConversion ---- -- Note: vkCreateSamplerYcbcrConversionUnsafe and -- vkCreateSamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateSamplerYcbcrConversion is an alias of -- vkCreateSamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerYcbcrConversionSafe. vkCreateSamplerYcbcrConversion :: VkDevice -> Ptr VkSamplerYcbcrConversionCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSamplerYcbcrConversion -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSamplerYcbcrConversion -- ( VkDevice device -- , const VkSamplerYcbcrConversionCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSamplerYcbcrConversion* pYcbcrConversion -- ) ---- -- vkCreateSamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSamplerYcbcrConversion <- vkGetDeviceProc @VkCreateSamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myCreateSamplerYcbcrConversion <- vkGetProc @VkCreateSamplerYcbcrConversion ---- -- Note: vkCreateSamplerYcbcrConversionUnsafe and -- vkCreateSamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateSamplerYcbcrConversion is an alias of -- vkCreateSamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerYcbcrConversionSafe. vkCreateSamplerYcbcrConversionUnsafe :: VkDevice -> Ptr VkSamplerYcbcrConversionCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSamplerYcbcrConversion -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSamplerYcbcrConversion -- ( VkDevice device -- , const VkSamplerYcbcrConversionCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSamplerYcbcrConversion* pYcbcrConversion -- ) ---- -- vkCreateSamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSamplerYcbcrConversion <- vkGetDeviceProc @VkCreateSamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myCreateSamplerYcbcrConversion <- vkGetProc @VkCreateSamplerYcbcrConversion ---- -- Note: vkCreateSamplerYcbcrConversionUnsafe and -- vkCreateSamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateSamplerYcbcrConversion is an alias of -- vkCreateSamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerYcbcrConversionSafe. vkCreateSamplerYcbcrConversionSafe :: VkDevice -> Ptr VkSamplerYcbcrConversionCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSamplerYcbcrConversion -> IO VkResult type VkDestroySamplerYcbcrConversion = "vkDestroySamplerYcbcrConversion" pattern VkDestroySamplerYcbcrConversion :: CString -- |
-- void vkDestroySamplerYcbcrConversion -- ( VkDevice device -- , VkSamplerYcbcrConversion ycbcrConversion -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySamplerYcbcrConversion registry at www.khronos.org type HS_vkDestroySamplerYcbcrConversion = VkDevice " device" -> VkSamplerYcbcrConversion " ycbcrConversion" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySamplerYcbcrConversion = FunPtr HS_vkDestroySamplerYcbcrConversion -- |
-- void vkDestroySamplerYcbcrConversion -- ( VkDevice device -- , VkSamplerYcbcrConversion ycbcrConversion -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySamplerYcbcrConversion <- vkGetDeviceProc @VkDestroySamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myDestroySamplerYcbcrConversion <- vkGetProc @VkDestroySamplerYcbcrConversion ---- -- Note: vkDestroySamplerYcbcrConversionUnsafe and -- vkDestroySamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroySamplerYcbcrConversion is an alias of -- vkDestroySamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySamplerYcbcrConversionSafe. vkDestroySamplerYcbcrConversion :: VkDevice -> VkSamplerYcbcrConversion -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySamplerYcbcrConversion -- ( VkDevice device -- , VkSamplerYcbcrConversion ycbcrConversion -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySamplerYcbcrConversion <- vkGetDeviceProc @VkDestroySamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myDestroySamplerYcbcrConversion <- vkGetProc @VkDestroySamplerYcbcrConversion ---- -- Note: vkDestroySamplerYcbcrConversionUnsafe and -- vkDestroySamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroySamplerYcbcrConversion is an alias of -- vkDestroySamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySamplerYcbcrConversionSafe. vkDestroySamplerYcbcrConversionUnsafe :: VkDevice -> VkSamplerYcbcrConversion -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySamplerYcbcrConversion -- ( VkDevice device -- , VkSamplerYcbcrConversion ycbcrConversion -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySamplerYcbcrConversion registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySamplerYcbcrConversion <- vkGetDeviceProc @VkDestroySamplerYcbcrConversion vkDevice ---- -- or less efficient: -- --
-- myDestroySamplerYcbcrConversion <- vkGetProc @VkDestroySamplerYcbcrConversion ---- -- Note: vkDestroySamplerYcbcrConversionUnsafe and -- vkDestroySamplerYcbcrConversionSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroySamplerYcbcrConversion is an alias of -- vkDestroySamplerYcbcrConversionUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySamplerYcbcrConversionSafe. vkDestroySamplerYcbcrConversionSafe :: VkDevice -> VkSamplerYcbcrConversion -> Ptr VkAllocationCallbacks -> IO () -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkSamplerReductionModeCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerReductionModeEXT reductionMode;
-- } VkSamplerReductionModeCreateInfoEXT;
--
--
-- VkSamplerReductionModeCreateInfoEXT registry at www.khronos.org
type VkSamplerReductionModeCreateInfoEXT = VkStruct VkSamplerReductionModeCreateInfoEXT'
-- | Alias for VkSamplerYcbcrConversionCreateInfo
type VkSamplerYcbcrConversionCreateInfoKHR = VkSamplerYcbcrConversionCreateInfo
-- | Alias for VkSamplerYcbcrConversionImageFormatProperties
type VkSamplerYcbcrConversionImageFormatPropertiesKHR = VkSamplerYcbcrConversionImageFormatProperties
-- | Alias for VkSamplerYcbcrConversionInfo
type VkSamplerYcbcrConversionInfoKHR = VkSamplerYcbcrConversionInfo
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES :: VkStructureType
pattern VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION :: VkObjectType
pattern VK_FORMAT_G8B8G8R8_422_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8G8_422_UNORM :: VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM :: VkFormat
pattern VK_FORMAT_G8_B8R8_2PLANE_420_UNORM :: VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM :: VkFormat
pattern VK_FORMAT_G8_B8R8_2PLANE_422_UNORM :: VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM :: VkFormat
pattern VK_FORMAT_R10X6_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R10X6G10X6_UNORM_2PACK16 :: VkFormat
pattern VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_R12X4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R12X4G12X4_UNORM_2PACK16 :: VkFormat
pattern VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16 :: VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16 :: VkFormat
pattern VK_FORMAT_G16B16G16R16_422_UNORM :: VkFormat
pattern VK_FORMAT_B16G16R16G16_422_UNORM :: VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM :: VkFormat
pattern VK_FORMAT_G16_B16R16_2PLANE_420_UNORM :: VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM :: VkFormat
pattern VK_FORMAT_G16_B16R16_2PLANE_422_UNORM :: VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM :: VkFormat
-- | bitpos = 4
pattern VK_IMAGE_ASPECT_PLANE_0_BIT :: VkImageAspectBitmask a
-- | bitpos = 5
pattern VK_IMAGE_ASPECT_PLANE_1_BIT :: VkImageAspectBitmask a
-- | bitpos = 6
pattern VK_IMAGE_ASPECT_PLANE_2_BIT :: VkImageAspectBitmask a
-- | bitpos = 9
pattern VK_IMAGE_CREATE_DISJOINT_BIT :: VkImageCreateBitmask a
-- | Format can have midpoint rather than cosited chroma samples
--
-- bitpos = 17
pattern VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT :: VkFormatFeatureBitmask a
-- | Format can be used with linear filtering whilst color conversion is
-- enabled
--
-- bitpos = 18
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT :: VkFormatFeatureBitmask a
-- | Format can have different chroma, min and mag filters
--
-- bitpos = 19
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT :: VkFormatFeatureBitmask a
-- | bitpos = 20
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT :: VkFormatFeatureBitmask a
-- | bitpos = 21
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT :: VkFormatFeatureBitmask a
-- | Format supports disjoint planes
--
-- bitpos = 22
pattern VK_FORMAT_FEATURE_DISJOINT_BIT :: VkFormatFeatureBitmask a
-- | Format can have cosited rather than midpoint chroma samples
--
-- bitpos = 23
pattern VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT :: VkFormatFeatureBitmask a
newtype VkDescriptorBindingBitmaskEXT (a :: FlagType)
VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT
pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit
pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 1
pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 2
pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
-- | bitpos = 3
pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a
newtype VkDescriptorPoolCreateBitmask (a :: FlagType)
VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask
pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit
pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask
-- | Descriptor sets may be freed individually
--
-- bitpos = 0
pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a
-- | type = enum
--
-- VkDescriptorType registry at www.khronos.org
newtype VkDescriptorType
VkDescriptorType :: Int32 -> VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType
pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType
-- | type = enum
--
-- VkDescriptorUpdateTemplateType registry at www.khronos.org
newtype VkDescriptorUpdateTemplateType
VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType
-- | Create descriptor update template for descriptor set updates
pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType
type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit
type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask
type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit
type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask
newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType)
VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask
pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit
pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask
type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit
type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask
newtype VkDescriptorUpdateTemplateTypeKHR
VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR
-- |
-- typedef struct VkDescriptorUpdateTemplateCreateInfo {
-- VkStructureType sType;
-- void* pNext;
-- VkDescriptorUpdateTemplateCreateFlags flags;
-- uint32_t descriptorUpdateEntryCount;
-- const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
-- VkDescriptorUpdateTemplateType templateType;
-- VkDescriptorSetLayout descriptorSetLayout;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkPipelineLayoutpipelineLayout;
-- uint32_t set;
-- } VkDescriptorUpdateTemplateCreateInfo;
--
--
-- VkDescriptorUpdateTemplateCreateInfo registry at
-- www.khronos.org
type VkDescriptorUpdateTemplateCreateInfo = VkStruct VkDescriptorUpdateTemplateCreateInfo'
-- |
-- typedef struct VkDescriptorUpdateTemplateEntry {
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- size_t offset;
-- size_t stride;
-- } VkDescriptorUpdateTemplateEntry;
--
--
-- VkDescriptorUpdateTemplateEntry registry at www.khronos.org
type VkDescriptorUpdateTemplateEntry = VkStruct VkDescriptorUpdateTemplateEntry'
type VkCreateDescriptorUpdateTemplate = "vkCreateDescriptorUpdateTemplate"
pattern VkCreateDescriptorUpdateTemplate :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateDescriptorUpdateTemplate -- ( VkDevice device -- , const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate -- ) ---- -- vkCreateDescriptorUpdateTemplate registry at www.khronos.org type HS_vkCreateDescriptorUpdateTemplate = VkDevice " device" -> Ptr VkDescriptorUpdateTemplateCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDescriptorUpdateTemplate " pDescriptorUpdateTemplate" -> IO VkResult type PFN_vkCreateDescriptorUpdateTemplate = FunPtr HS_vkCreateDescriptorUpdateTemplate -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorUpdateTemplate -- ( VkDevice device -- , const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate -- ) ---- -- vkCreateDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetDeviceProc @VkCreateDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetProc @VkCreateDescriptorUpdateTemplate ---- -- Note: vkCreateDescriptorUpdateTemplateUnsafe and -- vkCreateDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDescriptorUpdateTemplate is an alias of -- vkCreateDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorUpdateTemplateSafe. vkCreateDescriptorUpdateTemplate :: VkDevice -> Ptr VkDescriptorUpdateTemplateCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorUpdateTemplate -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorUpdateTemplate -- ( VkDevice device -- , const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate -- ) ---- -- vkCreateDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetDeviceProc @VkCreateDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetProc @VkCreateDescriptorUpdateTemplate ---- -- Note: vkCreateDescriptorUpdateTemplateUnsafe and -- vkCreateDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDescriptorUpdateTemplate is an alias of -- vkCreateDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorUpdateTemplateSafe. vkCreateDescriptorUpdateTemplateUnsafe :: VkDevice -> Ptr VkDescriptorUpdateTemplateCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorUpdateTemplate -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorUpdateTemplate -- ( VkDevice device -- , const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate -- ) ---- -- vkCreateDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetDeviceProc @VkCreateDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorUpdateTemplate <- vkGetProc @VkCreateDescriptorUpdateTemplate ---- -- Note: vkCreateDescriptorUpdateTemplateUnsafe and -- vkCreateDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkCreateDescriptorUpdateTemplate is an alias of -- vkCreateDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorUpdateTemplateSafe. vkCreateDescriptorUpdateTemplateSafe :: VkDevice -> Ptr VkDescriptorUpdateTemplateCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorUpdateTemplate -> IO VkResult type VkDestroyDescriptorUpdateTemplate = "vkDestroyDescriptorUpdateTemplate" pattern VkDestroyDescriptorUpdateTemplate :: CString -- |
-- void vkDestroyDescriptorUpdateTemplate -- ( VkDevice device -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorUpdateTemplate registry at www.khronos.org type HS_vkDestroyDescriptorUpdateTemplate = VkDevice " device" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDescriptorUpdateTemplate = FunPtr HS_vkDestroyDescriptorUpdateTemplate -- |
-- void vkDestroyDescriptorUpdateTemplate -- ( VkDevice device -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetDeviceProc @VkDestroyDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetProc @VkDestroyDescriptorUpdateTemplate ---- -- Note: vkDestroyDescriptorUpdateTemplateUnsafe and -- vkDestroyDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroyDescriptorUpdateTemplate is an alias of -- vkDestroyDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorUpdateTemplateSafe. vkDestroyDescriptorUpdateTemplate :: VkDevice -> VkDescriptorUpdateTemplate -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorUpdateTemplate -- ( VkDevice device -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetDeviceProc @VkDestroyDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetProc @VkDestroyDescriptorUpdateTemplate ---- -- Note: vkDestroyDescriptorUpdateTemplateUnsafe and -- vkDestroyDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroyDescriptorUpdateTemplate is an alias of -- vkDestroyDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorUpdateTemplateSafe. vkDestroyDescriptorUpdateTemplateUnsafe :: VkDevice -> VkDescriptorUpdateTemplate -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorUpdateTemplate -- ( VkDevice device -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorUpdateTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetDeviceProc @VkDestroyDescriptorUpdateTemplate vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorUpdateTemplate <- vkGetProc @VkDestroyDescriptorUpdateTemplate ---- -- Note: vkDestroyDescriptorUpdateTemplateUnsafe and -- vkDestroyDescriptorUpdateTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkDestroyDescriptorUpdateTemplate is an alias of -- vkDestroyDescriptorUpdateTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorUpdateTemplateSafe. vkDestroyDescriptorUpdateTemplateSafe :: VkDevice -> VkDescriptorUpdateTemplate -> Ptr VkAllocationCallbacks -> IO () type VkUpdateDescriptorSetWithTemplate = "vkUpdateDescriptorSetWithTemplate" pattern VkUpdateDescriptorSetWithTemplate :: CString -- |
-- void vkUpdateDescriptorSetWithTemplate -- ( VkDevice device -- , VkDescriptorSet descriptorSet -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const void* pData -- ) ---- -- vkUpdateDescriptorSetWithTemplate registry at www.khronos.org type HS_vkUpdateDescriptorSetWithTemplate = VkDevice " device" -> VkDescriptorSet " descriptorSet" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> Ptr Void " pData" -> IO () type PFN_vkUpdateDescriptorSetWithTemplate = FunPtr HS_vkUpdateDescriptorSetWithTemplate -- |
-- void vkUpdateDescriptorSetWithTemplate -- ( VkDevice device -- , VkDescriptorSet descriptorSet -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const void* pData -- ) ---- -- vkUpdateDescriptorSetWithTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetDeviceProc @VkUpdateDescriptorSetWithTemplate vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetProc @VkUpdateDescriptorSetWithTemplate ---- -- Note: vkUpdateDescriptorSetWithTemplateUnsafe and -- vkUpdateDescriptorSetWithTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkUpdateDescriptorSetWithTemplate is an alias of -- vkUpdateDescriptorSetWithTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetWithTemplateSafe. vkUpdateDescriptorSetWithTemplate :: VkDevice -> VkDescriptorSet -> VkDescriptorUpdateTemplate -> Ptr Void -> IO () -- |
-- void vkUpdateDescriptorSetWithTemplate -- ( VkDevice device -- , VkDescriptorSet descriptorSet -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const void* pData -- ) ---- -- vkUpdateDescriptorSetWithTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetDeviceProc @VkUpdateDescriptorSetWithTemplate vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetProc @VkUpdateDescriptorSetWithTemplate ---- -- Note: vkUpdateDescriptorSetWithTemplateUnsafe and -- vkUpdateDescriptorSetWithTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkUpdateDescriptorSetWithTemplate is an alias of -- vkUpdateDescriptorSetWithTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetWithTemplateSafe. vkUpdateDescriptorSetWithTemplateUnsafe :: VkDevice -> VkDescriptorSet -> VkDescriptorUpdateTemplate -> Ptr Void -> IO () -- |
-- void vkUpdateDescriptorSetWithTemplate -- ( VkDevice device -- , VkDescriptorSet descriptorSet -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const void* pData -- ) ---- -- vkUpdateDescriptorSetWithTemplate registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetDeviceProc @VkUpdateDescriptorSetWithTemplate vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSetWithTemplate <- vkGetProc @VkUpdateDescriptorSetWithTemplate ---- -- Note: vkUpdateDescriptorSetWithTemplateUnsafe and -- vkUpdateDescriptorSetWithTemplateSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkUpdateDescriptorSetWithTemplate is an alias of -- vkUpdateDescriptorSetWithTemplateUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetWithTemplateSafe. vkUpdateDescriptorSetWithTemplateSafe :: VkDevice -> VkDescriptorSet -> VkDescriptorUpdateTemplate -> Ptr Void -> IO () -- |
-- typedef struct VkDescriptorBufferInfo {
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkDescriptorBufferInfo;
--
--
-- VkDescriptorBufferInfo registry at www.khronos.org
type VkDescriptorBufferInfo = VkStruct VkDescriptorBufferInfo'
-- |
-- typedef struct VkDescriptorImageInfo {
-- VkSampler sampler;
-- VkImageView imageView;
-- VkImageLayout imageLayout;
-- } VkDescriptorImageInfo;
--
--
-- VkDescriptorImageInfo registry at www.khronos.org
type VkDescriptorImageInfo = VkStruct VkDescriptorImageInfo'
-- |
-- typedef struct VkDescriptorPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPoolCreateFlags flags;
-- uint32_t maxSets;
-- uint32_t poolSizeCount;
-- const VkDescriptorPoolSize* pPoolSizes;
-- } VkDescriptorPoolCreateInfo;
--
--
-- VkDescriptorPoolCreateInfo registry at www.khronos.org
type VkDescriptorPoolCreateInfo = VkStruct VkDescriptorPoolCreateInfo'
-- |
-- typedef struct VkDescriptorPoolSize {
-- VkDescriptorType type;
-- uint32_t descriptorCount;
-- } VkDescriptorPoolSize;
--
--
-- VkDescriptorPoolSize registry at www.khronos.org
type VkDescriptorPoolSize = VkStruct VkDescriptorPoolSize'
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- | Alias for VkDescriptorSetLayoutSupport
type VkDescriptorSetLayoutSupportKHR = VkDescriptorSetLayoutSupport
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
-- | Alias for VkDescriptorUpdateTemplateCreateInfo
type VkDescriptorUpdateTemplateCreateInfoKHR = VkDescriptorUpdateTemplateCreateInfo
-- | Alias for VkDescriptorUpdateTemplateEntry
type VkDescriptorUpdateTemplateEntryKHR = VkDescriptorUpdateTemplateEntry
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO :: VkStructureType
pattern VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE :: VkObjectType
newtype VkBufferCreateBitmask (a :: FlagType)
VkBufferCreateBitmask :: VkFlags -> VkBufferCreateBitmask
pattern VkBufferCreateFlagBits :: VkFlags -> VkBufferCreateBitmask FlagBit
pattern VkBufferCreateFlags :: VkFlags -> VkBufferCreateBitmask FlagMask
-- | Buffer should support sparse backing
--
-- bitpos = 0
pattern VK_BUFFER_CREATE_SPARSE_BINDING_BIT :: VkBufferCreateBitmask a
-- | Buffer should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT :: VkBufferCreateBitmask a
-- | Buffer should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse buffers
--
-- bitpos = 2
pattern VK_BUFFER_CREATE_SPARSE_ALIASED_BIT :: VkBufferCreateBitmask a
newtype VkBufferUsageBitmask (a :: FlagType)
VkBufferUsageBitmask :: VkFlags -> VkBufferUsageBitmask
pattern VkBufferUsageFlagBits :: VkFlags -> VkBufferUsageBitmask FlagBit
pattern VkBufferUsageFlags :: VkFlags -> VkBufferUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_BUFFER_USAGE_TRANSFER_SRC_BIT :: VkBufferUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_BUFFER_USAGE_TRANSFER_DST_BIT :: VkBufferUsageBitmask a
-- | Can be used as TBO
--
-- bitpos = 2
pattern VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as IBO
--
-- bitpos = 3
pattern VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as UBO
--
-- bitpos = 4
pattern VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as SSBO
--
-- bitpos = 5
pattern VK_BUFFER_USAGE_STORAGE_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as source of fixed-function index fetch (index buffer)
--
-- bitpos = 6
pattern VK_BUFFER_USAGE_INDEX_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be used as source of fixed-function vertex fetch (VBO)
--
-- bitpos = 7
pattern VK_BUFFER_USAGE_VERTEX_BUFFER_BIT :: VkBufferUsageBitmask a
-- | Can be the source of indirect parameters (e.g. indirect buffer,
-- parameter buffer)
--
-- bitpos = 8
pattern VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT :: VkBufferUsageBitmask a
type VkBufferCreateFlagBits = VkBufferCreateBitmask FlagBit
type VkBufferCreateFlags = VkBufferCreateBitmask FlagMask
type VkBufferUsageFlagBits = VkBufferUsageBitmask FlagBit
type VkBufferUsageFlags = VkBufferUsageBitmask FlagMask
newtype VkBufferViewCreateFlagBits
VkBufferViewCreateFlagBits :: VkFlags -> VkBufferViewCreateFlagBits
-- |
-- typedef struct VkExternalBufferProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalBufferProperties;
--
--
-- VkExternalBufferProperties registry at www.khronos.org
type VkExternalBufferProperties = VkStruct VkExternalBufferProperties'
-- |
-- typedef struct VkExternalImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalImageFormatProperties;
--
--
-- VkExternalImageFormatProperties registry at www.khronos.org
type VkExternalImageFormatProperties = VkStruct VkExternalImageFormatProperties'
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
-- |
-- typedef struct VkExternalMemoryProperties {
-- VkExternalMemoryFeatureFlags externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
-- } VkExternalMemoryProperties;
--
--
-- VkExternalMemoryProperties registry at www.khronos.org
type VkExternalMemoryProperties = VkStruct VkExternalMemoryProperties'
type VkGetPhysicalDeviceExternalBufferProperties = "vkGetPhysicalDeviceExternalBufferProperties"
pattern VkGetPhysicalDeviceExternalBufferProperties :: CString
-- | -- void vkGetPhysicalDeviceExternalBufferProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo -- , VkExternalBufferProperties* pExternalBufferProperties -- ) ---- -- vkGetPhysicalDeviceExternalBufferProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalBufferProperties = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalBufferInfo " pExternalBufferInfo" -> Ptr VkExternalBufferProperties " pExternalBufferProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalBufferProperties = FunPtr HS_vkGetPhysicalDeviceExternalBufferProperties -- |
-- void vkGetPhysicalDeviceExternalBufferProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo -- , VkExternalBufferProperties* pExternalBufferProperties -- ) ---- -- vkGetPhysicalDeviceExternalBufferProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalBufferProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetProc @VkGetPhysicalDeviceExternalBufferProperties ---- -- Note: -- vkGetPhysicalDeviceExternalBufferPropertiesUnsafe and -- vkGetPhysicalDeviceExternalBufferPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalBufferProperties is -- an alias of vkGetPhysicalDeviceExternalBufferPropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalBufferPropertiesSafe. vkGetPhysicalDeviceExternalBufferProperties :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalBufferInfo -> Ptr VkExternalBufferProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalBufferProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo -- , VkExternalBufferProperties* pExternalBufferProperties -- ) ---- -- vkGetPhysicalDeviceExternalBufferProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalBufferProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetProc @VkGetPhysicalDeviceExternalBufferProperties ---- -- Note: -- vkGetPhysicalDeviceExternalBufferPropertiesUnsafe and -- vkGetPhysicalDeviceExternalBufferPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalBufferProperties is -- an alias of vkGetPhysicalDeviceExternalBufferPropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalBufferPropertiesSafe. vkGetPhysicalDeviceExternalBufferPropertiesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalBufferInfo -> Ptr VkExternalBufferProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalBufferProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo -- , VkExternalBufferProperties* pExternalBufferProperties -- ) ---- -- vkGetPhysicalDeviceExternalBufferProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalBufferProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalBufferProperties <- vkGetProc @VkGetPhysicalDeviceExternalBufferProperties ---- -- Note: -- vkGetPhysicalDeviceExternalBufferPropertiesUnsafe and -- vkGetPhysicalDeviceExternalBufferPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalBufferProperties is -- an alias of vkGetPhysicalDeviceExternalBufferPropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalBufferPropertiesSafe. vkGetPhysicalDeviceExternalBufferPropertiesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalBufferInfo -> Ptr VkExternalBufferProperties -> IO () -- | Alias for VkExternalBufferProperties type VkExternalBufferPropertiesKHR = VkExternalBufferProperties -- |
-- typedef struct VkExternalFenceProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalFenceHandleTypeFlags compatibleHandleTypes;
-- VkExternalFenceFeatureFlags externalFenceFeatures;
-- } VkExternalFenceProperties;
--
--
-- VkExternalFenceProperties registry at www.khronos.org
type VkExternalFenceProperties = VkStruct VkExternalFenceProperties'
-- | Alias for VkExternalFenceProperties
type VkExternalFencePropertiesKHR = VkExternalFenceProperties
-- | Alias for VkExternalImageFormatProperties
type VkExternalImageFormatPropertiesKHR = VkExternalImageFormatProperties
-- |
-- typedef struct VkExternalImageFormatPropertiesNV {
-- VkImageFormatProperties imageFormatProperties;
-- VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
-- } VkExternalImageFormatPropertiesNV;
--
--
-- VkExternalImageFormatPropertiesNV registry at www.khronos.org
type VkExternalImageFormatPropertiesNV = VkStruct VkExternalImageFormatPropertiesNV'
-- |
-- typedef struct VkExternalMemoryBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryBufferCreateInfo;
--
--
-- VkExternalMemoryBufferCreateInfo registry at www.khronos.org
type VkExternalMemoryBufferCreateInfo = VkStruct VkExternalMemoryBufferCreateInfo'
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryImageCreateInfo;
--
--
-- VkExternalMemoryImageCreateInfo registry at www.khronos.org
type VkExternalMemoryImageCreateInfo = VkStruct VkExternalMemoryImageCreateInfo'
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- | Alias for VkExternalMemoryProperties
type VkExternalMemoryPropertiesKHR = VkExternalMemoryProperties
-- |
-- typedef struct VkExternalSemaphoreProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
-- VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
-- } VkExternalSemaphoreProperties;
--
--
-- VkExternalSemaphoreProperties registry at www.khronos.org
type VkExternalSemaphoreProperties = VkStruct VkExternalSemaphoreProperties'
-- | Alias for VkExternalSemaphoreProperties
type VkExternalSemaphorePropertiesKHR = VkExternalSemaphoreProperties
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES :: VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES :: VkStructureType
pattern VK_LUID_SIZE :: (Num a, Eq a) => a
-- |
-- typedef struct VkExportMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExportMemoryAllocateInfo;
--
--
-- VkExportMemoryAllocateInfo registry at www.khronos.org
type VkExportMemoryAllocateInfo = VkStruct VkExportMemoryAllocateInfo'
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
pattern VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_ERROR_INVALID_EXTERNAL_HANDLE :: VkResult
pattern VK_QUEUE_FAMILY_EXTERNAL :: Word32
type VkGetPhysicalDeviceExternalFenceProperties = "vkGetPhysicalDeviceExternalFenceProperties"
pattern VkGetPhysicalDeviceExternalFenceProperties :: CString
-- | -- void vkGetPhysicalDeviceExternalFenceProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo -- , VkExternalFenceProperties* pExternalFenceProperties -- ) ---- -- vkGetPhysicalDeviceExternalFenceProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalFenceProperties = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalFenceInfo " pExternalFenceInfo" -> Ptr VkExternalFenceProperties " pExternalFenceProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalFenceProperties = FunPtr HS_vkGetPhysicalDeviceExternalFenceProperties -- |
-- void vkGetPhysicalDeviceExternalFenceProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo -- , VkExternalFenceProperties* pExternalFenceProperties -- ) ---- -- vkGetPhysicalDeviceExternalFenceProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalFenceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetProc @VkGetPhysicalDeviceExternalFenceProperties ---- -- Note: vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- and vkGetPhysicalDeviceExternalFencePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalFenceProperties is -- an alias of vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalFencePropertiesSafe. vkGetPhysicalDeviceExternalFenceProperties :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalFenceInfo -> Ptr VkExternalFenceProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalFenceProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo -- , VkExternalFenceProperties* pExternalFenceProperties -- ) ---- -- vkGetPhysicalDeviceExternalFenceProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalFenceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetProc @VkGetPhysicalDeviceExternalFenceProperties ---- -- Note: vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- and vkGetPhysicalDeviceExternalFencePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalFenceProperties is -- an alias of vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalFencePropertiesSafe. vkGetPhysicalDeviceExternalFencePropertiesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalFenceInfo -> Ptr VkExternalFenceProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalFenceProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo -- , VkExternalFenceProperties* pExternalFenceProperties -- ) ---- -- vkGetPhysicalDeviceExternalFenceProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalFenceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalFenceProperties <- vkGetProc @VkGetPhysicalDeviceExternalFenceProperties ---- -- Note: vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- and vkGetPhysicalDeviceExternalFencePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalFenceProperties is -- an alias of vkGetPhysicalDeviceExternalFencePropertiesUnsafe -- when the useUnsafeFFIDefault cabal flag is enabled; -- otherwise, it is an alias of -- vkGetPhysicalDeviceExternalFencePropertiesSafe. vkGetPhysicalDeviceExternalFencePropertiesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalFenceInfo -> Ptr VkExternalFenceProperties -> IO () pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES :: VkStructureType -- |
-- typedef struct VkExportFenceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlags handleTypes;
-- } VkExportFenceCreateInfo;
--
--
-- VkExportFenceCreateInfo registry at www.khronos.org
type VkExportFenceCreateInfo = VkStruct VkExportFenceCreateInfo'
newtype VkFenceCreateBitmask (a :: FlagType)
VkFenceCreateBitmask :: VkFlags -> VkFenceCreateBitmask
pattern VkFenceCreateFlagBits :: VkFlags -> VkFenceCreateBitmask FlagBit
pattern VkFenceCreateFlags :: VkFlags -> VkFenceCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_CREATE_SIGNALED_BIT :: VkFenceCreateBitmask a
newtype VkFenceImportBitmask (a :: FlagType)
VkFenceImportBitmask :: VkFlags -> VkFenceImportBitmask
pattern VkFenceImportFlagBits :: VkFlags -> VkFenceImportBitmask FlagBit
pattern VkFenceImportFlags :: VkFlags -> VkFenceImportBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_IMPORT_TEMPORARY_BIT :: VkFenceImportBitmask a
type VkFenceCreateFlagBits = VkFenceCreateBitmask FlagBit
type VkFenceCreateFlags = VkFenceCreateBitmask FlagMask
type VkFenceImportFlagBits = VkFenceImportBitmask FlagBit
newtype VkFenceImportFlagBitsKHR
VkFenceImportFlagBitsKHR :: VkFlags -> VkFenceImportFlagBitsKHR
type VkFenceImportFlags = VkFenceImportBitmask FlagMask
-- |
-- typedef struct VkFenceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFenceCreateFlags flags;
-- } VkFenceCreateInfo;
--
--
-- VkFenceCreateInfo registry at www.khronos.org
type VkFenceCreateInfo = VkStruct VkFenceCreateInfo'
pattern VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkExportSemaphoreCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlags handleTypes;
-- } VkExportSemaphoreCreateInfo;
--
--
-- VkExportSemaphoreCreateInfo registry at www.khronos.org
type VkExportSemaphoreCreateInfo = VkStruct VkExportSemaphoreCreateInfo'
-- |
-- typedef struct VkSemaphoreCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphoreCreateFlags flags;
-- } VkSemaphoreCreateInfo;
--
--
-- VkSemaphoreCreateInfo registry at www.khronos.org
type VkSemaphoreCreateInfo = VkStruct VkSemaphoreCreateInfo'
newtype VkSemaphoreImportBitmask (a :: FlagType)
VkSemaphoreImportBitmask :: VkFlags -> VkSemaphoreImportBitmask
pattern VkSemaphoreImportFlagBits :: VkFlags -> VkSemaphoreImportBitmask FlagBit
pattern VkSemaphoreImportFlags :: VkFlags -> VkSemaphoreImportBitmask FlagMask
-- | bitpos = 0
pattern VK_SEMAPHORE_IMPORT_TEMPORARY_BIT :: VkSemaphoreImportBitmask a
type VkSemaphoreImportFlagBits = VkSemaphoreImportBitmask FlagBit
newtype VkSemaphoreImportFlagBitsKHR
VkSemaphoreImportFlagBitsKHR :: VkFlags -> VkSemaphoreImportFlagBitsKHR
type VkSemaphoreImportFlags = VkSemaphoreImportBitmask FlagMask
pattern VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO :: VkStructureType
type VkGetPhysicalDeviceExternalSemaphoreProperties = "vkGetPhysicalDeviceExternalSemaphoreProperties"
pattern VkGetPhysicalDeviceExternalSemaphoreProperties :: CString
-- | -- void vkGetPhysicalDeviceExternalSemaphoreProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo -- , VkExternalSemaphoreProperties* pExternalSemaphoreProperties -- ) ---- -- vkGetPhysicalDeviceExternalSemaphoreProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalSemaphoreProperties = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalSemaphoreInfo " pExternalSemaphoreInfo" -> Ptr VkExternalSemaphoreProperties " pExternalSemaphoreProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalSemaphoreProperties = FunPtr HS_vkGetPhysicalDeviceExternalSemaphoreProperties -- |
-- void vkGetPhysicalDeviceExternalSemaphoreProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo -- , VkExternalSemaphoreProperties* pExternalSemaphoreProperties -- ) ---- -- vkGetPhysicalDeviceExternalSemaphoreProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalSemaphoreProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetProc @VkGetPhysicalDeviceExternalSemaphoreProperties ---- -- Note: -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe and -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalSemaphoreProperties -- is an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe. vkGetPhysicalDeviceExternalSemaphoreProperties :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalSemaphoreInfo -> Ptr VkExternalSemaphoreProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalSemaphoreProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo -- , VkExternalSemaphoreProperties* pExternalSemaphoreProperties -- ) ---- -- vkGetPhysicalDeviceExternalSemaphoreProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalSemaphoreProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetProc @VkGetPhysicalDeviceExternalSemaphoreProperties ---- -- Note: -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe and -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalSemaphoreProperties -- is an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe. vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalSemaphoreInfo -> Ptr VkExternalSemaphoreProperties -> IO () -- |
-- void vkGetPhysicalDeviceExternalSemaphoreProperties -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo -- , VkExternalSemaphoreProperties* pExternalSemaphoreProperties -- ) ---- -- vkGetPhysicalDeviceExternalSemaphoreProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetInstanceProc @VkGetPhysicalDeviceExternalSemaphoreProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceExternalSemaphoreProperties <- vkGetProc @VkGetPhysicalDeviceExternalSemaphoreProperties ---- -- Note: -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe and -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceExternalSemaphoreProperties -- is an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceExternalSemaphorePropertiesSafe. vkGetPhysicalDeviceExternalSemaphorePropertiesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceExternalSemaphoreInfo -> Ptr VkExternalSemaphoreProperties -> IO () pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES :: VkStructureType type VkGetDescriptorSetLayoutSupport = "vkGetDescriptorSetLayoutSupport" pattern VkGetDescriptorSetLayoutSupport :: CString -- |
-- void vkGetDescriptorSetLayoutSupport -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , VkDescriptorSetLayoutSupport* pSupport -- ) ---- -- vkGetDescriptorSetLayoutSupport registry at www.khronos.org type HS_vkGetDescriptorSetLayoutSupport = VkDevice " device" -> Ptr VkDescriptorSetLayoutCreateInfo " pCreateInfo" -> Ptr VkDescriptorSetLayoutSupport " pSupport" -> IO () type PFN_vkGetDescriptorSetLayoutSupport = FunPtr HS_vkGetDescriptorSetLayoutSupport -- |
-- void vkGetDescriptorSetLayoutSupport -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , VkDescriptorSetLayoutSupport* pSupport -- ) ---- -- vkGetDescriptorSetLayoutSupport registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetDeviceProc @VkGetDescriptorSetLayoutSupport vkDevice ---- -- or less efficient: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetProc @VkGetDescriptorSetLayoutSupport ---- -- Note: vkGetDescriptorSetLayoutSupportUnsafe and -- vkGetDescriptorSetLayoutSupportSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDescriptorSetLayoutSupport is an alias of -- vkGetDescriptorSetLayoutSupportUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDescriptorSetLayoutSupportSafe. vkGetDescriptorSetLayoutSupport :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkDescriptorSetLayoutSupport -> IO () -- |
-- void vkGetDescriptorSetLayoutSupport -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , VkDescriptorSetLayoutSupport* pSupport -- ) ---- -- vkGetDescriptorSetLayoutSupport registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetDeviceProc @VkGetDescriptorSetLayoutSupport vkDevice ---- -- or less efficient: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetProc @VkGetDescriptorSetLayoutSupport ---- -- Note: vkGetDescriptorSetLayoutSupportUnsafe and -- vkGetDescriptorSetLayoutSupportSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDescriptorSetLayoutSupport is an alias of -- vkGetDescriptorSetLayoutSupportUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDescriptorSetLayoutSupportSafe. vkGetDescriptorSetLayoutSupportUnsafe :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkDescriptorSetLayoutSupport -> IO () -- |
-- void vkGetDescriptorSetLayoutSupport -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , VkDescriptorSetLayoutSupport* pSupport -- ) ---- -- vkGetDescriptorSetLayoutSupport registry at www.khronos.org -- -- Note: When useNativeFFI-1-1 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetDeviceProc @VkGetDescriptorSetLayoutSupport vkDevice ---- -- or less efficient: -- --
-- myGetDescriptorSetLayoutSupport <- vkGetProc @VkGetDescriptorSetLayoutSupport ---- -- Note: vkGetDescriptorSetLayoutSupportUnsafe and -- vkGetDescriptorSetLayoutSupportSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkGetDescriptorSetLayoutSupport is an alias of -- vkGetDescriptorSetLayoutSupportUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDescriptorSetLayoutSupportSafe. vkGetDescriptorSetLayoutSupportSafe :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkDescriptorSetLayoutSupport -> IO () pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT :: VkStructureType pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_DRAW_PARAMETER_FEATURES :: VkStructureType instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDescriptorSetLayoutSupport" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalSemaphoreProperties" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalFenceProperties" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalBufferProperties" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkUpdateDescriptorSetWithTemplate" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDescriptorUpdateTemplate" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDescriptorUpdateTemplate" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySamplerYcbcrConversion" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSamplerYcbcrConversion" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceQueue2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkTrimCommandPool" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSparseImageFormatProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceMemoryProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceQueueFamilyProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceImageFormatProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFormatProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceProperties2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFeatures2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageSparseMemoryRequirements2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetBufferMemoryRequirements2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageMemoryRequirements2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumeratePhysicalDeviceGroups" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDispatchBase" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetDeviceMask" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceGroupPeerMemoryFeatures" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindImageMemory2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindBufferMemory2" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumerateInstanceVersion" module Graphics.Vulkan.Ext.VK_KHR_variable_pointers -- | Alias for VkPhysicalDeviceVariablePointerFeatures type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures type VK_KHR_VARIABLE_POINTERS_SPEC_VERSION = 1 pattern VK_KHR_VARIABLE_POINTERS_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_VARIABLE_POINTERS_EXTENSION_NAME = "VK_KHR_variable_pointers" pattern VK_KHR_VARIABLE_POINTERS_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR :: () => () => VkStructureType module Graphics.Vulkan.Ext.VK_KHR_sampler_ycbcr_conversion -- | Alias for VkBindImagePlaneMemoryInfo type VkBindImagePlaneMemoryInfoKHR = VkBindImagePlaneMemoryInfo -- | type = enum -- -- VkChromaLocation registry at www.khronos.org newtype VkChromaLocation VkChromaLocation :: Int32 -> VkChromaLocation pattern VK_CHROMA_LOCATION_COSITED_EVEN :: VkChromaLocation pattern VK_CHROMA_LOCATION_MIDPOINT :: VkChromaLocation newtype VkChromaLocationKHR VkChromaLocationKHR :: VkFlags -> VkChromaLocationKHR -- | Alias for VkImagePlaneMemoryRequirementsInfo type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo -- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures -- | Alias for VkSamplerYcbcrConversionCreateInfo type VkSamplerYcbcrConversionCreateInfoKHR = VkSamplerYcbcrConversionCreateInfo -- | Alias for VkSamplerYcbcrConversionImageFormatProperties type VkSamplerYcbcrConversionImageFormatPropertiesKHR = VkSamplerYcbcrConversionImageFormatProperties -- | Alias for VkSamplerYcbcrConversionInfo type VkSamplerYcbcrConversionInfoKHR = VkSamplerYcbcrConversionInfo -- | type = enum -- -- VkSamplerAddressMode registry at www.khronos.org newtype VkSamplerAddressMode VkSamplerAddressMode :: Int32 -> VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER :: VkSamplerAddressMode -- | type = enum -- -- VkSamplerMipmapMode registry at www.khronos.org newtype VkSamplerMipmapMode VkSamplerMipmapMode :: Int32 -> VkSamplerMipmapMode -- | Choose nearest mip level pattern VK_SAMPLER_MIPMAP_MODE_NEAREST :: VkSamplerMipmapMode -- | Linear filter between mip levels pattern VK_SAMPLER_MIPMAP_MODE_LINEAR :: VkSamplerMipmapMode -- | type = enum -- -- VkSamplerReductionModeEXT registry at www.khronos.org newtype VkSamplerReductionModeEXT VkSamplerReductionModeEXT :: Int32 -> VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MIN_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MAX_EXT :: VkSamplerReductionModeEXT -- | type = enum -- -- VkSamplerYcbcrModelConversion registry at www.khronos.org newtype VkSamplerYcbcrModelConversion VkSamplerYcbcrModelConversion :: Int32 -> VkSamplerYcbcrModelConversion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY :: VkSamplerYcbcrModelConversion -- | just range expansion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY :: VkSamplerYcbcrModelConversion -- | aka HD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 :: VkSamplerYcbcrModelConversion -- | aka SD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 :: VkSamplerYcbcrModelConversion -- | aka UHD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 :: VkSamplerYcbcrModelConversion -- | type = enum -- -- VkSamplerYcbcrRange registry at www.khronos.org newtype VkSamplerYcbcrRange VkSamplerYcbcrRange :: Int32 -> VkSamplerYcbcrRange -- | Luma 0..1 maps to 0..255, chroma -0.5..0.5 to 1..255 (clamped) pattern VK_SAMPLER_YCBCR_RANGE_ITU_FULL :: VkSamplerYcbcrRange -- | Luma 0..1 maps to 16..235, chroma -0.5..0.5 to 16..240 pattern VK_SAMPLER_YCBCR_RANGE_ITU_NARROW :: VkSamplerYcbcrRange newtype VkSamplerCreateFlagBits VkSamplerCreateFlagBits :: VkFlags -> VkSamplerCreateFlagBits newtype VkSamplerYcbcrModelConversionKHR VkSamplerYcbcrModelConversionKHR :: VkFlags -> VkSamplerYcbcrModelConversionKHR newtype VkSamplerYcbcrRangeKHR VkSamplerYcbcrRangeKHR :: VkFlags -> VkSamplerYcbcrRangeKHR type VkCreateSamplerYcbcrConversionKHR = "vkCreateSamplerYcbcrConversionKHR" pattern VkCreateSamplerYcbcrConversionKHR :: CString -- | This is an alias for vkCreateSamplerYcbcrConversion. -- -- Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSamplerYcbcrConversionKHR -- ( VkDevice device -- , const VkSamplerYcbcrConversionCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSamplerYcbcrConversion* pYcbcrConversion -- ) ---- -- vkCreateSamplerYcbcrConversionKHR registry at www.khronos.org type HS_vkCreateSamplerYcbcrConversionKHR = VkDevice " device" -> Ptr VkSamplerYcbcrConversionCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSamplerYcbcrConversion " pYcbcrConversion" -> IO VkResult type PFN_vkCreateSamplerYcbcrConversionKHR = FunPtr HS_vkCreateSamplerYcbcrConversionKHR type VkDestroySamplerYcbcrConversionKHR = "vkDestroySamplerYcbcrConversionKHR" pattern VkDestroySamplerYcbcrConversionKHR :: CString -- | This is an alias for vkDestroySamplerYcbcrConversion. -- --
-- void vkDestroySamplerYcbcrConversionKHR -- ( VkDevice device -- , VkSamplerYcbcrConversion ycbcrConversion -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySamplerYcbcrConversionKHR registry at www.khronos.org type HS_vkDestroySamplerYcbcrConversionKHR = VkDevice " device" -> VkSamplerYcbcrConversion " ycbcrConversion" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySamplerYcbcrConversionKHR = FunPtr HS_vkDestroySamplerYcbcrConversionKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | type = enum -- -- VkComponentSwizzle registry at www.khronos.org newtype VkComponentSwizzle VkComponentSwizzle :: Int32 -> VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_IDENTITY :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_ZERO :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_ONE :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_R :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_G :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_B :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_A :: VkComponentSwizzle -- | type = enum -- -- VkFilter registry at www.khronos.org newtype VkFilter VkFilter :: Int32 -> VkFilter pattern VK_FILTER_NEAREST :: VkFilter pattern VK_FILTER_LINEAR :: VkFilter -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkComponentMapping {
-- VkComponentSwizzle r;
-- VkComponentSwizzle g;
-- VkComponentSwizzle b;
-- VkComponentSwizzle a;
-- } VkComponentMapping;
--
--
-- VkComponentMapping registry at www.khronos.org
type VkComponentMapping = VkStruct VkComponentMapping'
-- |
-- typedef struct VkSamplerCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerCreateFlags flags;
-- VkFilter magFilter;
-- VkFilter minFilter;
-- VkSamplerMipmapMode mipmapMode;
-- VkSamplerAddressMode addressModeU;
-- VkSamplerAddressMode addressModeV;
-- VkSamplerAddressMode addressModeW;
-- float mipLodBias;
-- VkBool32 anisotropyEnable;
-- float maxAnisotropy;
-- VkBool32 compareEnable;
-- VkCompareOp compareOp;
-- float minLod;
-- float maxLod;
-- VkBorderColor borderColor;
-- VkBool32 unnormalizedCoordinates;
-- } VkSamplerCreateInfo;
--
--
-- VkSamplerCreateInfo registry at www.khronos.org
type VkSamplerCreateInfo = VkStruct VkSamplerCreateInfo'
-- |
-- typedef struct VkSamplerReductionModeCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerReductionModeEXT reductionMode;
-- } VkSamplerReductionModeCreateInfoEXT;
--
--
-- VkSamplerReductionModeCreateInfoEXT registry at www.khronos.org
type VkSamplerReductionModeCreateInfoEXT = VkStruct VkSamplerReductionModeCreateInfoEXT'
-- |
-- typedef struct VkSamplerYcbcrConversionCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkSamplerYcbcrModelConversion ycbcrModel;
-- VkSamplerYcbcrRange ycbcrRange;
-- VkComponentMapping components;
-- VkChromaLocation xChromaOffset;
-- VkChromaLocation yChromaOffset;
-- VkFilter chromaFilter;
-- VkBool32 forceExplicitReconstruction;
-- } VkSamplerYcbcrConversionCreateInfo;
--
--
-- VkSamplerYcbcrConversionCreateInfo registry at www.khronos.org
type VkSamplerYcbcrConversionCreateInfo = VkStruct VkSamplerYcbcrConversionCreateInfo'
-- |
-- typedef struct VkSamplerYcbcrConversionImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t combinedImageSamplerDescriptorCount;
-- } VkSamplerYcbcrConversionImageFormatProperties;
--
--
-- VkSamplerYcbcrConversionImageFormatProperties registry at
-- www.khronos.org
type VkSamplerYcbcrConversionImageFormatProperties = VkStruct VkSamplerYcbcrConversionImageFormatProperties'
-- |
-- typedef struct VkSamplerYcbcrConversionInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerYcbcrConversion conversion;
-- } VkSamplerYcbcrConversionInfo;
--
--
-- VkSamplerYcbcrConversionInfo registry at www.khronos.org
type VkSamplerYcbcrConversionInfo = VkStruct VkSamplerYcbcrConversionInfo'
type VK_KHR_SAMPLER_YCBCR_CONVERSION_SPEC_VERSION = 1
pattern VK_KHR_SAMPLER_YCBCR_CONVERSION_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME = "VK_KHR_sampler_ycbcr_conversion"
pattern VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_IMAGE_PLANE_MEMORY_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_PLANE_MEMORY_REQUIREMENTS_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_YCBCR_CONVERSION_IMAGE_FORMAT_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR_EXT :: () => () => VkDebugReportObjectTypeEXT
pattern VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_KHR :: () => () => VkObjectType
pattern VK_FORMAT_G8B8G8R8_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_B8G8R8G8_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_420_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G8_B8R8_2PLANE_420_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G8_B8R8_2PLANE_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G8_B8_R8_3PLANE_444_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_R10X6_UNORM_PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_R10X6G10X6_UNORM_2PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_R10X6G10X6B10X6A10X6_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6B10X6G10X6R10X6_422_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_B10X6G10X6R10X6G10X6_422_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6_B10X6R10X6_2PLANE_420_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_422_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6_B10X6R10X6_2PLANE_422_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G10X6_B10X6_R10X6_3PLANE_444_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_R12X4_UNORM_PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_R12X4G12X4_UNORM_2PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_R12X4G12X4B12X4A12X4_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4B12X4G12X4R12X4_422_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_B12X4G12X4R12X4G12X4_422_UNORM_4PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_420_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4_B12X4R12X4_2PLANE_420_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_422_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4_B12X4R12X4_2PLANE_422_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G12X4_B12X4_R12X4_3PLANE_444_UNORM_3PACK16_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16B16G16R16_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_B16G16R16G16_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_420_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16_B16R16_2PLANE_420_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16_B16R16_2PLANE_422_UNORM_KHR :: () => () => VkFormat
pattern VK_FORMAT_G16_B16_R16_3PLANE_444_UNORM_KHR :: () => () => VkFormat
pattern VK_IMAGE_ASPECT_PLANE_0_BIT_KHR :: forall (a :: FlagType). () => () => VkImageAspectBitmask a
pattern VK_IMAGE_ASPECT_PLANE_1_BIT_KHR :: forall (a :: FlagType). () => () => VkImageAspectBitmask a
pattern VK_IMAGE_ASPECT_PLANE_2_BIT_KHR :: forall (a :: FlagType). () => () => VkImageAspectBitmask a
pattern VK_IMAGE_CREATE_DISJOINT_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a
pattern VK_FORMAT_FEATURE_MIDPOINT_CHROMA_SAMPLES_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_LINEAR_FILTER_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_SEPARATE_RECONSTRUCTION_FILTER_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_YCBCR_CONVERSION_CHROMA_RECONSTRUCTION_EXPLICIT_FORCEABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_DISJOINT_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_FORMAT_FEATURE_COSITED_CHROMA_SAMPLES_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY_KHR :: () => () => VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY_KHR :: () => () => VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709_KHR :: () => () => VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601_KHR :: () => () => VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020_KHR :: () => () => VkSamplerYcbcrModelConversion
pattern VK_SAMPLER_YCBCR_RANGE_ITU_FULL_KHR :: () => () => VkSamplerYcbcrRange
pattern VK_SAMPLER_YCBCR_RANGE_ITU_NARROW_KHR :: () => () => VkSamplerYcbcrRange
pattern VK_CHROMA_LOCATION_COSITED_EVEN_KHR :: () => () => VkChromaLocation
pattern VK_CHROMA_LOCATION_MIDPOINT_KHR :: () => () => VkChromaLocation
pattern VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT :: VkDebugReportObjectTypeEXT
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySamplerYcbcrConversionKHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSamplerYcbcrConversionKHR"
module Graphics.Vulkan.Ext.VK_KHR_multiview
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- | Alias for VkRenderPassMultiviewCreateInfo
type VkRenderPassMultiviewCreateInfoKHR = VkRenderPassMultiviewCreateInfo
type VK_KHR_MULTIVIEW_SPEC_VERSION = 1
pattern VK_KHR_MULTIVIEW_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_MULTIVIEW_EXTENSION_NAME = "VK_KHR_multiview"
pattern VK_KHR_MULTIVIEW_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_RENDER_PASS_MULTIVIEW_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_DEPENDENCY_VIEW_LOCAL_BIT_KHR :: forall (a :: FlagType). () => () => VkDependencyBitmask a
module Graphics.Vulkan.Ext.VK_KHR_maintenance3
-- | Alias for VkDescriptorSetLayoutSupport
type VkDescriptorSetLayoutSupportKHR = VkDescriptorSetLayoutSupport
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
type VkGetDescriptorSetLayoutSupportKHR = "vkGetDescriptorSetLayoutSupportKHR"
pattern VkGetDescriptorSetLayoutSupportKHR :: CString
-- | This is an alias for vkGetDescriptorSetLayoutSupport.
--
-- -- void vkGetDescriptorSetLayoutSupportKHR -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , VkDescriptorSetLayoutSupport* pSupport -- ) ---- -- vkGetDescriptorSetLayoutSupportKHR registry at www.khronos.org type HS_vkGetDescriptorSetLayoutSupportKHR = VkDevice " device" -> Ptr VkDescriptorSetLayoutCreateInfo " pCreateInfo" -> Ptr VkDescriptorSetLayoutSupport " pSupport" -> IO () type PFN_vkGetDescriptorSetLayoutSupportKHR = FunPtr HS_vkGetDescriptorSetLayoutSupportKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkDescriptorBindingBitmaskEXT (a :: FlagType) VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 1 pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 2 pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 3 pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a newtype VkDescriptorPoolCreateBitmask (a :: FlagType) VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask -- | Descriptor sets may be freed individually -- -- bitpos = 0 pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a -- | type = enum -- -- VkDescriptorType registry at www.khronos.org newtype VkDescriptorType VkDescriptorType :: Int32 -> VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType -- | type = enum -- -- VkDescriptorUpdateTemplateType registry at www.khronos.org newtype VkDescriptorUpdateTemplateType VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType -- | Create descriptor update template for descriptor set updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType) VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask newtype VkDescriptorUpdateTemplateTypeKHR VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR -- | type = enum -- -- VkShaderInfoTypeAMD registry at www.khronos.org newtype VkShaderInfoTypeAMD VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD newtype VkShaderStageBitmask (a :: FlagType) VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask -- | bitpos = 0 pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a -- | bitpos = 1 pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a -- | bitpos = 2 pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a -- | bitpos = 3 pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a -- | bitpos = 4 pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a -- | bitpos = 5 pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit type VkShaderStageFlags = VkShaderStageBitmask FlagMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkDescriptorBufferInfo {
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkDescriptorBufferInfo;
--
--
-- VkDescriptorBufferInfo registry at www.khronos.org
type VkDescriptorBufferInfo = VkStruct VkDescriptorBufferInfo'
-- |
-- typedef struct VkDescriptorImageInfo {
-- VkSampler sampler;
-- VkImageView imageView;
-- VkImageLayout imageLayout;
-- } VkDescriptorImageInfo;
--
--
-- VkDescriptorImageInfo registry at www.khronos.org
type VkDescriptorImageInfo = VkStruct VkDescriptorImageInfo'
-- |
-- typedef struct VkDescriptorPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPoolCreateFlags flags;
-- uint32_t maxSets;
-- uint32_t poolSizeCount;
-- const VkDescriptorPoolSize* pPoolSizes;
-- } VkDescriptorPoolCreateInfo;
--
--
-- VkDescriptorPoolCreateInfo registry at www.khronos.org
type VkDescriptorPoolCreateInfo = VkStruct VkDescriptorPoolCreateInfo'
-- |
-- typedef struct VkDescriptorPoolSize {
-- VkDescriptorType type;
-- uint32_t descriptorCount;
-- } VkDescriptorPoolSize;
--
--
-- VkDescriptorPoolSize registry at www.khronos.org
type VkDescriptorPoolSize = VkStruct VkDescriptorPoolSize'
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
-- |
-- typedef struct VkDescriptorUpdateTemplateCreateInfo {
-- VkStructureType sType;
-- void* pNext;
-- VkDescriptorUpdateTemplateCreateFlags flags;
-- uint32_t descriptorUpdateEntryCount;
-- const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
-- VkDescriptorUpdateTemplateType templateType;
-- VkDescriptorSetLayout descriptorSetLayout;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkPipelineLayoutpipelineLayout;
-- uint32_t set;
-- } VkDescriptorUpdateTemplateCreateInfo;
--
--
-- VkDescriptorUpdateTemplateCreateInfo registry at
-- www.khronos.org
type VkDescriptorUpdateTemplateCreateInfo = VkStruct VkDescriptorUpdateTemplateCreateInfo'
-- | Alias for VkDescriptorUpdateTemplateCreateInfo
type VkDescriptorUpdateTemplateCreateInfoKHR = VkDescriptorUpdateTemplateCreateInfo
-- |
-- typedef struct VkDescriptorUpdateTemplateEntry {
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- size_t offset;
-- size_t stride;
-- } VkDescriptorUpdateTemplateEntry;
--
--
-- VkDescriptorUpdateTemplateEntry registry at www.khronos.org
type VkDescriptorUpdateTemplateEntry = VkStruct VkDescriptorUpdateTemplateEntry'
-- | Alias for VkDescriptorUpdateTemplateEntry
type VkDescriptorUpdateTemplateEntryKHR = VkDescriptorUpdateTemplateEntry
type VK_KHR_MAINTENANCE3_SPEC_VERSION = 1
pattern VK_KHR_MAINTENANCE3_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_MAINTENANCE3_EXTENSION_NAME = "VK_KHR_maintenance3"
pattern VK_KHR_MAINTENANCE3_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MAINTENANCE_3_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_SUPPORT_KHR :: () => () => VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDescriptorSetLayoutSupportKHR"
module Graphics.Vulkan.Ext.VK_KHR_maintenance2
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
-- | Alias for VkInputAttachmentAspectReference
type VkInputAttachmentAspectReferenceKHR = VkInputAttachmentAspectReference
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- | Alias for VkPipelineTessellationDomainOriginStateCreateInfo
type VkPipelineTessellationDomainOriginStateCreateInfoKHR = VkPipelineTessellationDomainOriginStateCreateInfo
-- | type = enum
--
-- VkPointClippingBehavior registry at www.khronos.org
newtype VkPointClippingBehavior
VkPointClippingBehavior :: Int32 -> VkPointClippingBehavior
pattern VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES :: VkPointClippingBehavior
pattern VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY :: VkPointClippingBehavior
newtype VkPointClippingBehaviorKHR
VkPointClippingBehaviorKHR :: VkFlags -> VkPointClippingBehaviorKHR
-- | Alias for VkRenderPassInputAttachmentAspectCreateInfo
type VkRenderPassInputAttachmentAspectCreateInfoKHR = VkRenderPassInputAttachmentAspectCreateInfo
-- | type = enum
--
-- VkTessellationDomainOrigin registry at www.khronos.org
newtype VkTessellationDomainOrigin
VkTessellationDomainOrigin :: Int32 -> VkTessellationDomainOrigin
pattern VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT :: VkTessellationDomainOrigin
pattern VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT :: VkTessellationDomainOrigin
newtype VkTessellationDomainOriginKHR
VkTessellationDomainOriginKHR :: VkFlags -> VkTessellationDomainOriginKHR
type VK_KHR_MAINTENANCE2_SPEC_VERSION = 1
pattern VK_KHR_MAINTENANCE2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_MAINTENANCE2_EXTENSION_NAME = "VK_KHR_maintenance2"
pattern VK_KHR_MAINTENANCE2_EXTENSION_NAME :: CString
pattern VK_IMAGE_CREATE_BLOCK_TEXEL_VIEW_COMPATIBLE_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a
pattern VK_IMAGE_CREATE_EXTENDED_USAGE_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_POINT_CLIPPING_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_USAGE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_DOMAIN_ORIGIN_STATE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_IMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL_KHR :: () => () => VkImageLayout
pattern VK_IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL_KHR :: () => () => VkImageLayout
pattern VK_POINT_CLIPPING_BEHAVIOR_ALL_CLIP_PLANES_KHR :: () => () => VkPointClippingBehavior
pattern VK_POINT_CLIPPING_BEHAVIOR_USER_CLIP_PLANES_ONLY_KHR :: () => () => VkPointClippingBehavior
pattern VK_TESSELLATION_DOMAIN_ORIGIN_UPPER_LEFT_KHR :: () => () => VkTessellationDomainOrigin
pattern VK_TESSELLATION_DOMAIN_ORIGIN_LOWER_LEFT_KHR :: () => () => VkTessellationDomainOrigin
module Graphics.Vulkan.Ext.VK_KHR_maintenance1
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
type VkTrimCommandPoolKHR = "vkTrimCommandPoolKHR"
pattern VkTrimCommandPoolKHR :: CString
-- | This is an alias for vkTrimCommandPool.
--
-- -- void vkTrimCommandPoolKHR -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolTrimFlags flags -- ) ---- -- vkTrimCommandPoolKHR registry at www.khronos.org type HS_vkTrimCommandPoolKHR = VkDevice " device" -> VkCommandPool " commandPool" -> VkCommandPoolTrimFlags " flags" -> IO () type PFN_vkTrimCommandPoolKHR = FunPtr HS_vkTrimCommandPoolKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_KHR_MAINTENANCE1_SPEC_VERSION = 2 pattern VK_KHR_MAINTENANCE1_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_MAINTENANCE1_EXTENSION_NAME = "VK_KHR_maintenance1" pattern VK_KHR_MAINTENANCE1_EXTENSION_NAME :: CString pattern VK_ERROR_OUT_OF_POOL_MEMORY_KHR :: () => () => VkResult pattern VK_FORMAT_FEATURE_TRANSFER_SRC_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a pattern VK_FORMAT_FEATURE_TRANSFER_DST_BIT_KHR :: forall (a :: FlagType). () => () => VkFormatFeatureBitmask a pattern VK_IMAGE_CREATE_2D_ARRAY_COMPATIBLE_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkTrimCommandPoolKHR" module Graphics.Vulkan.Ext.VK_KHR_get_physical_device_properties2 -- | Alias for VkFormatProperties2 type VkFormatProperties2KHR = VkFormatProperties2 -- | Alias for VkImageFormatProperties2 type VkImageFormatProperties2KHR = VkImageFormatProperties2 -- | Alias for VkPhysicalDeviceFeatures2 type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2 -- | Alias for VkPhysicalDeviceImageFormatInfo2 type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2 -- | Alias for VkPhysicalDeviceMemoryProperties2 type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2 -- | Alias for VkPhysicalDeviceProperties2 type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2 -- | Alias for VkPhysicalDeviceSparseImageFormatInfo2 type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2 -- | Alias for VkQueueFamilyProperties2 type VkQueueFamilyProperties2KHR = VkQueueFamilyProperties2 -- | Alias for VkSparseImageFormatProperties2 type VkSparseImageFormatProperties2KHR = VkSparseImageFormatProperties2 type VkGetPhysicalDeviceFeatures2KHR = "vkGetPhysicalDeviceFeatures2KHR" pattern VkGetPhysicalDeviceFeatures2KHR :: CString -- | This is an alias for vkGetPhysicalDeviceFeatures2. -- --
-- void vkGetPhysicalDeviceFeatures2KHR -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures2* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures2KHR registry at www.khronos.org type HS_vkGetPhysicalDeviceFeatures2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceFeatures2 " pFeatures" -> IO () type PFN_vkGetPhysicalDeviceFeatures2KHR = FunPtr HS_vkGetPhysicalDeviceFeatures2KHR type VkGetPhysicalDeviceProperties2KHR = "vkGetPhysicalDeviceProperties2KHR" pattern VkGetPhysicalDeviceProperties2KHR :: CString -- | This is an alias for vkGetPhysicalDeviceProperties2. -- --
-- void vkGetPhysicalDeviceProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties2KHR registry at www.khronos.org type HS_vkGetPhysicalDeviceProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceProperties2 " pProperties" -> IO () type PFN_vkGetPhysicalDeviceProperties2KHR = FunPtr HS_vkGetPhysicalDeviceProperties2KHR type VkGetPhysicalDeviceFormatProperties2KHR = "vkGetPhysicalDeviceFormatProperties2KHR" pattern VkGetPhysicalDeviceFormatProperties2KHR :: CString -- | This is an alias for vkGetPhysicalDeviceFormatProperties2. -- --
-- void vkGetPhysicalDeviceFormatProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties2* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceFormatProperties2KHR = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> Ptr VkFormatProperties2 " pFormatProperties" -> IO () type PFN_vkGetPhysicalDeviceFormatProperties2KHR = FunPtr HS_vkGetPhysicalDeviceFormatProperties2KHR type VkGetPhysicalDeviceImageFormatProperties2KHR = "vkGetPhysicalDeviceImageFormatProperties2KHR" pattern VkGetPhysicalDeviceImageFormatProperties2KHR :: CString -- | This is an alias for -- vkGetPhysicalDeviceImageFormatProperties2. -- -- Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceImageFormatInfo2* pImageFormatInfo -- , VkImageFormatProperties2* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceImageFormatProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceImageFormatInfo2 " pImageFormatInfo" -> Ptr VkImageFormatProperties2 " pImageFormatProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceImageFormatProperties2KHR = FunPtr HS_vkGetPhysicalDeviceImageFormatProperties2KHR type VkGetPhysicalDeviceQueueFamilyProperties2KHR = "vkGetPhysicalDeviceQueueFamilyProperties2KHR" pattern VkGetPhysicalDeviceQueueFamilyProperties2KHR :: CString -- | This is an alias for -- vkGetPhysicalDeviceQueueFamilyProperties2. -- --
-- void vkGetPhysicalDeviceQueueFamilyProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties2* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceQueueFamilyProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pQueueFamilyPropertyCount" -> Ptr VkQueueFamilyProperties2 " pQueueFamilyProperties" -> IO () type PFN_vkGetPhysicalDeviceQueueFamilyProperties2KHR = FunPtr HS_vkGetPhysicalDeviceQueueFamilyProperties2KHR type VkGetPhysicalDeviceMemoryProperties2KHR = "vkGetPhysicalDeviceMemoryProperties2KHR" pattern VkGetPhysicalDeviceMemoryProperties2KHR :: CString -- | This is an alias for vkGetPhysicalDeviceMemoryProperties2. -- --
-- void vkGetPhysicalDeviceMemoryProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties2* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceMemoryProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceMemoryProperties2 " pMemoryProperties" -> IO () type PFN_vkGetPhysicalDeviceMemoryProperties2KHR = FunPtr HS_vkGetPhysicalDeviceMemoryProperties2KHR type VkGetPhysicalDeviceSparseImageFormatProperties2KHR = "vkGetPhysicalDeviceSparseImageFormatProperties2KHR" pattern VkGetPhysicalDeviceSparseImageFormatProperties2KHR :: CString -- | This is an alias for -- vkGetPhysicalDeviceSparseImageFormatProperties2. -- --
-- void vkGetPhysicalDeviceSparseImageFormatProperties2KHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceSparseImageFormatInfo2* pFormatInfo -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties2* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties2KHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSparseImageFormatProperties2KHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceSparseImageFormatInfo2 " pFormatInfo" -> Ptr Word32 " pPropertyCount" -> Ptr VkSparseImageFormatProperties2 " pProperties" -> IO () type PFN_vkGetPhysicalDeviceSparseImageFormatProperties2KHR = FunPtr HS_vkGetPhysicalDeviceSparseImageFormatProperties2KHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkAndroidSurfaceCreateFlagsKHR VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR newtype VkBufferViewCreateFlags VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags newtype VkCommandPoolTrimFlags VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags newtype VkCommandPoolTrimFlagsKHR VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR newtype VkDebugUtilsMessengerCallbackDataFlagsEXT VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT newtype VkDebugUtilsMessengerCreateFlagsEXT VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT newtype VkDescriptorPoolResetFlags VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags newtype VkDescriptorUpdateTemplateCreateFlags VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags newtype VkDescriptorUpdateTemplateCreateFlagsKHR VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR newtype VkDeviceCreateFlags VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags newtype VkDisplayModeCreateFlagsKHR VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR newtype VkDisplaySurfaceCreateFlagsKHR VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR newtype VkEventCreateFlags VkEventCreateFlags :: VkFlags -> VkEventCreateFlags newtype VkExternalFenceFeatureFlagsKHR VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR newtype VkExternalFenceHandleTypeFlagsKHR VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR newtype VkExternalMemoryFeatureFlagsKHR VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR newtype VkExternalMemoryHandleTypeFlagsKHR VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR newtype VkExternalSemaphoreFeatureFlagsKHR VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR newtype VkExternalSemaphoreHandleTypeFlagsKHR VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR newtype VkFenceImportFlagsKHR VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR newtype VkFramebufferCreateFlags VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags newtype VkIOSSurfaceCreateFlagsMVK VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK newtype VkImageViewCreateFlags VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags newtype VkInstanceCreateFlags VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags newtype VkMacOSSurfaceCreateFlagsMVK VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK newtype VkMemoryAllocateFlagsKHR VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR newtype VkMemoryMapFlags VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags newtype VkMirSurfaceCreateFlagsKHR VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR newtype VkPeerMemoryFeatureFlagsKHR VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR newtype VkPipelineCacheCreateFlags VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags newtype VkPipelineColorBlendStateCreateFlags VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags newtype VkPipelineCoverageModulationStateCreateFlagsNV VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV newtype VkPipelineCoverageToColorStateCreateFlagsNV VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV newtype VkPipelineDepthStencilStateCreateFlags VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags newtype VkPipelineDiscardRectangleStateCreateFlagsEXT VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT newtype VkPipelineDynamicStateCreateFlags VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags newtype VkPipelineInputAssemblyStateCreateFlags VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags newtype VkPipelineLayoutCreateFlags VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags newtype VkPipelineMultisampleStateCreateFlags VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT newtype VkPipelineRasterizationStateCreateFlags VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags newtype VkPipelineShaderStageCreateFlags VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags newtype VkPipelineTessellationStateCreateFlags VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags newtype VkPipelineVertexInputStateCreateFlags VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags newtype VkPipelineViewportStateCreateFlags VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags newtype VkPipelineViewportSwizzleStateCreateFlagsNV VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV newtype VkQueryPoolCreateFlags VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags newtype VkRenderPassCreateFlags VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags newtype VkSamplerCreateFlags VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags newtype VkSemaphoreCreateFlags VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags newtype VkSemaphoreImportFlagsKHR VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR newtype VkShaderModuleCreateFlags VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags newtype VkValidationCacheCreateFlagsEXT VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT newtype VkViSurfaceCreateFlagsNN VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN newtype VkWaylandSurfaceCreateFlagsKHR VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR newtype VkWin32SurfaceCreateFlagsKHR VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR newtype VkXcbSurfaceCreateFlagsKHR VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR newtype VkXlibSurfaceCreateFlagsKHR VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR -- | type = enum -- -- VkDeviceEventTypeEXT registry at www.khronos.org newtype VkDeviceEventTypeEXT VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType) VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask -- | Present from local memory -- -- bitpos = 0 pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Present from remote memory -- -- bitpos = 1 pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Present sum of local and/or remote memory -- -- bitpos = 2 pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Each physical device presents from local memory -- -- bitpos = 3 pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a newtype VkDeviceCreateFlagBits VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask newtype VkDeviceQueueCreateBitmask (a :: FlagType) VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask newtype VkMemoryAllocateBitmask (a :: FlagType) VkMemoryAllocateBitmask :: VkFlags -> VkMemoryAllocateBitmask pattern VkMemoryAllocateFlagBits :: VkFlags -> VkMemoryAllocateBitmask FlagBit pattern VkMemoryAllocateFlags :: VkFlags -> VkMemoryAllocateBitmask FlagMask -- | Force allocation on specific devices -- -- bitpos = 0 pattern VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT :: VkMemoryAllocateBitmask a newtype VkMemoryHeapBitmask (a :: FlagType) VkMemoryHeapBitmask :: VkFlags -> VkMemoryHeapBitmask pattern VkMemoryHeapFlagBits :: VkFlags -> VkMemoryHeapBitmask FlagBit pattern VkMemoryHeapFlags :: VkFlags -> VkMemoryHeapBitmask FlagMask -- | If set, heap represents device memory -- -- bitpos = 0 pattern VK_MEMORY_HEAP_DEVICE_LOCAL_BIT :: VkMemoryHeapBitmask a newtype VkMemoryPropertyBitmask (a :: FlagType) VkMemoryPropertyBitmask :: VkFlags -> VkMemoryPropertyBitmask pattern VkMemoryPropertyFlagBits :: VkFlags -> VkMemoryPropertyBitmask FlagBit pattern VkMemoryPropertyFlags :: VkFlags -> VkMemoryPropertyBitmask FlagMask -- | If otherwise stated, then allocate memory on device -- -- bitpos = 0 pattern VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT :: VkMemoryPropertyBitmask a -- | Memory is mappable by host -- -- bitpos = 1 pattern VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT :: VkMemoryPropertyBitmask a -- | Memory will have io coherency. If not set, application may need to -- use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to -- flushinvalidate host cache -- -- bitpos = 2 pattern VK_MEMORY_PROPERTY_HOST_COHERENT_BIT :: VkMemoryPropertyBitmask a -- | Memory will be cached by the host -- -- bitpos = 3 pattern VK_MEMORY_PROPERTY_HOST_CACHED_BIT :: VkMemoryPropertyBitmask a -- | Memory may be allocated by the driver when it is required -- -- bitpos = 4 pattern VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT :: VkMemoryPropertyBitmask a type VkMemoryAllocateFlagBits = VkMemoryAllocateBitmask FlagBit newtype VkMemoryAllocateFlagBitsKHR VkMemoryAllocateFlagBitsKHR :: VkFlags -> VkMemoryAllocateFlagBitsKHR type VkMemoryAllocateFlags = VkMemoryAllocateBitmask FlagMask type VkMemoryHeapFlagBits = VkMemoryHeapBitmask FlagBit type VkMemoryHeapFlags = VkMemoryHeapBitmask FlagMask type VkMemoryPropertyFlagBits = VkMemoryPropertyBitmask FlagBit type VkMemoryPropertyFlags = VkMemoryPropertyBitmask FlagMask -- | type = enum -- -- VkPhysicalDeviceType registry at www.khronos.org newtype VkPhysicalDeviceType VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType newtype VkQueueBitmask (a :: FlagType) VkQueueBitmask :: VkFlags -> VkQueueBitmask pattern VkQueueFlagBits :: VkFlags -> VkQueueBitmask FlagBit pattern VkQueueFlags :: VkFlags -> VkQueueBitmask FlagMask -- | Queue supports graphics operations -- -- bitpos = 0 pattern VK_QUEUE_GRAPHICS_BIT :: VkQueueBitmask a -- | Queue supports compute operations -- -- bitpos = 1 pattern VK_QUEUE_COMPUTE_BIT :: VkQueueBitmask a -- | Queue supports transfer operations -- -- bitpos = 2 pattern VK_QUEUE_TRANSFER_BIT :: VkQueueBitmask a -- | Queue supports sparse resource memory management operations -- -- bitpos = 3 pattern VK_QUEUE_SPARSE_BINDING_BIT :: VkQueueBitmask a -- | type = enum -- -- VkQueueGlobalPriorityEXT registry at www.khronos.org newtype VkQueueGlobalPriorityEXT VkQueueGlobalPriorityEXT :: Int32 -> VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT :: VkQueueGlobalPriorityEXT type VkQueueFlagBits = VkQueueBitmask FlagBit type VkQueueFlags = VkQueueBitmask FlagMask -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult newtype VkSampleCountBitmask (a :: FlagType) VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask -- | Sample count 1 supported -- -- bitpos = 0 pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a -- | Sample count 2 supported -- -- bitpos = 1 pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a -- | Sample count 4 supported -- -- bitpos = 2 pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a -- | Sample count 8 supported -- -- bitpos = 3 pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a -- | Sample count 16 supported -- -- bitpos = 4 pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a -- | Sample count 32 supported -- -- bitpos = 5 pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a -- | Sample count 64 supported -- -- bitpos = 6 pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit type VkSampleCountFlags = VkSampleCountBitmask FlagMask newtype VkSparseImageFormatBitmask (a :: FlagType) VkSparseImageFormatBitmask :: VkFlags -> VkSparseImageFormatBitmask pattern VkSparseImageFormatFlagBits :: VkFlags -> VkSparseImageFormatBitmask FlagBit pattern VkSparseImageFormatFlags :: VkFlags -> VkSparseImageFormatBitmask FlagMask -- | Image uses a single mip tail region for all array layers -- -- bitpos = 0 pattern VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT :: VkSparseImageFormatBitmask a -- | Image requires mip level dimensions to be an integer multiple of the -- sparse image block dimensions for non-tail mip levels. -- -- bitpos = 1 pattern VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT :: VkSparseImageFormatBitmask a -- | Image uses a non-standard sparse image block dimensions -- -- bitpos = 2 pattern VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT :: VkSparseImageFormatBitmask a newtype VkSparseMemoryBindBitmask (a :: FlagType) VkSparseMemoryBindBitmask :: VkFlags -> VkSparseMemoryBindBitmask pattern VkSparseMemoryBindFlagBits :: VkFlags -> VkSparseMemoryBindBitmask FlagBit pattern VkSparseMemoryBindFlags :: VkFlags -> VkSparseMemoryBindBitmask FlagMask -- | Operation binds resource metadata to memory -- -- bitpos = 0 pattern VK_SPARSE_MEMORY_BIND_METADATA_BIT :: VkSparseMemoryBindBitmask a type VkSparseImageFormatFlagBits = VkSparseImageFormatBitmask FlagBit type VkSparseImageFormatFlags = VkSparseImageFormatBitmask FlagMask type VkSparseMemoryBindFlagBits = VkSparseMemoryBindBitmask FlagBit type VkSparseMemoryBindFlags = VkSparseMemoryBindBitmask FlagMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkFormatProperties {
-- VkFormatFeatureFlags linearTilingFeatures;
-- VkFormatFeatureFlags optimalTilingFeatures;
-- VkFormatFeatureFlags bufferFeatures;
-- } VkFormatProperties;
--
--
-- VkFormatProperties registry at www.khronos.org
type VkFormatProperties = VkStruct VkFormatProperties'
-- |
-- typedef struct VkFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkFormatProperties formatProperties;
-- } VkFormatProperties2;
--
--
-- VkFormatProperties2 registry at www.khronos.org
type VkFormatProperties2 = VkStruct VkFormatProperties2'
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
-- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceFeatures {
-- VkBool32 robustBufferAccess;
-- VkBool32 fullDrawIndexUint32;
-- VkBool32 imageCubeArray;
-- VkBool32 independentBlend;
-- VkBool32 geometryShader;
-- VkBool32 tessellationShader;
-- VkBool32 sampleRateShading;
-- VkBool32 dualSrcBlend;
-- VkBool32 logicOp;
-- VkBool32 multiDrawIndirect;
-- VkBool32 drawIndirectFirstInstance;
-- VkBool32 depthClamp;
-- VkBool32 depthBiasClamp;
-- VkBool32 fillModeNonSolid;
-- VkBool32 depthBounds;
-- VkBool32 wideLines;
-- VkBool32 largePoints;
-- VkBool32 alphaToOne;
-- VkBool32 multiViewport;
-- VkBool32 samplerAnisotropy;
-- VkBool32 textureCompressionETC2;
-- VkBool32 textureCompressionASTC_LDR;
-- VkBool32 textureCompressionBC;
-- VkBool32 occlusionQueryPrecise;
-- VkBool32 pipelineStatisticsQuery;
-- VkBool32 vertexPipelineStoresAndAtomics;
-- VkBool32 fragmentStoresAndAtomics;
-- VkBool32 shaderTessellationAndGeometryPointSize;
-- VkBool32 shaderImageGatherExtended;
-- VkBool32 shaderStorageImageExtendedFormats;
-- VkBool32 shaderStorageImageMultisample;
-- VkBool32 shaderStorageImageReadWithoutFormat;
-- VkBool32 shaderStorageImageWriteWithoutFormat;
-- VkBool32 shaderUniformBufferArrayDynamicIndexing;
-- VkBool32 shaderSampledImageArrayDynamicIndexing;
-- VkBool32 shaderStorageBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageImageArrayDynamicIndexing;
-- VkBool32 shaderClipDistance;
-- VkBool32 shaderCullDistance;
-- VkBool32 shaderFloat64;
-- VkBool32 shaderInt64;
-- VkBool32 shaderInt16;
-- VkBool32 shaderResourceResidency;
-- VkBool32 shaderResourceMinLod;
-- VkBool32 sparseBinding;
-- VkBool32 sparseResidencyBuffer;
-- VkBool32 sparseResidencyImage2D;
-- VkBool32 sparseResidencyImage3D;
-- VkBool32 sparseResidency2Samples;
-- VkBool32 sparseResidency4Samples;
-- VkBool32 sparseResidency8Samples;
-- VkBool32 sparseResidency16Samples;
-- VkBool32 sparseResidencyAliased;
-- VkBool32 variableMultisampleRate;
-- VkBool32 inheritedQueries;
-- } VkPhysicalDeviceFeatures;
--
--
-- VkPhysicalDeviceFeatures registry at www.khronos.org
type VkPhysicalDeviceFeatures = VkStruct VkPhysicalDeviceFeatures'
-- |
-- typedef struct VkQueueFamilyProperties {
-- VkQueueFlags queueFlags;
-- uint32_t queueCount;
-- uint32_t timestampValidBits;
-- VkExtent3D minImageTransferGranularity;
-- } VkQueueFamilyProperties;
--
--
-- VkQueueFamilyProperties registry at www.khronos.org
type VkQueueFamilyProperties = VkStruct VkQueueFamilyProperties'
-- |
-- typedef struct VkQueueFamilyProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkQueueFamilyProperties queueFamilyProperties;
-- } VkQueueFamilyProperties2;
--
--
-- VkQueueFamilyProperties2 registry at www.khronos.org
type VkQueueFamilyProperties2 = VkStruct VkQueueFamilyProperties2'
-- |
-- typedef struct VkSparseBufferMemoryBindInfo {
-- VkBuffer buffer;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseBufferMemoryBindInfo;
--
--
-- VkSparseBufferMemoryBindInfo registry at www.khronos.org
type VkSparseBufferMemoryBindInfo = VkStruct VkSparseBufferMemoryBindInfo'
-- |
-- typedef struct VkSparseImageFormatProperties {
-- VkImageAspectFlags aspectMask;
-- VkExtent3D imageGranularity;
-- VkSparseImageFormatFlags flags;
-- } VkSparseImageFormatProperties;
--
--
-- VkSparseImageFormatProperties registry at www.khronos.org
type VkSparseImageFormatProperties = VkStruct VkSparseImageFormatProperties'
-- |
-- typedef struct VkSparseImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageFormatProperties properties;
-- } VkSparseImageFormatProperties2;
--
--
-- VkSparseImageFormatProperties2 registry at www.khronos.org
type VkSparseImageFormatProperties2 = VkStruct VkSparseImageFormatProperties2'
-- |
-- typedef struct VkSparseImageMemoryBind {
-- VkImageSubresource subresource;
-- VkOffset3D offset;
-- VkExtent3D extent;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseImageMemoryBind;
--
--
-- VkSparseImageMemoryBind registry at www.khronos.org
type VkSparseImageMemoryBind = VkStruct VkSparseImageMemoryBind'
-- |
-- typedef struct VkSparseImageMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseImageMemoryBind* pBinds;
-- } VkSparseImageMemoryBindInfo;
--
--
-- VkSparseImageMemoryBindInfo registry at www.khronos.org
type VkSparseImageMemoryBindInfo = VkStruct VkSparseImageMemoryBindInfo'
-- |
-- typedef struct VkSparseImageMemoryRequirements {
-- VkSparseImageFormatProperties formatProperties;
-- uint32_t imageMipTailFirstLod;
-- VkDeviceSize imageMipTailSize;
-- VkDeviceSize imageMipTailOffset;
-- VkDeviceSize imageMipTailStride;
-- } VkSparseImageMemoryRequirements;
--
--
-- VkSparseImageMemoryRequirements registry at www.khronos.org
type VkSparseImageMemoryRequirements = VkStruct VkSparseImageMemoryRequirements'
-- |
-- typedef struct VkSparseImageMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageMemoryRequirements memoryRequirements;
-- } VkSparseImageMemoryRequirements2;
--
--
-- VkSparseImageMemoryRequirements2 registry at www.khronos.org
type VkSparseImageMemoryRequirements2 = VkStruct VkSparseImageMemoryRequirements2'
-- | Alias for VkSparseImageMemoryRequirements2
type VkSparseImageMemoryRequirements2KHR = VkSparseImageMemoryRequirements2
-- |
-- typedef struct VkSparseImageOpaqueMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseImageOpaqueMemoryBindInfo;
--
--
-- VkSparseImageOpaqueMemoryBindInfo registry at www.khronos.org
type VkSparseImageOpaqueMemoryBindInfo = VkStruct VkSparseImageOpaqueMemoryBindInfo'
-- |
-- typedef struct VkSparseMemoryBind {
-- VkDeviceSize resourceOffset;
-- VkDeviceSize size;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseMemoryBind;
--
--
-- VkSparseMemoryBind registry at www.khronos.org
type VkSparseMemoryBind = VkStruct VkSparseMemoryBind'
type VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION = 1
pattern VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME = "VK_KHR_get_physical_device_properties2"
pattern VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_FORMAT_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_FORMAT_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_IMAGE_FORMAT_INFO_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_SPARSE_IMAGE_FORMAT_PROPERTIES_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SPARSE_IMAGE_FORMAT_INFO_2_KHR :: () => () => VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSparseImageFormatProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceMemoryProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceQueueFamilyProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceImageFormatProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFormatProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceProperties2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFeatures2KHR"
module Graphics.Vulkan.Ext.VK_KHR_get_memory_requirements2
-- | Alias for VkBufferMemoryRequirementsInfo2
type VkBufferMemoryRequirementsInfo2KHR = VkBufferMemoryRequirementsInfo2
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- | Alias for VkSparseImageMemoryRequirements2
type VkSparseImageMemoryRequirements2KHR = VkSparseImageMemoryRequirements2
type VkGetImageMemoryRequirements2KHR = "vkGetImageMemoryRequirements2KHR"
pattern VkGetImageMemoryRequirements2KHR :: CString
-- | This is an alias for vkGetImageMemoryRequirements2.
--
-- -- void vkGetImageMemoryRequirements2KHR -- ( VkDevice device -- , const VkImageMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements2KHR registry at www.khronos.org type HS_vkGetImageMemoryRequirements2KHR = VkDevice " device" -> Ptr VkImageMemoryRequirementsInfo2 " pInfo" -> Ptr VkMemoryRequirements2 " pMemoryRequirements" -> IO () type PFN_vkGetImageMemoryRequirements2KHR = FunPtr HS_vkGetImageMemoryRequirements2KHR type VkGetBufferMemoryRequirements2KHR = "vkGetBufferMemoryRequirements2KHR" pattern VkGetBufferMemoryRequirements2KHR :: CString -- | This is an alias for vkGetBufferMemoryRequirements2. -- --
-- void vkGetBufferMemoryRequirements2KHR -- ( VkDevice device -- , const VkBufferMemoryRequirementsInfo2* pInfo -- , VkMemoryRequirements2* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements2KHR registry at www.khronos.org type HS_vkGetBufferMemoryRequirements2KHR = VkDevice " device" -> Ptr VkBufferMemoryRequirementsInfo2 " pInfo" -> Ptr VkMemoryRequirements2 " pMemoryRequirements" -> IO () type PFN_vkGetBufferMemoryRequirements2KHR = FunPtr HS_vkGetBufferMemoryRequirements2KHR type VkGetImageSparseMemoryRequirements2KHR = "vkGetImageSparseMemoryRequirements2KHR" pattern VkGetImageSparseMemoryRequirements2KHR :: CString -- | This is an alias for vkGetImageSparseMemoryRequirements2. -- --
-- void vkGetImageSparseMemoryRequirements2KHR -- ( VkDevice device -- , const VkImageSparseMemoryRequirementsInfo2* pInfo -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements2* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements2KHR registry at -- www.khronos.org type HS_vkGetImageSparseMemoryRequirements2KHR = VkDevice " device" -> Ptr VkImageSparseMemoryRequirementsInfo2 " pInfo" -> Ptr Word32 " pSparseMemoryRequirementCount" -> Ptr VkSparseImageMemoryRequirements2 " pSparseMemoryRequirements" -> IO () type PFN_vkGetImageSparseMemoryRequirements2KHR = FunPtr HS_vkGetImageSparseMemoryRequirements2KHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask newtype VkSparseImageFormatBitmask (a :: FlagType) VkSparseImageFormatBitmask :: VkFlags -> VkSparseImageFormatBitmask pattern VkSparseImageFormatFlagBits :: VkFlags -> VkSparseImageFormatBitmask FlagBit pattern VkSparseImageFormatFlags :: VkFlags -> VkSparseImageFormatBitmask FlagMask -- | Image uses a single mip tail region for all array layers -- -- bitpos = 0 pattern VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT :: VkSparseImageFormatBitmask a -- | Image requires mip level dimensions to be an integer multiple of the -- sparse image block dimensions for non-tail mip levels. -- -- bitpos = 1 pattern VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT :: VkSparseImageFormatBitmask a -- | Image uses a non-standard sparse image block dimensions -- -- bitpos = 2 pattern VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT :: VkSparseImageFormatBitmask a newtype VkSparseMemoryBindBitmask (a :: FlagType) VkSparseMemoryBindBitmask :: VkFlags -> VkSparseMemoryBindBitmask pattern VkSparseMemoryBindFlagBits :: VkFlags -> VkSparseMemoryBindBitmask FlagBit pattern VkSparseMemoryBindFlags :: VkFlags -> VkSparseMemoryBindBitmask FlagMask -- | Operation binds resource metadata to memory -- -- bitpos = 0 pattern VK_SPARSE_MEMORY_BIND_METADATA_BIT :: VkSparseMemoryBindBitmask a type VkSparseImageFormatFlagBits = VkSparseImageFormatBitmask FlagBit type VkSparseImageFormatFlags = VkSparseImageFormatBitmask FlagMask type VkSparseMemoryBindFlagBits = VkSparseMemoryBindBitmask FlagBit type VkSparseMemoryBindFlags = VkSparseMemoryBindBitmask FlagMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkBufferCopy {
-- VkDeviceSize srcOffset;
-- VkDeviceSize dstOffset;
-- VkDeviceSize size;
-- } VkBufferCopy;
--
--
-- VkBufferCopy registry at www.khronos.org
type VkBufferCopy = VkStruct VkBufferCopy'
-- |
-- typedef struct VkBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkDeviceSize size;
-- VkBufferUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- } VkBufferCreateInfo;
--
--
-- VkBufferCreateInfo registry at www.khronos.org
type VkBufferCreateInfo = VkStruct VkBufferCreateInfo'
-- |
-- typedef struct VkBufferImageCopy {
-- VkDeviceSize bufferOffset;
-- uint32_t bufferRowLength;
-- uint32_t bufferImageHeight;
-- VkImageSubresourceLayers imageSubresource;
-- VkOffset3D imageOffset;
-- VkExtent3D imageExtent;
-- } VkBufferImageCopy;
--
--
-- VkBufferImageCopy registry at www.khronos.org
type VkBufferImageCopy = VkStruct VkBufferImageCopy'
-- |
-- typedef struct VkBufferMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize size;
-- } VkBufferMemoryBarrier;
--
--
-- VkBufferMemoryBarrier registry at www.khronos.org
type VkBufferMemoryBarrier = VkStruct VkBufferMemoryBarrier'
-- |
-- typedef struct VkBufferMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- } VkBufferMemoryRequirementsInfo2;
--
--
-- VkBufferMemoryRequirementsInfo2 registry at www.khronos.org
type VkBufferMemoryRequirementsInfo2 = VkStruct VkBufferMemoryRequirementsInfo2'
-- |
-- typedef struct VkBufferViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferViewCreateFlagsflags;
-- VkBuffer buffer;
-- VkFormat format;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkBufferViewCreateInfo;
--
--
-- VkBufferViewCreateInfo registry at www.khronos.org
type VkBufferViewCreateInfo = VkStruct VkBufferViewCreateInfo'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- | Alias for VkImageFormatProperties2
type VkImageFormatProperties2KHR = VkImageFormatProperties2
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
-- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
-- |
-- typedef struct VkSparseBufferMemoryBindInfo {
-- VkBuffer buffer;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseBufferMemoryBindInfo;
--
--
-- VkSparseBufferMemoryBindInfo registry at www.khronos.org
type VkSparseBufferMemoryBindInfo = VkStruct VkSparseBufferMemoryBindInfo'
-- |
-- typedef struct VkSparseImageFormatProperties {
-- VkImageAspectFlags aspectMask;
-- VkExtent3D imageGranularity;
-- VkSparseImageFormatFlags flags;
-- } VkSparseImageFormatProperties;
--
--
-- VkSparseImageFormatProperties registry at www.khronos.org
type VkSparseImageFormatProperties = VkStruct VkSparseImageFormatProperties'
-- |
-- typedef struct VkSparseImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageFormatProperties properties;
-- } VkSparseImageFormatProperties2;
--
--
-- VkSparseImageFormatProperties2 registry at www.khronos.org
type VkSparseImageFormatProperties2 = VkStruct VkSparseImageFormatProperties2'
-- | Alias for VkSparseImageFormatProperties2
type VkSparseImageFormatProperties2KHR = VkSparseImageFormatProperties2
-- |
-- typedef struct VkSparseImageMemoryBind {
-- VkImageSubresource subresource;
-- VkOffset3D offset;
-- VkExtent3D extent;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseImageMemoryBind;
--
--
-- VkSparseImageMemoryBind registry at www.khronos.org
type VkSparseImageMemoryBind = VkStruct VkSparseImageMemoryBind'
-- |
-- typedef struct VkSparseImageMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseImageMemoryBind* pBinds;
-- } VkSparseImageMemoryBindInfo;
--
--
-- VkSparseImageMemoryBindInfo registry at www.khronos.org
type VkSparseImageMemoryBindInfo = VkStruct VkSparseImageMemoryBindInfo'
-- |
-- typedef struct VkSparseImageMemoryRequirements {
-- VkSparseImageFormatProperties formatProperties;
-- uint32_t imageMipTailFirstLod;
-- VkDeviceSize imageMipTailSize;
-- VkDeviceSize imageMipTailOffset;
-- VkDeviceSize imageMipTailStride;
-- } VkSparseImageMemoryRequirements;
--
--
-- VkSparseImageMemoryRequirements registry at www.khronos.org
type VkSparseImageMemoryRequirements = VkStruct VkSparseImageMemoryRequirements'
-- |
-- typedef struct VkSparseImageMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageMemoryRequirements memoryRequirements;
-- } VkSparseImageMemoryRequirements2;
--
--
-- VkSparseImageMemoryRequirements2 registry at www.khronos.org
type VkSparseImageMemoryRequirements2 = VkStruct VkSparseImageMemoryRequirements2'
-- |
-- typedef struct VkSparseImageOpaqueMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseImageOpaqueMemoryBindInfo;
--
--
-- VkSparseImageOpaqueMemoryBindInfo registry at www.khronos.org
type VkSparseImageOpaqueMemoryBindInfo = VkStruct VkSparseImageOpaqueMemoryBindInfo'
-- |
-- typedef struct VkSparseMemoryBind {
-- VkDeviceSize resourceOffset;
-- VkDeviceSize size;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseMemoryBind;
--
--
-- VkSparseMemoryBind registry at www.khronos.org
type VkSparseMemoryBind = VkStruct VkSparseMemoryBind'
type VK_KHR_GET_MEMORY_REQUIREMENTS_2_SPEC_VERSION = 1
pattern VK_KHR_GET_MEMORY_REQUIREMENTS_2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME = "VK_KHR_get_memory_requirements2"
pattern VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_REQUIREMENTS_INFO_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_REQUIREMENTS_INFO_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_SPARSE_MEMORY_REQUIREMENTS_INFO_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_REQUIREMENTS_2_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_SPARSE_IMAGE_MEMORY_REQUIREMENTS_2_KHR :: () => () => VkStructureType
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageSparseMemoryRequirements2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetBufferMemoryRequirements2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageMemoryRequirements2KHR"
module Graphics.Vulkan.Ext.VK_KHR_external_semaphore_capabilities
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- | Alias for VkExternalSemaphoreProperties
type VkExternalSemaphorePropertiesKHR = VkExternalSemaphoreProperties
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
type VkGetPhysicalDeviceExternalSemaphorePropertiesKHR = "vkGetPhysicalDeviceExternalSemaphorePropertiesKHR"
pattern VkGetPhysicalDeviceExternalSemaphorePropertiesKHR :: CString
-- | This is an alias for
-- vkGetPhysicalDeviceExternalSemaphoreProperties.
--
-- -- void vkGetPhysicalDeviceExternalSemaphorePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalSemaphoreInfo* pExternalSemaphoreInfo -- , VkExternalSemaphoreProperties* pExternalSemaphoreProperties -- ) ---- -- vkGetPhysicalDeviceExternalSemaphorePropertiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalSemaphoreInfo " pExternalSemaphoreInfo" -> Ptr VkExternalSemaphoreProperties " pExternalSemaphoreProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = FunPtr HS_vkGetPhysicalDeviceExternalSemaphorePropertiesKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExternalBufferProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalBufferProperties;
--
--
-- VkExternalBufferProperties registry at www.khronos.org
type VkExternalBufferProperties = VkStruct VkExternalBufferProperties'
-- | Alias for VkExternalBufferProperties
type VkExternalBufferPropertiesKHR = VkExternalBufferProperties
-- |
-- typedef struct VkExternalFenceProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalFenceHandleTypeFlags compatibleHandleTypes;
-- VkExternalFenceFeatureFlags externalFenceFeatures;
-- } VkExternalFenceProperties;
--
--
-- VkExternalFenceProperties registry at www.khronos.org
type VkExternalFenceProperties = VkStruct VkExternalFenceProperties'
-- | Alias for VkExternalFenceProperties
type VkExternalFencePropertiesKHR = VkExternalFenceProperties
-- |
-- typedef struct VkExternalImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalImageFormatProperties;
--
--
-- VkExternalImageFormatProperties registry at www.khronos.org
type VkExternalImageFormatProperties = VkStruct VkExternalImageFormatProperties'
-- | Alias for VkExternalImageFormatProperties
type VkExternalImageFormatPropertiesKHR = VkExternalImageFormatProperties
-- |
-- typedef struct VkExternalImageFormatPropertiesNV {
-- VkImageFormatProperties imageFormatProperties;
-- VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
-- } VkExternalImageFormatPropertiesNV;
--
--
-- VkExternalImageFormatPropertiesNV registry at www.khronos.org
type VkExternalImageFormatPropertiesNV = VkStruct VkExternalImageFormatPropertiesNV'
-- |
-- typedef struct VkExternalMemoryBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryBufferCreateInfo;
--
--
-- VkExternalMemoryBufferCreateInfo registry at www.khronos.org
type VkExternalMemoryBufferCreateInfo = VkStruct VkExternalMemoryBufferCreateInfo'
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryImageCreateInfo;
--
--
-- VkExternalMemoryImageCreateInfo registry at www.khronos.org
type VkExternalMemoryImageCreateInfo = VkStruct VkExternalMemoryImageCreateInfo'
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- |
-- typedef struct VkExternalMemoryProperties {
-- VkExternalMemoryFeatureFlags externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
-- } VkExternalMemoryProperties;
--
--
-- VkExternalMemoryProperties registry at www.khronos.org
type VkExternalMemoryProperties = VkStruct VkExternalMemoryProperties'
-- | Alias for VkExternalMemoryProperties
type VkExternalMemoryPropertiesKHR = VkExternalMemoryProperties
-- |
-- typedef struct VkExternalSemaphoreProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
-- VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
-- } VkExternalSemaphoreProperties;
--
--
-- VkExternalSemaphoreProperties registry at www.khronos.org
type VkExternalSemaphoreProperties = VkStruct VkExternalSemaphoreProperties'
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
type VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME = "VK_KHR_external_semaphore_capabilities"
pattern VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_SEMAPHORE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_SEMAPHORE_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_LUID_SIZE_KHR :: forall a. (Num a, Eq a) => () => a
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreHandleTypeBitmask a
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreHandleTypeBitmask a
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreHandleTypeBitmask a
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreHandleTypeBitmask a
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreHandleTypeBitmask a
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreFeatureBitmask a
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalSemaphoreFeatureBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalSemaphorePropertiesKHR"
module Graphics.Vulkan.Ext.VK_KHR_external_semaphore
-- | Alias for VkExportSemaphoreCreateInfo
type VkExportSemaphoreCreateInfoKHR = VkExportSemaphoreCreateInfo
newtype VkSemaphoreImportBitmask (a :: FlagType)
VkSemaphoreImportBitmask :: VkFlags -> VkSemaphoreImportBitmask
pattern VkSemaphoreImportFlagBits :: VkFlags -> VkSemaphoreImportBitmask FlagBit
pattern VkSemaphoreImportFlags :: VkFlags -> VkSemaphoreImportBitmask FlagMask
-- | bitpos = 0
pattern VK_SEMAPHORE_IMPORT_TEMPORARY_BIT :: VkSemaphoreImportBitmask a
type VkSemaphoreImportFlagBits = VkSemaphoreImportBitmask FlagBit
newtype VkSemaphoreImportFlagBitsKHR
VkSemaphoreImportFlagBitsKHR :: VkFlags -> VkSemaphoreImportFlagBitsKHR
type VkSemaphoreImportFlags = VkSemaphoreImportBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
type VK_KHR_EXTERNAL_SEMAPHORE_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_SEMAPHORE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME = "VK_KHR_external_semaphore"
pattern VK_KHR_EXTERNAL_SEMAPHORE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_EXPORT_SEMAPHORE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_SEMAPHORE_IMPORT_TEMPORARY_BIT_KHR :: forall (a :: FlagType). () => () => VkSemaphoreImportBitmask a
module Graphics.Vulkan.Ext.VK_KHR_external_memory_capabilities
-- | Alias for VkExternalBufferProperties
type VkExternalBufferPropertiesKHR = VkExternalBufferProperties
-- | Alias for VkExternalImageFormatProperties
type VkExternalImageFormatPropertiesKHR = VkExternalImageFormatProperties
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- | Alias for VkExternalMemoryProperties
type VkExternalMemoryPropertiesKHR = VkExternalMemoryProperties
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
type VkGetPhysicalDeviceExternalBufferPropertiesKHR = "vkGetPhysicalDeviceExternalBufferPropertiesKHR"
pattern VkGetPhysicalDeviceExternalBufferPropertiesKHR :: CString
-- | This is an alias for
-- vkGetPhysicalDeviceExternalBufferProperties.
--
-- -- void vkGetPhysicalDeviceExternalBufferPropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalBufferInfo* pExternalBufferInfo -- , VkExternalBufferProperties* pExternalBufferProperties -- ) ---- -- vkGetPhysicalDeviceExternalBufferPropertiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalBufferPropertiesKHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalBufferInfo " pExternalBufferInfo" -> Ptr VkExternalBufferProperties " pExternalBufferProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalBufferPropertiesKHR = FunPtr HS_vkGetPhysicalDeviceExternalBufferPropertiesKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkBufferCreateBitmask (a :: FlagType) VkBufferCreateBitmask :: VkFlags -> VkBufferCreateBitmask pattern VkBufferCreateFlagBits :: VkFlags -> VkBufferCreateBitmask FlagBit pattern VkBufferCreateFlags :: VkFlags -> VkBufferCreateBitmask FlagMask -- | Buffer should support sparse backing -- -- bitpos = 0 pattern VK_BUFFER_CREATE_SPARSE_BINDING_BIT :: VkBufferCreateBitmask a -- | Buffer should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT :: VkBufferCreateBitmask a -- | Buffer should support constent data access to physical memory ranges -- mapped into multiple locations of sparse buffers -- -- bitpos = 2 pattern VK_BUFFER_CREATE_SPARSE_ALIASED_BIT :: VkBufferCreateBitmask a newtype VkBufferUsageBitmask (a :: FlagType) VkBufferUsageBitmask :: VkFlags -> VkBufferUsageBitmask pattern VkBufferUsageFlagBits :: VkFlags -> VkBufferUsageBitmask FlagBit pattern VkBufferUsageFlags :: VkFlags -> VkBufferUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_BUFFER_USAGE_TRANSFER_SRC_BIT :: VkBufferUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_BUFFER_USAGE_TRANSFER_DST_BIT :: VkBufferUsageBitmask a -- | Can be used as TBO -- -- bitpos = 2 pattern VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as IBO -- -- bitpos = 3 pattern VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as UBO -- -- bitpos = 4 pattern VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as SSBO -- -- bitpos = 5 pattern VK_BUFFER_USAGE_STORAGE_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as source of fixed-function index fetch (index buffer) -- -- bitpos = 6 pattern VK_BUFFER_USAGE_INDEX_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as source of fixed-function vertex fetch (VBO) -- -- bitpos = 7 pattern VK_BUFFER_USAGE_VERTEX_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be the source of indirect parameters (e.g. indirect buffer, -- parameter buffer) -- -- bitpos = 8 pattern VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT :: VkBufferUsageBitmask a type VkBufferCreateFlagBits = VkBufferCreateBitmask FlagBit type VkBufferCreateFlags = VkBufferCreateBitmask FlagMask type VkBufferUsageFlagBits = VkBufferUsageBitmask FlagBit type VkBufferUsageFlags = VkBufferUsageBitmask FlagMask newtype VkBufferViewCreateFlagBits VkBufferViewCreateFlagBits :: VkFlags -> VkBufferViewCreateFlagBits -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExternalBufferProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalBufferProperties;
--
--
-- VkExternalBufferProperties registry at www.khronos.org
type VkExternalBufferProperties = VkStruct VkExternalBufferProperties'
-- |
-- typedef struct VkExternalFenceProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalFenceHandleTypeFlags compatibleHandleTypes;
-- VkExternalFenceFeatureFlags externalFenceFeatures;
-- } VkExternalFenceProperties;
--
--
-- VkExternalFenceProperties registry at www.khronos.org
type VkExternalFenceProperties = VkStruct VkExternalFenceProperties'
-- | Alias for VkExternalFenceProperties
type VkExternalFencePropertiesKHR = VkExternalFenceProperties
-- |
-- typedef struct VkExternalImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalImageFormatProperties;
--
--
-- VkExternalImageFormatProperties registry at www.khronos.org
type VkExternalImageFormatProperties = VkStruct VkExternalImageFormatProperties'
-- |
-- typedef struct VkExternalImageFormatPropertiesNV {
-- VkImageFormatProperties imageFormatProperties;
-- VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
-- } VkExternalImageFormatPropertiesNV;
--
--
-- VkExternalImageFormatPropertiesNV registry at www.khronos.org
type VkExternalImageFormatPropertiesNV = VkStruct VkExternalImageFormatPropertiesNV'
-- |
-- typedef struct VkExternalMemoryBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryBufferCreateInfo;
--
--
-- VkExternalMemoryBufferCreateInfo registry at www.khronos.org
type VkExternalMemoryBufferCreateInfo = VkStruct VkExternalMemoryBufferCreateInfo'
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryImageCreateInfo;
--
--
-- VkExternalMemoryImageCreateInfo registry at www.khronos.org
type VkExternalMemoryImageCreateInfo = VkStruct VkExternalMemoryImageCreateInfo'
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- |
-- typedef struct VkExternalMemoryProperties {
-- VkExternalMemoryFeatureFlags externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
-- } VkExternalMemoryProperties;
--
--
-- VkExternalMemoryProperties registry at www.khronos.org
type VkExternalMemoryProperties = VkStruct VkExternalMemoryProperties'
-- |
-- typedef struct VkExternalSemaphoreProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
-- VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
-- } VkExternalSemaphoreProperties;
--
--
-- VkExternalSemaphoreProperties registry at www.khronos.org
type VkExternalSemaphoreProperties = VkStruct VkExternalSemaphoreProperties'
-- | Alias for VkExternalSemaphoreProperties
type VkExternalSemaphorePropertiesKHR = VkExternalSemaphoreProperties
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
type VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME = "VK_KHR_external_memory_capabilities"
pattern VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_IMAGE_FORMAT_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_BUFFER_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_BUFFER_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_LUID_SIZE_KHR :: forall a. (Num a, Eq a) => () => a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryHandleTypeBitmask a
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryFeatureBitmask a
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryFeatureBitmask a
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalMemoryFeatureBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalBufferPropertiesKHR"
module Graphics.Vulkan.Ext.VK_KHR_external_memory
-- | Alias for VkExportMemoryAllocateInfo
type VkExportMemoryAllocateInfoKHR = VkExportMemoryAllocateInfo
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
type VK_KHR_EXTERNAL_MEMORY_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_MEMORY_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME = "VK_KHR_external_memory"
pattern VK_KHR_EXTERNAL_MEMORY_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_KHR :: () => () => VkStructureType
pattern VK_ERROR_INVALID_EXTERNAL_HANDLE_KHR :: () => () => VkResult
pattern VK_QUEUE_FAMILY_EXTERNAL_KHR :: () => () => Word32
module Graphics.Vulkan.Ext.VK_KHR_external_fence_capabilities
newtype VkExternalFenceFeatureBitmask (a :: FlagType)
VkExternalFenceFeatureBitmask :: VkFlags -> VkExternalFenceFeatureBitmask
pattern VkExternalFenceFeatureFlagBits :: VkFlags -> VkExternalFenceFeatureBitmask FlagBit
pattern VkExternalFenceFeatureFlags :: VkFlags -> VkExternalFenceFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT :: VkExternalFenceFeatureBitmask a
newtype VkExternalFenceHandleTypeBitmask (a :: FlagType)
VkExternalFenceHandleTypeBitmask :: VkFlags -> VkExternalFenceHandleTypeBitmask
pattern VkExternalFenceHandleTypeFlagBits :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagBit
pattern VkExternalFenceHandleTypeFlags :: VkFlags -> VkExternalFenceHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalFenceHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalFenceHandleTypeBitmask a
newtype VkExternalMemoryFeatureBitmask (a :: FlagType)
VkExternalMemoryFeatureBitmask :: VkFlags -> VkExternalMemoryFeatureBitmask
pattern VkExternalMemoryFeatureFlagBits :: VkFlags -> VkExternalMemoryFeatureBitmask FlagBit
pattern VkExternalMemoryFeatureFlags :: VkFlags -> VkExternalMemoryFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT :: VkExternalMemoryFeatureBitmask a
newtype VkExternalMemoryFeatureBitmaskNV (a :: FlagType)
VkExternalMemoryFeatureBitmaskNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV
pattern VkExternalMemoryFeatureFlagBitsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagBit
pattern VkExternalMemoryFeatureFlagsNV :: VkFlags -> VkExternalMemoryFeatureBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_FEATURE_DEDICATED_ONLY_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_FEATURE_EXPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_FEATURE_IMPORTABLE_BIT_NV :: VkExternalMemoryFeatureBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmaskNV (a :: FlagType)
VkExternalMemoryHandleTypeBitmaskNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV
pattern VkExternalMemoryHandleTypeFlagBitsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagBit
pattern VkExternalMemoryHandleTypeFlagsNV :: VkFlags -> VkExternalMemoryHandleTypeBitmaskNV FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_IMAGE_KMT_BIT_NV :: VkExternalMemoryHandleTypeBitmaskNV a
newtype VkExternalMemoryHandleTypeBitmask (a :: FlagType)
VkExternalMemoryHandleTypeBitmask :: VkFlags -> VkExternalMemoryHandleTypeBitmask
pattern VkExternalMemoryHandleTypeFlagBits :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagBit
pattern VkExternalMemoryHandleTypeFlags :: VkFlags -> VkExternalMemoryHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D11_TEXTURE_KMT_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 5
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_HEAP_BIT :: VkExternalMemoryHandleTypeBitmask a
-- | bitpos = 6
pattern VK_EXTERNAL_MEMORY_HANDLE_TYPE_D3D12_RESOURCE_BIT :: VkExternalMemoryHandleTypeBitmask a
newtype VkExternalSemaphoreFeatureBitmask (a :: FlagType)
VkExternalSemaphoreFeatureBitmask :: VkFlags -> VkExternalSemaphoreFeatureBitmask
pattern VkExternalSemaphoreFeatureFlagBits :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagBit
pattern VkExternalSemaphoreFeatureFlags :: VkFlags -> VkExternalSemaphoreFeatureBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_EXPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_FEATURE_IMPORTABLE_BIT :: VkExternalSemaphoreFeatureBitmask a
newtype VkExternalSemaphoreHandleTypeBitmask (a :: FlagType)
VkExternalSemaphoreHandleTypeBitmask :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask
pattern VkExternalSemaphoreHandleTypeFlagBits :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagBit
pattern VkExternalSemaphoreHandleTypeFlags :: VkFlags -> VkExternalSemaphoreHandleTypeBitmask FlagMask
-- | bitpos = 0
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 1
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 2
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 3
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_D3D12_FENCE_BIT :: VkExternalSemaphoreHandleTypeBitmask a
-- | bitpos = 4
pattern VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_SYNC_FD_BIT :: VkExternalSemaphoreHandleTypeBitmask a
type VkExternalFenceFeatureFlagBits = VkExternalFenceFeatureBitmask FlagBit
newtype VkExternalFenceFeatureFlagBitsKHR
VkExternalFenceFeatureFlagBitsKHR :: VkFlags -> VkExternalFenceFeatureFlagBitsKHR
type VkExternalFenceFeatureFlags = VkExternalFenceFeatureBitmask FlagMask
type VkExternalFenceHandleTypeFlagBits = VkExternalFenceHandleTypeBitmask FlagBit
newtype VkExternalFenceHandleTypeFlagBitsKHR
VkExternalFenceHandleTypeFlagBitsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagBitsKHR
type VkExternalFenceHandleTypeFlags = VkExternalFenceHandleTypeBitmask FlagMask
type VkExternalMemoryFeatureFlagBits = VkExternalMemoryFeatureBitmask FlagBit
newtype VkExternalMemoryFeatureFlagBitsKHR
VkExternalMemoryFeatureFlagBitsKHR :: VkFlags -> VkExternalMemoryFeatureFlagBitsKHR
type VkExternalMemoryFeatureFlagBitsNV = VkExternalMemoryFeatureBitmaskNV FlagBit
type VkExternalMemoryFeatureFlags = VkExternalMemoryFeatureBitmask FlagMask
type VkExternalMemoryFeatureFlagsNV = VkExternalMemoryFeatureBitmaskNV FlagMask
type VkExternalMemoryHandleTypeFlagBits = VkExternalMemoryHandleTypeBitmask FlagBit
newtype VkExternalMemoryHandleTypeFlagBitsKHR
VkExternalMemoryHandleTypeFlagBitsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagBitsKHR
type VkExternalMemoryHandleTypeFlagBitsNV = VkExternalMemoryHandleTypeBitmaskNV FlagBit
type VkExternalMemoryHandleTypeFlags = VkExternalMemoryHandleTypeBitmask FlagMask
type VkExternalMemoryHandleTypeFlagsNV = VkExternalMemoryHandleTypeBitmaskNV FlagMask
type VkExternalSemaphoreFeatureFlagBits = VkExternalSemaphoreFeatureBitmask FlagBit
newtype VkExternalSemaphoreFeatureFlagBitsKHR
VkExternalSemaphoreFeatureFlagBitsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagBitsKHR
type VkExternalSemaphoreFeatureFlags = VkExternalSemaphoreFeatureBitmask FlagMask
type VkExternalSemaphoreHandleTypeFlagBits = VkExternalSemaphoreHandleTypeBitmask FlagBit
newtype VkExternalSemaphoreHandleTypeFlagBitsKHR
VkExternalSemaphoreHandleTypeFlagBitsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagBitsKHR
type VkExternalSemaphoreHandleTypeFlags = VkExternalSemaphoreHandleTypeBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- | Alias for VkExternalFenceProperties
type VkExternalFencePropertiesKHR = VkExternalFenceProperties
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
type VkGetPhysicalDeviceExternalFencePropertiesKHR = "vkGetPhysicalDeviceExternalFencePropertiesKHR"
pattern VkGetPhysicalDeviceExternalFencePropertiesKHR :: CString
-- | This is an alias for
-- vkGetPhysicalDeviceExternalFenceProperties.
--
-- -- void vkGetPhysicalDeviceExternalFencePropertiesKHR -- ( VkPhysicalDevice physicalDevice -- , const VkPhysicalDeviceExternalFenceInfo* pExternalFenceInfo -- , VkExternalFenceProperties* pExternalFenceProperties -- ) ---- -- vkGetPhysicalDeviceExternalFencePropertiesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDeviceExternalFencePropertiesKHR = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceExternalFenceInfo " pExternalFenceInfo" -> Ptr VkExternalFenceProperties " pExternalFenceProperties" -> IO () type PFN_vkGetPhysicalDeviceExternalFencePropertiesKHR = FunPtr HS_vkGetPhysicalDeviceExternalFencePropertiesKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExternalBufferProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalBufferProperties;
--
--
-- VkExternalBufferProperties registry at www.khronos.org
type VkExternalBufferProperties = VkStruct VkExternalBufferProperties'
-- | Alias for VkExternalBufferProperties
type VkExternalBufferPropertiesKHR = VkExternalBufferProperties
-- |
-- typedef struct VkExternalFenceProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalFenceHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalFenceHandleTypeFlags compatibleHandleTypes;
-- VkExternalFenceFeatureFlags externalFenceFeatures;
-- } VkExternalFenceProperties;
--
--
-- VkExternalFenceProperties registry at www.khronos.org
type VkExternalFenceProperties = VkStruct VkExternalFenceProperties'
-- |
-- typedef struct VkExternalImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalMemoryProperties externalMemoryProperties;
-- } VkExternalImageFormatProperties;
--
--
-- VkExternalImageFormatProperties registry at www.khronos.org
type VkExternalImageFormatProperties = VkStruct VkExternalImageFormatProperties'
-- | Alias for VkExternalImageFormatProperties
type VkExternalImageFormatPropertiesKHR = VkExternalImageFormatProperties
-- |
-- typedef struct VkExternalImageFormatPropertiesNV {
-- VkImageFormatProperties imageFormatProperties;
-- VkExternalMemoryFeatureFlagsNV externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlagsNV compatibleHandleTypes;
-- } VkExternalImageFormatPropertiesNV;
--
--
-- VkExternalImageFormatPropertiesNV registry at www.khronos.org
type VkExternalImageFormatPropertiesNV = VkStruct VkExternalImageFormatPropertiesNV'
-- |
-- typedef struct VkExternalMemoryBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryBufferCreateInfo;
--
--
-- VkExternalMemoryBufferCreateInfo registry at www.khronos.org
type VkExternalMemoryBufferCreateInfo = VkStruct VkExternalMemoryBufferCreateInfo'
-- | Alias for VkExternalMemoryBufferCreateInfo
type VkExternalMemoryBufferCreateInfoKHR = VkExternalMemoryBufferCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlags handleTypes;
-- } VkExternalMemoryImageCreateInfo;
--
--
-- VkExternalMemoryImageCreateInfo registry at www.khronos.org
type VkExternalMemoryImageCreateInfo = VkStruct VkExternalMemoryImageCreateInfo'
-- | Alias for VkExternalMemoryImageCreateInfo
type VkExternalMemoryImageCreateInfoKHR = VkExternalMemoryImageCreateInfo
-- |
-- typedef struct VkExternalMemoryImageCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagsNV handleTypes;
-- } VkExternalMemoryImageCreateInfoNV;
--
--
-- VkExternalMemoryImageCreateInfoNV registry at www.khronos.org
type VkExternalMemoryImageCreateInfoNV = VkStruct VkExternalMemoryImageCreateInfoNV'
-- |
-- typedef struct VkExternalMemoryProperties {
-- VkExternalMemoryFeatureFlags externalMemoryFeatures;
-- VkExternalMemoryHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalMemoryHandleTypeFlags compatibleHandleTypes;
-- } VkExternalMemoryProperties;
--
--
-- VkExternalMemoryProperties registry at www.khronos.org
type VkExternalMemoryProperties = VkStruct VkExternalMemoryProperties'
-- | Alias for VkExternalMemoryProperties
type VkExternalMemoryPropertiesKHR = VkExternalMemoryProperties
-- |
-- typedef struct VkExternalSemaphoreProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes;
-- VkExternalSemaphoreHandleTypeFlags compatibleHandleTypes;
-- VkExternalSemaphoreFeatureFlags externalSemaphoreFeatures;
-- } VkExternalSemaphoreProperties;
--
--
-- VkExternalSemaphoreProperties registry at www.khronos.org
type VkExternalSemaphoreProperties = VkStruct VkExternalSemaphoreProperties'
-- | Alias for VkExternalSemaphoreProperties
type VkExternalSemaphorePropertiesKHR = VkExternalSemaphoreProperties
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
type VK_KHR_EXTERNAL_FENCE_CAPABILITIES_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_FENCE_CAPABILITIES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME = "VK_KHR_external_fence_capabilities"
pattern VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_FENCE_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_EXTERNAL_FENCE_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_LUID_SIZE_KHR :: forall a. (Num a, Eq a) => () => a
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_FD_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceHandleTypeBitmask a
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceHandleTypeBitmask a
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_OPAQUE_WIN32_KMT_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceHandleTypeBitmask a
pattern VK_EXTERNAL_FENCE_HANDLE_TYPE_SYNC_FD_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceHandleTypeBitmask a
pattern VK_EXTERNAL_FENCE_FEATURE_EXPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceFeatureBitmask a
pattern VK_EXTERNAL_FENCE_FEATURE_IMPORTABLE_BIT_KHR :: forall (a :: FlagType). () => () => VkExternalFenceFeatureBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceExternalFencePropertiesKHR"
module Graphics.Vulkan.Ext.VK_KHR_external_fence
-- | Alias for VkExportFenceCreateInfo
type VkExportFenceCreateInfoKHR = VkExportFenceCreateInfo
newtype VkFenceCreateBitmask (a :: FlagType)
VkFenceCreateBitmask :: VkFlags -> VkFenceCreateBitmask
pattern VkFenceCreateFlagBits :: VkFlags -> VkFenceCreateBitmask FlagBit
pattern VkFenceCreateFlags :: VkFlags -> VkFenceCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_CREATE_SIGNALED_BIT :: VkFenceCreateBitmask a
newtype VkFenceImportBitmask (a :: FlagType)
VkFenceImportBitmask :: VkFlags -> VkFenceImportBitmask
pattern VkFenceImportFlagBits :: VkFlags -> VkFenceImportBitmask FlagBit
pattern VkFenceImportFlags :: VkFlags -> VkFenceImportBitmask FlagMask
-- | bitpos = 0
pattern VK_FENCE_IMPORT_TEMPORARY_BIT :: VkFenceImportBitmask a
type VkFenceCreateFlagBits = VkFenceCreateBitmask FlagBit
type VkFenceCreateFlags = VkFenceCreateBitmask FlagMask
type VkFenceImportFlagBits = VkFenceImportBitmask FlagBit
newtype VkFenceImportFlagBitsKHR
VkFenceImportFlagBitsKHR :: VkFlags -> VkFenceImportFlagBitsKHR
type VkFenceImportFlags = VkFenceImportBitmask FlagMask
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
type VK_KHR_EXTERNAL_FENCE_SPEC_VERSION = 1
pattern VK_KHR_EXTERNAL_FENCE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME = "VK_KHR_external_fence"
pattern VK_KHR_EXTERNAL_FENCE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_EXPORT_FENCE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_FENCE_IMPORT_TEMPORARY_BIT_KHR :: forall (a :: FlagType). () => () => VkFenceImportBitmask a
module Graphics.Vulkan.Ext.VK_KHR_device_group_creation
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
type VkEnumeratePhysicalDeviceGroupsKHR = "vkEnumeratePhysicalDeviceGroupsKHR"
pattern VkEnumeratePhysicalDeviceGroupsKHR :: CString
-- | This is an alias for vkEnumeratePhysicalDeviceGroups.
--
-- Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INITIALIZATION_FAILED.
--
-- -- VkResult vkEnumeratePhysicalDeviceGroupsKHR -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceGroupCount -- , VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties -- ) ---- -- vkEnumeratePhysicalDeviceGroupsKHR registry at www.khronos.org type HS_vkEnumeratePhysicalDeviceGroupsKHR = VkInstance " instance" -> Ptr Word32 " pPhysicalDeviceGroupCount" -> Ptr VkPhysicalDeviceGroupProperties " pPhysicalDeviceGroupProperties" -> IO VkResult type PFN_vkEnumeratePhysicalDeviceGroupsKHR = FunPtr HS_vkEnumeratePhysicalDeviceGroupsKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
type VK_KHR_DEVICE_GROUP_CREATION_SPEC_VERSION = 1
pattern VK_KHR_DEVICE_GROUP_CREATION_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME = "VK_KHR_device_group_creation"
pattern VK_KHR_DEVICE_GROUP_CREATION_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_DEVICE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_MAX_DEVICE_GROUP_SIZE_KHR :: forall a. (Num a, Eq a) => () => a
pattern VK_MEMORY_HEAP_MULTI_INSTANCE_BIT_KHR :: forall (a :: FlagType). () => () => VkMemoryHeapBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumeratePhysicalDeviceGroupsKHR"
module Graphics.Vulkan.Ext.VK_KHR_device_group
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
newtype VkMemoryAllocateBitmask (a :: FlagType)
VkMemoryAllocateBitmask :: VkFlags -> VkMemoryAllocateBitmask
pattern VkMemoryAllocateFlagBits :: VkFlags -> VkMemoryAllocateBitmask FlagBit
pattern VkMemoryAllocateFlags :: VkFlags -> VkMemoryAllocateBitmask FlagMask
-- | Force allocation on specific devices
--
-- bitpos = 0
pattern VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT :: VkMemoryAllocateBitmask a
newtype VkMemoryHeapBitmask (a :: FlagType)
VkMemoryHeapBitmask :: VkFlags -> VkMemoryHeapBitmask
pattern VkMemoryHeapFlagBits :: VkFlags -> VkMemoryHeapBitmask FlagBit
pattern VkMemoryHeapFlags :: VkFlags -> VkMemoryHeapBitmask FlagMask
-- | If set, heap represents device memory
--
-- bitpos = 0
pattern VK_MEMORY_HEAP_DEVICE_LOCAL_BIT :: VkMemoryHeapBitmask a
newtype VkMemoryPropertyBitmask (a :: FlagType)
VkMemoryPropertyBitmask :: VkFlags -> VkMemoryPropertyBitmask
pattern VkMemoryPropertyFlagBits :: VkFlags -> VkMemoryPropertyBitmask FlagBit
pattern VkMemoryPropertyFlags :: VkFlags -> VkMemoryPropertyBitmask FlagMask
-- | If otherwise stated, then allocate memory on device
--
-- bitpos = 0
pattern VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT :: VkMemoryPropertyBitmask a
-- | Memory is mappable by host
--
-- bitpos = 1
pattern VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT :: VkMemoryPropertyBitmask a
-- | Memory will have io coherency. If not set, application may need to
-- use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to
-- flushinvalidate host cache
--
-- bitpos = 2
pattern VK_MEMORY_PROPERTY_HOST_COHERENT_BIT :: VkMemoryPropertyBitmask a
-- | Memory will be cached by the host
--
-- bitpos = 3
pattern VK_MEMORY_PROPERTY_HOST_CACHED_BIT :: VkMemoryPropertyBitmask a
-- | Memory may be allocated by the driver when it is required
--
-- bitpos = 4
pattern VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT :: VkMemoryPropertyBitmask a
type VkMemoryAllocateFlagBits = VkMemoryAllocateBitmask FlagBit
newtype VkMemoryAllocateFlagBitsKHR
VkMemoryAllocateFlagBitsKHR :: VkFlags -> VkMemoryAllocateFlagBitsKHR
type VkMemoryAllocateFlags = VkMemoryAllocateBitmask FlagMask
type VkMemoryHeapFlagBits = VkMemoryHeapBitmask FlagBit
type VkMemoryHeapFlags = VkMemoryHeapBitmask FlagMask
type VkMemoryPropertyFlagBits = VkMemoryPropertyBitmask FlagBit
type VkMemoryPropertyFlags = VkMemoryPropertyBitmask FlagMask
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureBitmask (a :: FlagType)
VkPeerMemoryFeatureBitmask :: VkFlags -> VkPeerMemoryFeatureBitmask
pattern VkPeerMemoryFeatureFlagBits :: VkFlags -> VkPeerMemoryFeatureBitmask FlagBit
pattern VkPeerMemoryFeatureFlags :: VkFlags -> VkPeerMemoryFeatureBitmask FlagMask
-- | Can read with vkCmdCopy commands
--
-- bitpos = 0
pattern VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can write with vkCmdCopy commands
--
-- bitpos = 1
pattern VK_PEER_MEMORY_FEATURE_COPY_DST_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can read with any access type/command
--
-- bitpos = 2
pattern VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT :: VkPeerMemoryFeatureBitmask a
-- | Can write with and access type/command
--
-- bitpos = 3
pattern VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT :: VkPeerMemoryFeatureBitmask a
type VkPeerMemoryFeatureFlagBits = VkPeerMemoryFeatureBitmask FlagBit
newtype VkPeerMemoryFeatureFlagBitsKHR
VkPeerMemoryFeatureFlagBitsKHR :: VkFlags -> VkPeerMemoryFeatureFlagBitsKHR
type VkPeerMemoryFeatureFlags = VkPeerMemoryFeatureBitmask FlagMask
type VkGetDeviceGroupPeerMemoryFeaturesKHR = "vkGetDeviceGroupPeerMemoryFeaturesKHR"
pattern VkGetDeviceGroupPeerMemoryFeaturesKHR :: CString
-- | This is an alias for vkGetDeviceGroupPeerMemoryFeatures.
--
-- -- void vkGetDeviceGroupPeerMemoryFeaturesKHR -- ( VkDevice device -- , uint32_t heapIndex -- , uint32_t localDeviceIndex -- , uint32_t remoteDeviceIndex -- , VkPeerMemoryFeatureFlags* pPeerMemoryFeatures -- ) ---- -- vkGetDeviceGroupPeerMemoryFeaturesKHR registry at -- www.khronos.org type HS_vkGetDeviceGroupPeerMemoryFeaturesKHR = VkDevice " device" -> Word32 " heapIndex" -> Word32 " localDeviceIndex" -> Word32 " remoteDeviceIndex" -> Ptr VkPeerMemoryFeatureFlags " pPeerMemoryFeatures" -> IO () type PFN_vkGetDeviceGroupPeerMemoryFeaturesKHR = FunPtr HS_vkGetDeviceGroupPeerMemoryFeaturesKHR type VkCmdSetDeviceMaskKHR = "vkCmdSetDeviceMaskKHR" pattern VkCmdSetDeviceMaskKHR :: CString -- | This is an alias for vkCmdSetDeviceMask. -- -- Queues: graphics, compute, transfer. -- -- Renderpass: both -- --
-- void vkCmdSetDeviceMaskKHR -- ( VkCommandBuffer commandBuffer -- , uint32_t deviceMask -- ) ---- -- vkCmdSetDeviceMaskKHR registry at www.khronos.org type HS_vkCmdSetDeviceMaskKHR = VkCommandBuffer " commandBuffer" -> Word32 " deviceMask" -> IO () type PFN_vkCmdSetDeviceMaskKHR = FunPtr HS_vkCmdSetDeviceMaskKHR type VkCmdDispatchBaseKHR = "vkCmdDispatchBaseKHR" pattern VkCmdDispatchBaseKHR :: CString -- | This is an alias for vkCmdDispatchBase. -- -- Queues: compute. -- -- Renderpass: outside -- --
-- void vkCmdDispatchBaseKHR -- ( VkCommandBuffer commandBuffer -- , uint32_t baseGroupX -- , uint32_t baseGroupY -- , uint32_t baseGroupZ -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatchBaseKHR registry at www.khronos.org type HS_vkCmdDispatchBaseKHR = VkCommandBuffer " commandBuffer" -> Word32 " baseGroupX" -> Word32 " baseGroupY" -> Word32 " baseGroupZ" -> Word32 " groupCountX" -> Word32 " groupCountY" -> Word32 " groupCountZ" -> IO () type PFN_vkCmdDispatchBaseKHR = FunPtr HS_vkCmdDispatchBaseKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_KHR_DEVICE_GROUP_SPEC_VERSION = 3 pattern VK_KHR_DEVICE_GROUP_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_DEVICE_GROUP_EXTENSION_NAME = "VK_KHR_device_group" pattern VK_KHR_DEVICE_GROUP_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_FLAGS_INFO_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_COMMAND_BUFFER_BEGIN_INFO_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_BIND_SPARSE_INFO_KHR :: () => () => VkStructureType pattern VK_PEER_MEMORY_FEATURE_COPY_SRC_BIT_KHR :: forall (a :: FlagType). () => () => VkPeerMemoryFeatureBitmask a pattern VK_PEER_MEMORY_FEATURE_COPY_DST_BIT_KHR :: forall (a :: FlagType). () => () => VkPeerMemoryFeatureBitmask a pattern VK_PEER_MEMORY_FEATURE_GENERIC_SRC_BIT_KHR :: forall (a :: FlagType). () => () => VkPeerMemoryFeatureBitmask a pattern VK_PEER_MEMORY_FEATURE_GENERIC_DST_BIT_KHR :: forall (a :: FlagType). () => () => VkPeerMemoryFeatureBitmask a pattern VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT_KHR :: forall (a :: FlagType). () => () => VkMemoryAllocateBitmask a pattern VK_PIPELINE_CREATE_VIEW_INDEX_FROM_DEVICE_INDEX_BIT_KHR :: forall (a :: FlagType). () => () => VkPipelineCreateBitmask a pattern VK_PIPELINE_CREATE_DISPATCH_BASE_KHR :: forall (a :: FlagType). () => () => VkPipelineCreateBitmask a pattern VK_DEPENDENCY_DEVICE_GROUP_BIT_KHR :: forall (a :: FlagType). () => () => VkDependencyBitmask a -- | Alias for VkBindBufferMemoryDeviceGroupInfo type VkBindBufferMemoryDeviceGroupInfoKHR = VkBindBufferMemoryDeviceGroupInfo -- | Alias for VkBindImageMemoryDeviceGroupInfo type VkBindImageMemoryDeviceGroupInfoKHR = VkBindImageMemoryDeviceGroupInfo pattern VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_DEVICE_GROUP_INFO_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_DEVICE_GROUP_INFO_KHR :: () => () => VkStructureType pattern VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a -- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- | type = enum
--
-- VkDeviceEventTypeEXT registry at www.khronos.org
newtype VkDeviceEventTypeEXT
VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT
pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT
newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType)
VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR
pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit
pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask
-- | Present from local memory
--
-- bitpos = 0
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present from remote memory
--
-- bitpos = 1
pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Present sum of local and/or remote memory
--
-- bitpos = 2
pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
-- | Each physical device presents from local memory
--
-- bitpos = 3
pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a
newtype VkDeviceCreateFlagBits
VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits
type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit
type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask
newtype VkDeviceQueueCreateBitmask (a :: FlagType)
VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask
pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit
pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask
type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit
type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
pattern VkGetDeviceGroupPresentCapabilitiesKHR :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkGetDeviceGroupPresentCapabilitiesKHR -- ( VkDevice device -- , VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities -- ) ---- -- vkGetDeviceGroupPresentCapabilitiesKHR registry at -- www.khronos.org type HS_vkGetDeviceGroupPresentCapabilitiesKHR = VkDevice " device" -> Ptr VkDeviceGroupPresentCapabilitiesKHR " pDeviceGroupPresentCapabilities" -> IO VkResult type PFN_vkGetDeviceGroupPresentCapabilitiesKHR = FunPtr HS_vkGetDeviceGroupPresentCapabilitiesKHR pattern VkGetDeviceGroupSurfacePresentModesKHR :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_SURFACE_LOST_KHR. -- --
-- VkResult vkGetDeviceGroupSurfacePresentModesKHR -- ( VkDevice device -- , VkSurfaceKHR surface -- , VkDeviceGroupPresentModeFlagsKHR* pModes -- ) ---- -- vkGetDeviceGroupSurfacePresentModesKHR registry at -- www.khronos.org type HS_vkGetDeviceGroupSurfacePresentModesKHR = VkDevice " device" -> VkSurfaceKHR " surface" -> Ptr VkDeviceGroupPresentModeFlagsKHR " pModes" -> IO VkResult type PFN_vkGetDeviceGroupSurfacePresentModesKHR = FunPtr HS_vkGetDeviceGroupSurfacePresentModesKHR pattern VkGetPhysicalDevicePresentRectanglesKHR :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPhysicalDevicePresentRectanglesKHR -- ( VkPhysicalDevice physicalDevice -- , VkSurfaceKHR surface -- , uint32_t* pRectCount -- , VkRect2D* pRects -- ) ---- -- vkGetPhysicalDevicePresentRectanglesKHR registry at -- www.khronos.org type HS_vkGetPhysicalDevicePresentRectanglesKHR = VkPhysicalDevice " physicalDevice" -> VkSurfaceKHR " surface" -> Ptr Word32 " pRectCount" -> Ptr VkRect2D " pRects" -> IO VkResult type PFN_vkGetPhysicalDevicePresentRectanglesKHR = FunPtr HS_vkGetPhysicalDevicePresentRectanglesKHR pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_CAPABILITIES_KHR :: VkStructureType -- |
-- typedef struct VkAcquireNextImageInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint64_t timeout;
-- VkSemaphore semaphore;
-- VkFence fence;
-- uint32_t deviceMask;
-- } VkAcquireNextImageInfoKHR;
--
--
-- VkAcquireNextImageInfoKHR registry at www.khronos.org
type VkAcquireNextImageInfoKHR = VkStruct VkAcquireNextImageInfoKHR'
-- |
-- typedef struct VkBindImageMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindImageMemoryInfo;
--
--
-- VkBindImageMemoryInfo registry at www.khronos.org
type VkBindImageMemoryInfo = VkStruct VkBindImageMemoryInfo'
-- |
-- typedef struct VkBindImageMemorySwapchainInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint32_t imageIndex;
-- } VkBindImageMemorySwapchainInfoKHR;
--
--
-- VkBindImageMemorySwapchainInfoKHR registry at www.khronos.org
type VkBindImageMemorySwapchainInfoKHR = VkStruct VkBindImageMemorySwapchainInfoKHR'
newtype VkColorComponentBitmask (a :: FlagType)
VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask
pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit
pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask
-- | bitpos = 0
pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a
-- | bitpos = 1
pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a
-- | bitpos = 2
pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a
-- | bitpos = 3
pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a
-- | type = enum
--
-- VkColorSpaceKHR registry at www.khronos.org
newtype VkColorSpaceKHR
VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR
pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR
type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit
type VkColorComponentFlags = VkColorComponentBitmask FlagMask
newtype VkCompositeAlphaBitmaskKHR (a :: FlagType)
VkCompositeAlphaBitmaskKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR
pattern VkCompositeAlphaFlagBitsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagBit
pattern VkCompositeAlphaFlagsKHR :: VkFlags -> VkCompositeAlphaBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 1
pattern VK_COMPOSITE_ALPHA_PRE_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 2
pattern VK_COMPOSITE_ALPHA_POST_MULTIPLIED_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
-- | bitpos = 3
pattern VK_COMPOSITE_ALPHA_INHERIT_BIT_KHR :: VkCompositeAlphaBitmaskKHR a
type VkCompositeAlphaFlagBitsKHR = VkCompositeAlphaBitmaskKHR FlagBit
type VkCompositeAlphaFlagsKHR = VkCompositeAlphaBitmaskKHR FlagMask
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
newtype VkImageAspectBitmask (a :: FlagType)
VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask
pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit
pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask
-- | bitpos = 0
pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a
-- | bitpos = 1
pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a
-- | bitpos = 2
pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a
-- | bitpos = 3
pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a
newtype VkImageCreateBitmask (a :: FlagType)
VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask
pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit
pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask
-- | Image should support sparse backing
--
-- bitpos = 0
pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a
-- | Image should support sparse backing with partial residency
--
-- bitpos = 1
pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a
-- | Image should support constent data access to physical memory ranges
-- mapped into multiple locations of sparse images
--
-- bitpos = 2
pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a
-- | Allows image views to have different format than the base image
--
-- bitpos = 3
pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a
-- | Allows creating image views with cube type from the created image
--
-- bitpos = 4
pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a
-- | type = enum
--
-- VkImageLayout registry at www.khronos.org
newtype VkImageLayout
VkImageLayout :: Int32 -> VkImageLayout
-- | Implicit layout an image is when its contents are undefined due to
-- various reasons (e.g. right after creation)
pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout
-- | General layout when image can be used for any kind of access
pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout
-- | Optimal layout when image is only used for color attachment read/write
pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is only used for depthstencil attachment
-- readwrite
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only depth/stencil
-- attachment and shader access
pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used for read only shader access
pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as source of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout
-- | Optimal layout when image is used only as destination of transfer
-- operations
pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout
-- | Initial layout used when the data is populated by the CPU
pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout
-- | type = enum
--
-- VkImageTiling registry at www.khronos.org
newtype VkImageTiling
VkImageTiling :: Int32 -> VkImageTiling
pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling
pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling
-- | type = enum
--
-- VkImageType registry at www.khronos.org
newtype VkImageType
VkImageType :: Int32 -> VkImageType
pattern VK_IMAGE_TYPE_1D :: VkImageType
pattern VK_IMAGE_TYPE_2D :: VkImageType
pattern VK_IMAGE_TYPE_3D :: VkImageType
newtype VkImageUsageBitmask (a :: FlagType)
VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask
pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit
pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask
-- | Can be used as a source of transfer operations
--
-- bitpos = 0
pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a
-- | Can be used as a destination of transfer operations
--
-- bitpos = 1
pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a
-- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER
-- descriptor types)
--
-- bitpos = 2
pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a
-- | Can be used as storage image (STORAGE_IMAGE descriptor type)
--
-- bitpos = 3
pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer color attachment
--
-- bitpos = 4
pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer depth/stencil attachment
--
-- bitpos = 5
pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Image data not needed outside of rendering
--
-- bitpos = 6
pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | Can be used as framebuffer input attachment
--
-- bitpos = 7
pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a
-- | type = enum
--
-- VkImageViewType registry at www.khronos.org
newtype VkImageViewType
VkImageViewType :: Int32 -> VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType
pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType
type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit
type VkImageAspectFlags = VkImageAspectBitmask FlagMask
type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit
type VkImageCreateFlags = VkImageCreateBitmask FlagMask
type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit
type VkImageUsageFlags = VkImageUsageBitmask FlagMask
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t swapchainCount;
-- const VkSwapchainKHR* pSwapchains;
-- const uint32_t* pImageIndices;
-- VkResult* pResults;
-- } VkPresentInfoKHR;
--
--
-- VkPresentInfoKHR registry at www.khronos.org
type VkPresentInfoKHR = VkStruct VkPresentInfoKHR'
-- | type = enum
--
-- VkPresentModeKHR registry at www.khronos.org
newtype VkPresentModeKHR
VkPresentModeKHR :: Int32 -> VkPresentModeKHR
pattern VK_PRESENT_MODE_IMMEDIATE_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_MAILBOX_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_FIFO_KHR :: VkPresentModeKHR
pattern VK_PRESENT_MODE_FIFO_RELAXED_KHR :: VkPresentModeKHR
-- | API result codes
--
-- type = enum
--
-- VkResult registry at www.khronos.org
newtype VkResult
VkResult :: Int32 -> VkResult
-- | Command completed successfully
pattern VK_SUCCESS :: VkResult
-- | A fence or query has not yet completed
pattern VK_NOT_READY :: VkResult
-- | A wait operation has not completed in the specified time
pattern VK_TIMEOUT :: VkResult
-- | An event is signaled
pattern VK_EVENT_SET :: VkResult
-- | An event is unsignaled
pattern VK_EVENT_RESET :: VkResult
-- | A return array was too small for the result
pattern VK_INCOMPLETE :: VkResult
-- | A host memory allocation has failed
pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult
-- | A device memory allocation has failed
pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult
-- | Initialization of a object has failed
pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult
-- | The logical device has been lost. See
pattern VK_ERROR_DEVICE_LOST :: VkResult
-- | Mapping of a memory object has failed
pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult
-- | Layer specified does not exist
pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult
-- | Extension specified does not exist
pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult
-- | Requested feature is not available on this device
pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult
-- | Unable to find a Vulkan driver
pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult
-- | Too many objects of the type have already been created
pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult
-- | Requested format is not supported on this device
pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult
-- | A requested pool allocation has failed due to fragmentation of the
-- pool's memory
pattern VK_ERROR_FRAGMENTED_POOL :: VkResult
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkSharingMode registry at www.khronos.org
newtype VkSharingMode
VkSharingMode :: Int32 -> VkSharingMode
pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode
pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode
newtype VkSurfaceCounterBitmaskEXT (a :: FlagType)
VkSurfaceCounterBitmaskEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT
pattern VkSurfaceCounterFlagBitsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagBit
pattern VkSurfaceCounterFlagsEXT :: VkFlags -> VkSurfaceCounterBitmaskEXT FlagMask
-- | bitpos = 0
pattern VK_SURFACE_COUNTER_VBLANK_EXT :: VkSurfaceCounterBitmaskEXT a
newtype VkSurfaceTransformBitmaskKHR (a :: FlagType)
VkSurfaceTransformBitmaskKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR
pattern VkSurfaceTransformFlagBitsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagBit
pattern VkSurfaceTransformFlagsKHR :: VkFlags -> VkSurfaceTransformBitmaskKHR FlagMask
-- | bitpos = 0
pattern VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 1
pattern VK_SURFACE_TRANSFORM_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 2
pattern VK_SURFACE_TRANSFORM_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 3
pattern VK_SURFACE_TRANSFORM_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 4
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 5
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_90_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 6
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_180_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 7
pattern VK_SURFACE_TRANSFORM_HORIZONTAL_MIRROR_ROTATE_270_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
-- | bitpos = 8
pattern VK_SURFACE_TRANSFORM_INHERIT_BIT_KHR :: VkSurfaceTransformBitmaskKHR a
type VkSurfaceCounterFlagBitsEXT = VkSurfaceCounterBitmaskEXT FlagBit
type VkSurfaceCounterFlagsEXT = VkSurfaceCounterBitmaskEXT FlagMask
type VkSurfaceTransformFlagBitsKHR = VkSurfaceTransformBitmaskKHR FlagBit
type VkSurfaceTransformFlagsKHR = VkSurfaceTransformBitmaskKHR FlagMask
newtype VkSwapchainCreateBitmaskKHR (a :: FlagType)
VkSwapchainCreateBitmaskKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR
pattern VkSwapchainCreateFlagBitsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagBit
pattern VkSwapchainCreateFlagsKHR :: VkFlags -> VkSwapchainCreateBitmaskKHR FlagMask
type VkSwapchainCreateFlagBitsKHR = VkSwapchainCreateBitmaskKHR FlagBit
type VkSwapchainCreateFlagsKHR = VkSwapchainCreateBitmaskKHR FlagMask
-- |
-- typedef struct VkSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainCreateFlagsKHR flags;
-- VkSurfaceKHR surface;
-- uint32_t minImageCount;
-- VkFormat imageFormat;
-- VkColorSpaceKHR imageColorSpace;
-- VkExtent2D imageExtent;
-- uint32_t imageArrayLayers;
-- VkImageUsageFlags imageUsage;
-- VkSharingMode imageSharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkSurfaceTransformFlagBitsKHR preTransform;
-- VkCompositeAlphaFlagBitsKHR compositeAlpha;
-- VkPresentModeKHR presentMode;
-- VkBool32 clipped;
-- VkSwapchainKHR oldSwapchain;
-- } VkSwapchainCreateInfoKHR;
--
--
-- VkSwapchainCreateInfoKHR registry at www.khronos.org
type VkSwapchainCreateInfoKHR = VkStruct VkSwapchainCreateInfoKHR'
pattern VkAcquireNextImage2KHR :: CString
-- | Success codes: VK_SUCCESS, VK_TIMEOUT,
-- VK_NOT_READY, VK_SUBOPTIMAL_KHR.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST,
-- VK_ERROR_OUT_OF_DATE_KHR, VK_ERROR_SURFACE_LOST_KHR.
--
-- -- VkResult vkAcquireNextImage2KHR -- ( VkDevice device -- , const VkAcquireNextImageInfoKHR* pAcquireInfo -- , uint32_t* pImageIndex -- ) ---- -- vkAcquireNextImage2KHR registry at www.khronos.org type HS_vkAcquireNextImage2KHR = VkDevice " device" -> Ptr VkAcquireNextImageInfoKHR " pAcquireInfo" -> Ptr Word32 " pImageIndex" -> IO VkResult type PFN_vkAcquireNextImage2KHR = FunPtr HS_vkAcquireNextImage2KHR pattern VK_STRUCTURE_TYPE_IMAGE_SWAPCHAIN_CREATE_INFO_KHR :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_SWAPCHAIN_INFO_KHR :: VkStructureType pattern VK_STRUCTURE_TYPE_ACQUIRE_NEXT_IMAGE_INFO_KHR :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_PRESENT_INFO_KHR :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_GROUP_SWAPCHAIN_CREATE_INFO_KHR :: VkStructureType -- | Allow images with VK_IMAGE_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT -- -- bitpos = 0 pattern VK_SWAPCHAIN_CREATE_SPLIT_INSTANCE_BIND_REGIONS_BIT_KHR :: VkSwapchainCreateBitmaskKHR a instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDispatchBaseKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetDeviceMaskKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceGroupPeerMemoryFeaturesKHR" module Graphics.Vulkan.Ext.VK_KHR_dedicated_allocation -- | Alias for VkMemoryDedicatedAllocateInfo type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo -- | Alias for VkMemoryDedicatedRequirements type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements type VK_KHR_DEDICATED_ALLOCATION_SPEC_VERSION = 3 pattern VK_KHR_DEDICATED_ALLOCATION_SPEC_VERSION :: (Num a, Eq a) => a type VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME = "VK_KHR_dedicated_allocation" pattern VK_KHR_DEDICATED_ALLOCATION_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_MEMORY_DEDICATED_REQUIREMENTS_KHR :: () => () => VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_DEDICATED_ALLOCATE_INFO_KHR :: () => () => VkStructureType module Graphics.Vulkan.Ext.VK_KHR_bind_memory2 -- | Alias for VkBindBufferMemoryInfo type VkBindBufferMemoryInfoKHR = VkBindBufferMemoryInfo -- | Alias for VkBindImageMemoryInfo type VkBindImageMemoryInfoKHR = VkBindImageMemoryInfo type VkBindBufferMemory2KHR = "vkBindBufferMemory2KHR" pattern VkBindBufferMemory2KHR :: CString -- | This is an alias for vkBindBufferMemory2. -- -- Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory2KHR -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindBufferMemoryInfo* pBindInfos -- ) ---- -- vkBindBufferMemory2KHR registry at www.khronos.org type HS_vkBindBufferMemory2KHR = VkDevice " device" -> Word32 " bindInfoCount" -> Ptr VkBindBufferMemoryInfo " pBindInfos" -> IO VkResult type PFN_vkBindBufferMemory2KHR = FunPtr HS_vkBindBufferMemory2KHR type VkBindImageMemory2KHR = "vkBindImageMemory2KHR" pattern VkBindImageMemory2KHR :: CString -- | This is an alias for vkBindImageMemory2. -- -- Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory2KHR -- ( VkDevice device -- , uint32_t bindInfoCount -- , const VkBindImageMemoryInfo* pBindInfos -- ) ---- -- vkBindImageMemory2KHR registry at www.khronos.org type HS_vkBindImageMemory2KHR = VkDevice " device" -> Word32 " bindInfoCount" -> Ptr VkBindImageMemoryInfo " pBindInfos" -> IO VkResult type PFN_vkBindImageMemory2KHR = FunPtr HS_vkBindImageMemory2KHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkBindBufferMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- } VkBindBufferMemoryDeviceGroupInfo;
--
--
-- VkBindBufferMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindBufferMemoryDeviceGroupInfo = VkStruct VkBindBufferMemoryDeviceGroupInfo'
-- | Alias for VkBindBufferMemoryDeviceGroupInfo
type VkBindBufferMemoryDeviceGroupInfoKHR = VkBindBufferMemoryDeviceGroupInfo
-- |
-- typedef struct VkBindBufferMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindBufferMemoryInfo;
--
--
-- VkBindBufferMemoryInfo registry at www.khronos.org
type VkBindBufferMemoryInfo = VkStruct VkBindBufferMemoryInfo'
-- |
-- typedef struct VkBindImageMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- uint32_t splitInstanceBindRegionCount;
-- const VkRect2D* pSplitInstanceBindRegions;
-- } VkBindImageMemoryDeviceGroupInfo;
--
--
-- VkBindImageMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindImageMemoryDeviceGroupInfo = VkStruct VkBindImageMemoryDeviceGroupInfo'
-- | Alias for VkBindImageMemoryDeviceGroupInfo
type VkBindImageMemoryDeviceGroupInfoKHR = VkBindImageMemoryDeviceGroupInfo
-- |
-- typedef struct VkBindImageMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindImageMemoryInfo;
--
--
-- VkBindImageMemoryInfo registry at www.khronos.org
type VkBindImageMemoryInfo = VkStruct VkBindImageMemoryInfo'
-- |
-- typedef struct VkBindImageMemorySwapchainInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint32_t imageIndex;
-- } VkBindImageMemorySwapchainInfoKHR;
--
--
-- VkBindImageMemorySwapchainInfoKHR registry at www.khronos.org
type VkBindImageMemorySwapchainInfoKHR = VkStruct VkBindImageMemorySwapchainInfoKHR'
-- |
-- typedef struct VkBindImagePlaneMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkBindImagePlaneMemoryInfo;
--
--
-- VkBindImagePlaneMemoryInfo registry at www.khronos.org
type VkBindImagePlaneMemoryInfo = VkStruct VkBindImagePlaneMemoryInfo'
-- | Alias for VkBindImagePlaneMemoryInfo
type VkBindImagePlaneMemoryInfoKHR = VkBindImagePlaneMemoryInfo
-- |
-- typedef struct VkBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t bufferBindCount;
-- const VkSparseBufferMemoryBindInfo* pBufferBinds;
-- uint32_t imageOpaqueBindCount;
-- const VkSparseImageOpaqueMemoryBindInfo* pImageOpaqueBinds;
-- uint32_t imageBindCount;
-- const VkSparseImageMemoryBindInfo* pImageBinds;
-- uint32_t signalSemaphoreCount;
-- const VkSemaphore* pSignalSemaphores;
-- } VkBindSparseInfo;
--
--
-- VkBindSparseInfo registry at www.khronos.org
type VkBindSparseInfo = VkStruct VkBindSparseInfo'
type VK_KHR_BIND_MEMORY_2_SPEC_VERSION = 1
pattern VK_KHR_BIND_MEMORY_2_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_BIND_MEMORY_2_EXTENSION_NAME = "VK_KHR_bind_memory2"
pattern VK_KHR_BIND_MEMORY_2_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_BIND_BUFFER_MEMORY_INFO_KHR :: () => () => VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_IMAGE_MEMORY_INFO_KHR :: () => () => VkStructureType
pattern VK_IMAGE_CREATE_ALIAS_BIT_KHR :: forall (a :: FlagType). () => () => VkImageCreateBitmask a
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindImageMemory2KHR"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindBufferMemory2KHR"
module Graphics.Vulkan.Ext.VK_KHR_16bit_storage
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
type VK_KHR_16BIT_STORAGE_SPEC_VERSION = 1
pattern VK_KHR_16BIT_STORAGE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_16BIT_STORAGE_EXTENSION_NAME = "VK_KHR_16bit_storage"
pattern VK_KHR_16BIT_STORAGE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR :: () => () => VkStructureType
module Graphics.Vulkan.Ext.VK_NV_viewport_swizzle
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineViewportStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportStateCreateFlags flags;
-- uint32_t viewportCount;
-- const VkViewport* pViewports;
-- uint32_t scissorCount;
-- const VkRect2D* pScissors;
-- } VkPipelineViewportStateCreateInfo;
--
--
-- VkPipelineViewportStateCreateInfo registry at www.khronos.org
type VkPipelineViewportStateCreateInfo = VkStruct VkPipelineViewportStateCreateInfo'
-- |
-- typedef struct VkPipelineViewportSwizzleStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportSwizzleStateCreateFlagsNV flags;
-- uint32_t viewportCount;
-- const VkViewportSwizzleNV* pViewportSwizzles;
-- } VkPipelineViewportSwizzleStateCreateInfoNV;
--
--
-- VkPipelineViewportSwizzleStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineViewportSwizzleStateCreateInfoNV = VkStruct VkPipelineViewportSwizzleStateCreateInfoNV'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkViewport {
-- float x;
-- float y;
-- float width;
-- float height;
-- float minDepth;
-- float maxDepth;
-- } VkViewport;
--
--
-- VkViewport registry at www.khronos.org
type VkViewport = VkStruct VkViewport'
-- | type = enum
--
-- VkViewportCoordinateSwizzleNV registry at www.khronos.org
newtype VkViewportCoordinateSwizzleNV
VkViewportCoordinateSwizzleNV :: Int32 -> VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_X_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_X_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Y_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Y_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_Z_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_Z_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_POSITIVE_W_NV :: VkViewportCoordinateSwizzleNV
pattern VK_VIEWPORT_COORDINATE_SWIZZLE_NEGATIVE_W_NV :: VkViewportCoordinateSwizzleNV
-- |
-- typedef struct VkViewportSwizzleNV {
-- VkViewportCoordinateSwizzleNV x;
-- VkViewportCoordinateSwizzleNV y;
-- VkViewportCoordinateSwizzleNV z;
-- VkViewportCoordinateSwizzleNV w;
-- } VkViewportSwizzleNV;
--
--
-- VkViewportSwizzleNV registry at www.khronos.org
type VkViewportSwizzleNV = VkStruct VkViewportSwizzleNV'
type VK_NV_VIEWPORT_SWIZZLE_SPEC_VERSION = 1
pattern VK_NV_VIEWPORT_SWIZZLE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_VIEWPORT_SWIZZLE_EXTENSION_NAME = "VK_NV_viewport_swizzle"
pattern VK_NV_VIEWPORT_SWIZZLE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_SWIZZLE_STATE_CREATE_INFO_NV :: VkStructureType
module Graphics.Vulkan.Ext.VK_NV_clip_space_w_scaling
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineViewportStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportStateCreateFlags flags;
-- uint32_t viewportCount;
-- const VkViewport* pViewports;
-- uint32_t scissorCount;
-- const VkRect2D* pScissors;
-- } VkPipelineViewportStateCreateInfo;
--
--
-- VkPipelineViewportStateCreateInfo registry at www.khronos.org
type VkPipelineViewportStateCreateInfo = VkStruct VkPipelineViewportStateCreateInfo'
-- |
-- typedef struct VkPipelineViewportWScalingStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 viewportWScalingEnable;
-- uint32_t viewportCount;
-- const VkViewportWScalingNV* pViewportWScalings;
-- } VkPipelineViewportWScalingStateCreateInfoNV;
--
--
-- VkPipelineViewportWScalingStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineViewportWScalingStateCreateInfoNV = VkStruct VkPipelineViewportWScalingStateCreateInfoNV'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkViewport {
-- float x;
-- float y;
-- float width;
-- float height;
-- float minDepth;
-- float maxDepth;
-- } VkViewport;
--
--
-- VkViewport registry at www.khronos.org
type VkViewport = VkStruct VkViewport'
-- |
-- typedef struct VkViewportWScalingNV {
-- float xcoeff;
-- float ycoeff;
-- } VkViewportWScalingNV;
--
--
-- VkViewportWScalingNV registry at www.khronos.org
type VkViewportWScalingNV = VkStruct VkViewportWScalingNV'
type VkCmdSetViewportWScalingNV = "vkCmdSetViewportWScalingNV"
pattern VkCmdSetViewportWScalingNV :: CString
-- | Queues: graphics.
--
-- Renderpass: both
--
-- -- void vkCmdSetViewportWScalingNV -- ( VkCommandBuffer commandBuffer -- , uint32_t firstViewport -- , uint32_t viewportCount -- , const VkViewportWScalingNV* pViewportWScalings -- ) ---- -- vkCmdSetViewportWScalingNV registry at www.khronos.org type HS_vkCmdSetViewportWScalingNV = VkCommandBuffer " commandBuffer" -> Word32 " firstViewport" -> Word32 " viewportCount" -> Ptr VkViewportWScalingNV " pViewportWScalings" -> IO () type PFN_vkCmdSetViewportWScalingNV = FunPtr HS_vkCmdSetViewportWScalingNV type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkViewportSwizzleNV {
-- VkViewportCoordinateSwizzleNV x;
-- VkViewportCoordinateSwizzleNV y;
-- VkViewportCoordinateSwizzleNV z;
-- VkViewportCoordinateSwizzleNV w;
-- } VkViewportSwizzleNV;
--
--
-- VkViewportSwizzleNV registry at www.khronos.org
type VkViewportSwizzleNV = VkStruct VkViewportSwizzleNV'
type VK_NV_CLIP_SPACE_W_SCALING_SPEC_VERSION = 1
pattern VK_NV_CLIP_SPACE_W_SCALING_SPEC_VERSION :: (Num a, Eq a) => a
type VK_NV_CLIP_SPACE_W_SCALING_EXTENSION_NAME = "VK_NV_clip_space_w_scaling"
pattern VK_NV_CLIP_SPACE_W_SCALING_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_W_SCALING_STATE_CREATE_INFO_NV :: VkStructureType
pattern VK_DYNAMIC_STATE_VIEWPORT_W_SCALING_NV :: VkDynamicState
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetViewportWScalingNV"
module Graphics.Vulkan.Ext.VK_EXT_discard_rectangles
-- | type = enum
--
-- VkBlendFactor registry at www.khronos.org
newtype VkBlendFactor
VkBlendFactor :: Int32 -> VkBlendFactor
pattern VK_BLEND_FACTOR_ZERO :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_DST_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_DST_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_CONSTANT_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_CONSTANT_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC_ALPHA_SATURATE :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC1_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR :: VkBlendFactor
pattern VK_BLEND_FACTOR_SRC1_ALPHA :: VkBlendFactor
pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA :: VkBlendFactor
-- | type = enum
--
-- VkBlendOp registry at www.khronos.org
newtype VkBlendOp
VkBlendOp :: Int32 -> VkBlendOp
pattern VK_BLEND_OP_ADD :: VkBlendOp
pattern VK_BLEND_OP_SUBTRACT :: VkBlendOp
pattern VK_BLEND_OP_REVERSE_SUBTRACT :: VkBlendOp
pattern VK_BLEND_OP_MIN :: VkBlendOp
pattern VK_BLEND_OP_MAX :: VkBlendOp
-- | type = enum
--
-- VkBlendOverlapEXT registry at www.khronos.org
newtype VkBlendOverlapEXT
VkBlendOverlapEXT :: Int32 -> VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_UNCORRELATED_EXT :: VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_DISJOINT_EXT :: VkBlendOverlapEXT
pattern VK_BLEND_OVERLAP_CONJOINT_EXT :: VkBlendOverlapEXT
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
newtype VkColorComponentBitmask (a :: FlagType)
VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask
pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit
pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask
-- | bitpos = 0
pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a
-- | bitpos = 1
pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a
-- | bitpos = 2
pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a
-- | bitpos = 3
pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a
-- | type = enum
--
-- VkColorSpaceKHR registry at www.khronos.org
newtype VkColorSpaceKHR
VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR
pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR
type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit
type VkColorComponentFlags = VkColorComponentBitmask FlagMask
-- | type = enum
--
-- VkCompareOp registry at www.khronos.org
newtype VkCompareOp
VkCompareOp :: Int32 -> VkCompareOp
pattern VK_COMPARE_OP_NEVER :: VkCompareOp
pattern VK_COMPARE_OP_LESS :: VkCompareOp
pattern VK_COMPARE_OP_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_LESS_OR_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_GREATER :: VkCompareOp
pattern VK_COMPARE_OP_NOT_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_GREATER_OR_EQUAL :: VkCompareOp
pattern VK_COMPARE_OP_ALWAYS :: VkCompareOp
newtype VkCullModeBitmask (a :: FlagType)
VkCullModeBitmask :: VkFlags -> VkCullModeBitmask
pattern VkCullModeFlagBits :: VkFlags -> VkCullModeBitmask FlagBit
pattern VkCullModeFlags :: VkFlags -> VkCullModeBitmask FlagMask
pattern VK_CULL_MODE_NONE :: VkCullModeBitmask a
-- | bitpos = 0
pattern VK_CULL_MODE_FRONT_BIT :: VkCullModeBitmask a
-- | bitpos = 1
pattern VK_CULL_MODE_BACK_BIT :: VkCullModeBitmask a
pattern VK_CULL_MODE_FRONT_AND_BACK :: VkCullModeBitmask a
type VkCullModeFlagBits = VkCullModeBitmask FlagBit
type VkCullModeFlags = VkCullModeBitmask FlagMask
-- | type = enum
--
-- VkDiscardRectangleModeEXT registry at www.khronos.org
newtype VkDiscardRectangleModeEXT
VkDiscardRectangleModeEXT :: Int32 -> VkDiscardRectangleModeEXT
pattern VK_DISCARD_RECTANGLE_MODE_INCLUSIVE_EXT :: VkDiscardRectangleModeEXT
pattern VK_DISCARD_RECTANGLE_MODE_EXCLUSIVE_EXT :: VkDiscardRectangleModeEXT
-- | type = enum
--
-- VkDynamicState registry at www.khronos.org
newtype VkDynamicState
VkDynamicState :: Int32 -> VkDynamicState
pattern VK_DYNAMIC_STATE_VIEWPORT :: VkDynamicState
pattern VK_DYNAMIC_STATE_SCISSOR :: VkDynamicState
pattern VK_DYNAMIC_STATE_LINE_WIDTH :: VkDynamicState
pattern VK_DYNAMIC_STATE_DEPTH_BIAS :: VkDynamicState
pattern VK_DYNAMIC_STATE_BLEND_CONSTANTS :: VkDynamicState
pattern VK_DYNAMIC_STATE_DEPTH_BOUNDS :: VkDynamicState
pattern VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK :: VkDynamicState
pattern VK_DYNAMIC_STATE_STENCIL_WRITE_MASK :: VkDynamicState
pattern VK_DYNAMIC_STATE_STENCIL_REFERENCE :: VkDynamicState
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- | Vulkan format definitions
--
-- type = enum
--
-- VkFormat registry at www.khronos.org
newtype VkFormat
VkFormat :: Int32 -> VkFormat
pattern VK_FORMAT_UNDEFINED :: VkFormat
pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat
pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat
pattern VK_FORMAT_R8_UNORM :: VkFormat
pattern VK_FORMAT_R8_SNORM :: VkFormat
pattern VK_FORMAT_R8_USCALED :: VkFormat
pattern VK_FORMAT_R8_SSCALED :: VkFormat
pattern VK_FORMAT_R8_UINT :: VkFormat
pattern VK_FORMAT_R8_SINT :: VkFormat
pattern VK_FORMAT_R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8_UINT :: VkFormat
pattern VK_FORMAT_R8G8_SINT :: VkFormat
pattern VK_FORMAT_R8G8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat
pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat
pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat
pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat
pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat
pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat
pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat
pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat
pattern VK_FORMAT_R16_UNORM :: VkFormat
pattern VK_FORMAT_R16_SNORM :: VkFormat
pattern VK_FORMAT_R16_USCALED :: VkFormat
pattern VK_FORMAT_R16_SSCALED :: VkFormat
pattern VK_FORMAT_R16_UINT :: VkFormat
pattern VK_FORMAT_R16_SINT :: VkFormat
pattern VK_FORMAT_R16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16_UINT :: VkFormat
pattern VK_FORMAT_R16G16_SINT :: VkFormat
pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat
pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat
pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat
pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat
pattern VK_FORMAT_R32_UINT :: VkFormat
pattern VK_FORMAT_R32_SINT :: VkFormat
pattern VK_FORMAT_R32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32_UINT :: VkFormat
pattern VK_FORMAT_R32G32_SINT :: VkFormat
pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat
pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat
pattern VK_FORMAT_R64_UINT :: VkFormat
pattern VK_FORMAT_R64_SINT :: VkFormat
pattern VK_FORMAT_R64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64_UINT :: VkFormat
pattern VK_FORMAT_R64G64_SINT :: VkFormat
pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat
pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat
pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat
pattern VK_FORMAT_D16_UNORM :: VkFormat
pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat
pattern VK_FORMAT_D32_SFLOAT :: VkFormat
pattern VK_FORMAT_S8_UINT :: VkFormat
pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat
pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat
pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat
pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat
newtype VkFormatFeatureBitmask (a :: FlagType)
VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask
pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit
pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask
-- | Format can be used for sampled images (SAMPLED_IMAGE and
-- COMBINED_IMAGE_SAMPLER descriptor types)
--
-- bitpos = 0
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage images (STORAGE_IMAGE descriptor type)
--
-- bitpos = 1
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage
-- images
--
-- bitpos = 2
pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for uniform texel buffers (TBOs)
--
-- bitpos = 3
pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for storage texel buffers (IBOs)
--
-- bitpos = 4
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format supports atomic operations in case it is used for storage texel
-- buffers
--
-- bitpos = 5
pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for vertex buffers (VBOs)
--
-- bitpos = 6
pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for color attachment images
--
-- bitpos = 7
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format supports blending in case it is used for color attachment
-- images
--
-- bitpos = 8
pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a
-- | Format can be used for depth/stencil attachment images
--
-- bitpos = 9
pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the source image of blits with vkCmdBlitImage
--
-- bitpos = 10
pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a
-- | Format can be used as the destination image of blits with
-- vkCmdBlitImage
--
-- bitpos = 11
pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a
-- | Format can be filtered with VK_FILTER_LINEAR when being sampled
--
-- bitpos = 12
pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a
type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit
type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask
-- | type = enum
--
-- VkFrontFace registry at www.khronos.org
newtype VkFrontFace
VkFrontFace :: Int32 -> VkFrontFace
pattern VK_FRONT_FACE_COUNTER_CLOCKWISE :: VkFrontFace
pattern VK_FRONT_FACE_CLOCKWISE :: VkFrontFace
-- |
-- typedef struct VkGraphicsPipelineCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCreateFlags flags;
-- uint32_t stageCount;
-- const VkPipelineShaderStageCreateInfo* pStages;
-- const VkPipelineVertexInputStateCreateInfo* pVertexInputState;
-- const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState;
-- const VkPipelineTessellationStateCreateInfo* pTessellationState;
-- const VkPipelineViewportStateCreateInfo* pViewportState;
-- const VkPipelineRasterizationStateCreateInfo* pRasterizationState;
-- const VkPipelineMultisampleStateCreateInfo* pMultisampleState;
-- const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState;
-- const VkPipelineColorBlendStateCreateInfo* pColorBlendState;
-- const VkPipelineDynamicStateCreateInfo* pDynamicState;
-- VkPipelineLayout layout;
-- VkRenderPass renderPass;
-- uint32_t subpass;
-- VkPipeline basePipelineHandle;
-- int32_t basePipelineIndex;
-- } VkGraphicsPipelineCreateInfo;
--
--
-- VkGraphicsPipelineCreateInfo registry at www.khronos.org
type VkGraphicsPipelineCreateInfo = VkStruct VkGraphicsPipelineCreateInfo'
-- | type = enum
--
-- VkLogicOp registry at www.khronos.org
newtype VkLogicOp
VkLogicOp :: Int32 -> VkLogicOp
pattern VK_LOGIC_OP_CLEAR :: VkLogicOp
pattern VK_LOGIC_OP_AND :: VkLogicOp
pattern VK_LOGIC_OP_AND_REVERSE :: VkLogicOp
pattern VK_LOGIC_OP_COPY :: VkLogicOp
pattern VK_LOGIC_OP_AND_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_NO_OP :: VkLogicOp
pattern VK_LOGIC_OP_XOR :: VkLogicOp
pattern VK_LOGIC_OP_OR :: VkLogicOp
pattern VK_LOGIC_OP_NOR :: VkLogicOp
pattern VK_LOGIC_OP_EQUIVALENT :: VkLogicOp
pattern VK_LOGIC_OP_INVERT :: VkLogicOp
pattern VK_LOGIC_OP_OR_REVERSE :: VkLogicOp
pattern VK_LOGIC_OP_COPY_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_OR_INVERTED :: VkLogicOp
pattern VK_LOGIC_OP_NAND :: VkLogicOp
pattern VK_LOGIC_OP_SET :: VkLogicOp
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
-- |
-- typedef struct VkPipelineColorBlendAttachmentState {
-- VkBool32 blendEnable;
-- VkBlendFactor srcColorBlendFactor;
-- VkBlendFactor dstColorBlendFactor;
-- VkBlendOp colorBlendOp;
-- VkBlendFactor srcAlphaBlendFactor;
-- VkBlendFactor dstAlphaBlendFactor;
-- VkBlendOp alphaBlendOp;
-- VkColorComponentFlags colorWriteMask;
-- } VkPipelineColorBlendAttachmentState;
--
--
-- VkPipelineColorBlendAttachmentState registry at www.khronos.org
type VkPipelineColorBlendAttachmentState = VkStruct VkPipelineColorBlendAttachmentState'
newtype VkAndroidSurfaceCreateFlagsKHR
VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR
newtype VkBufferViewCreateFlags
VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags
newtype VkCommandPoolTrimFlags
VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags
newtype VkCommandPoolTrimFlagsKHR
VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR
newtype VkDebugUtilsMessengerCallbackDataFlagsEXT
VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT
newtype VkDebugUtilsMessengerCreateFlagsEXT
VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT
newtype VkDescriptorPoolResetFlags
VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags
newtype VkDescriptorUpdateTemplateCreateFlags
VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags
newtype VkDescriptorUpdateTemplateCreateFlagsKHR
VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR
newtype VkDeviceCreateFlags
VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags
newtype VkDisplayModeCreateFlagsKHR
VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR
newtype VkDisplaySurfaceCreateFlagsKHR
VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR
newtype VkEventCreateFlags
VkEventCreateFlags :: VkFlags -> VkEventCreateFlags
newtype VkExternalFenceFeatureFlagsKHR
VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR
newtype VkExternalFenceHandleTypeFlagsKHR
VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR
newtype VkExternalMemoryFeatureFlagsKHR
VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR
newtype VkExternalMemoryHandleTypeFlagsKHR
VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR
newtype VkExternalSemaphoreFeatureFlagsKHR
VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR
newtype VkExternalSemaphoreHandleTypeFlagsKHR
VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR
newtype VkFenceImportFlagsKHR
VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR
newtype VkFramebufferCreateFlags
VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags
newtype VkIOSSurfaceCreateFlagsMVK
VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK
newtype VkImageViewCreateFlags
VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags
newtype VkInstanceCreateFlags
VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags
newtype VkMacOSSurfaceCreateFlagsMVK
VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK
newtype VkMemoryAllocateFlagsKHR
VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR
newtype VkMemoryMapFlags
VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags
newtype VkMirSurfaceCreateFlagsKHR
VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR
newtype VkPeerMemoryFeatureFlagsKHR
VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR
newtype VkPipelineCacheCreateFlags
VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags
newtype VkPipelineColorBlendStateCreateFlags
VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags
newtype VkPipelineCoverageModulationStateCreateFlagsNV
VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV
newtype VkPipelineCoverageToColorStateCreateFlagsNV
VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV
newtype VkPipelineDepthStencilStateCreateFlags
VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags
newtype VkPipelineDiscardRectangleStateCreateFlagsEXT
VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT
newtype VkPipelineDynamicStateCreateFlags
VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags
newtype VkPipelineInputAssemblyStateCreateFlags
VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags
newtype VkPipelineLayoutCreateFlags
VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags
newtype VkPipelineMultisampleStateCreateFlags
VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags
newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT
VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT
newtype VkPipelineRasterizationStateCreateFlags
VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags
newtype VkPipelineShaderStageCreateFlags
VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags
newtype VkPipelineTessellationStateCreateFlags
VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags
newtype VkPipelineVertexInputStateCreateFlags
VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags
newtype VkPipelineViewportStateCreateFlags
VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags
newtype VkPipelineViewportSwizzleStateCreateFlagsNV
VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV
newtype VkQueryPoolCreateFlags
VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags
newtype VkRenderPassCreateFlags
VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags
newtype VkSamplerCreateFlags
VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags
newtype VkSemaphoreCreateFlags
VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags
newtype VkSemaphoreImportFlagsKHR
VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR
newtype VkShaderModuleCreateFlags
VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags
newtype VkValidationCacheCreateFlagsEXT
VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT
newtype VkViSurfaceCreateFlagsNN
VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN
newtype VkWaylandSurfaceCreateFlagsKHR
VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR
newtype VkWin32SurfaceCreateFlagsKHR
VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR
newtype VkXcbSurfaceCreateFlagsKHR
VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR
newtype VkXlibSurfaceCreateFlagsKHR
VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR
-- |
-- typedef struct VkPipelineColorBlendStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineColorBlendStateCreateFlags flags;
-- VkBool32 logicOpEnable;
-- VkLogicOp logicOp;
-- uint32_t attachmentCount;
-- const VkPipelineColorBlendAttachmentState* pAttachments;
-- float blendConstants[4];
-- } VkPipelineColorBlendStateCreateInfo;
--
--
-- VkPipelineColorBlendStateCreateInfo registry at www.khronos.org
type VkPipelineColorBlendStateCreateInfo = VkStruct VkPipelineColorBlendStateCreateInfo'
-- | type = enum
--
-- VkPipelineBindPoint registry at www.khronos.org
newtype VkPipelineBindPoint
VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint
pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint
-- | type = enum
--
-- VkPipelineCacheHeaderVersion registry at www.khronos.org
newtype VkPipelineCacheHeaderVersion
VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion
pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion
newtype VkPipelineCreateBitmask (a :: FlagType)
VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask
pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit
pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask
-- | bitpos = 0
pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 1
pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a
-- | bitpos = 2
pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a
newtype VkPipelineStageBitmask (a :: FlagType)
VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask
pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit
pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask
-- | Before subsequent commands are processed
--
-- bitpos = 0
pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Draw/DispatchIndirect command fetch
--
-- bitpos = 1
pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a
-- | Vertex/index fetch
--
-- bitpos = 2
pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a
-- | Vertex shading
--
-- bitpos = 3
pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation control shading
--
-- bitpos = 4
pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a
-- | Tessellation evaluation shading
--
-- bitpos = 5
pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a
-- | Geometry shading
--
-- bitpos = 6
pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a
-- | Fragment shading
--
-- bitpos = 7
pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a
-- | Early fragment (depth and stencil) tests
--
-- bitpos = 8
pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Late fragment (depth and stencil) tests
--
-- bitpos = 9
pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a
-- | Color attachment writes
--
-- bitpos = 10
pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a
-- | Compute shading
--
-- bitpos = 11
pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a
-- | Transfer/copy operations
--
-- bitpos = 12
pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a
-- | After previous commands have completed
--
-- bitpos = 13
pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a
-- | Indicates host (CPU) is a source/sink of the dependency
--
-- bitpos = 14
pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a
-- | All stages of the graphics pipeline
--
-- bitpos = 15
pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a
-- | All stages supported on the queue
--
-- bitpos = 16
pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a
newtype VkPipelineCacheCreateFlagBits
VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits
newtype VkPipelineColorBlendStateCreateFlagBits
VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits
type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit
type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask
newtype VkPipelineDepthStencilStateCreateFlagBits
VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits
newtype VkPipelineDynamicStateCreateFlagBits
VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits
newtype VkPipelineInputAssemblyStateCreateFlagBits
VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits
newtype VkPipelineLayoutCreateFlagBits
VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits
newtype VkPipelineMultisampleStateCreateFlagBits
VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits
newtype VkPipelineRasterizationStateCreateFlagBits
VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits
newtype VkPipelineShaderStageCreateFlagBits
VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits
type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit
type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask
newtype VkPipelineTessellationStateCreateFlagBits
VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits
newtype VkPipelineVertexInputStateCreateFlagBits
VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits
newtype VkPipelineViewportStateCreateFlagBits
VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits
-- |
-- typedef struct VkPipelineDepthStencilStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDepthStencilStateCreateFlags flags;
-- VkBool32 depthTestEnable;
-- VkBool32 depthWriteEnable;
-- VkCompareOp depthCompareOp;
-- VkBool32 depthBoundsTestEnable;
-- VkBool32 stencilTestEnable;
-- VkStencilOpState front;
-- VkStencilOpState back;
-- float minDepthBounds;
-- float maxDepthBounds;
-- } VkPipelineDepthStencilStateCreateInfo;
--
--
-- VkPipelineDepthStencilStateCreateInfo registry at
-- www.khronos.org
type VkPipelineDepthStencilStateCreateInfo = VkStruct VkPipelineDepthStencilStateCreateInfo'
-- |
-- typedef struct VkPipelineDiscardRectangleStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDiscardRectangleStateCreateFlagsEXT flags;
-- VkDiscardRectangleModeEXT discardRectangleMode;
-- uint32_t discardRectangleCount;
-- const VkRect2D* pDiscardRectangles;
-- } VkPipelineDiscardRectangleStateCreateInfoEXT;
--
--
-- VkPipelineDiscardRectangleStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineDiscardRectangleStateCreateInfoEXT = VkStruct VkPipelineDiscardRectangleStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineDynamicStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDynamicStateCreateFlags flags;
-- uint32_t dynamicStateCount;
-- const VkDynamicState* pDynamicStates;
-- } VkPipelineDynamicStateCreateInfo;
--
--
-- VkPipelineDynamicStateCreateInfo registry at www.khronos.org
type VkPipelineDynamicStateCreateInfo = VkStruct VkPipelineDynamicStateCreateInfo'
-- |
-- typedef struct VkPipelineInputAssemblyStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineInputAssemblyStateCreateFlags flags;
-- VkPrimitiveTopology topology;
-- VkBool32 primitiveRestartEnable;
-- } VkPipelineInputAssemblyStateCreateInfo;
--
--
-- VkPipelineInputAssemblyStateCreateInfo registry at
-- www.khronos.org
type VkPipelineInputAssemblyStateCreateInfo = VkStruct VkPipelineInputAssemblyStateCreateInfo'
-- |
-- typedef struct VkPipelineMultisampleStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineMultisampleStateCreateFlags flags;
-- VkSampleCountFlagBits rasterizationSamples;
-- VkBool32 sampleShadingEnable;
-- float minSampleShading;
-- const VkSampleMask* pSampleMask;
-- VkBool32 alphaToCoverageEnable;
-- VkBool32 alphaToOneEnable;
-- } VkPipelineMultisampleStateCreateInfo;
--
--
-- VkPipelineMultisampleStateCreateInfo registry at
-- www.khronos.org
type VkPipelineMultisampleStateCreateInfo = VkStruct VkPipelineMultisampleStateCreateInfo'
-- |
-- typedef struct VkPipelineRasterizationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationStateCreateFlags flags;
-- VkBool32 depthClampEnable;
-- VkBool32 rasterizerDiscardEnable;
-- VkPolygonMode polygonMode;
-- VkCullModeFlags cullMode;
-- VkFrontFace frontFace;
-- VkBool32 depthBiasEnable;
-- float depthBiasConstantFactor;
-- float depthBiasClamp;
-- float depthBiasSlopeFactor;
-- float lineWidth;
-- } VkPipelineRasterizationStateCreateInfo;
--
--
-- VkPipelineRasterizationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineRasterizationStateCreateInfo = VkStruct VkPipelineRasterizationStateCreateInfo'
-- |
-- typedef struct VkPipelineShaderStageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineShaderStageCreateFlags flags;
-- VkShaderStageFlagBits stage;
-- VkShaderModule module;
-- const char* pName;
-- const VkSpecializationInfo* pSpecializationInfo;
-- } VkPipelineShaderStageCreateInfo;
--
--
-- VkPipelineShaderStageCreateInfo registry at www.khronos.org
type VkPipelineShaderStageCreateInfo = VkStruct VkPipelineShaderStageCreateInfo'
-- |
-- typedef struct VkPipelineTessellationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineTessellationStateCreateFlags flags;
-- uint32_t patchControlPoints;
-- } VkPipelineTessellationStateCreateInfo;
--
--
-- VkPipelineTessellationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineTessellationStateCreateInfo = VkStruct VkPipelineTessellationStateCreateInfo'
-- |
-- typedef struct VkPipelineVertexInputStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineVertexInputStateCreateFlags flags;
-- uint32_t vertexBindingDescriptionCount;
-- const VkVertexInputBindingDescription* pVertexBindingDescriptions;
-- uint32_t vertexAttributeDescriptionCount;
-- const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
-- } VkPipelineVertexInputStateCreateInfo;
--
--
-- VkPipelineVertexInputStateCreateInfo registry at
-- www.khronos.org
type VkPipelineVertexInputStateCreateInfo = VkStruct VkPipelineVertexInputStateCreateInfo'
-- |
-- typedef struct VkPipelineViewportStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportStateCreateFlags flags;
-- uint32_t viewportCount;
-- const VkViewport* pViewports;
-- uint32_t scissorCount;
-- const VkRect2D* pScissors;
-- } VkPipelineViewportStateCreateInfo;
--
--
-- VkPipelineViewportStateCreateInfo registry at www.khronos.org
type VkPipelineViewportStateCreateInfo = VkStruct VkPipelineViewportStateCreateInfo'
-- | type = enum
--
-- VkPolygonMode registry at www.khronos.org
newtype VkPolygonMode
VkPolygonMode :: Int32 -> VkPolygonMode
pattern VK_POLYGON_MODE_FILL :: VkPolygonMode
pattern VK_POLYGON_MODE_LINE :: VkPolygonMode
pattern VK_POLYGON_MODE_POINT :: VkPolygonMode
-- | type = enum
--
-- VkPrimitiveTopology registry at www.khronos.org
newtype VkPrimitiveTopology
VkPrimitiveTopology :: Int32 -> VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_POINT_LIST :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_LINE_LIST :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_LINE_STRIP :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY :: VkPrimitiveTopology
pattern VK_PRIMITIVE_TOPOLOGY_PATCH_LIST :: VkPrimitiveTopology
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | type = enum
--
-- VkShaderInfoTypeAMD registry at www.khronos.org
newtype VkShaderInfoTypeAMD
VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD
pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD
newtype VkShaderStageBitmask (a :: FlagType)
VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask
pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit
pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask
-- | bitpos = 0
pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a
-- | bitpos = 1
pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a
-- | bitpos = 2
pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a
-- | bitpos = 3
pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a
-- | bitpos = 4
pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a
-- | bitpos = 5
pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a
pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a
type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit
type VkShaderStageFlags = VkShaderStageBitmask FlagMask
-- |
-- typedef struct VkSpecializationInfo {
-- uint32_t mapEntryCount;
-- const VkSpecializationMapEntry* pMapEntries;
-- size_t dataSize;
-- const void* pData;
-- } VkSpecializationInfo;
--
--
-- VkSpecializationInfo registry at www.khronos.org
type VkSpecializationInfo = VkStruct VkSpecializationInfo'
-- |
-- typedef struct VkSpecializationMapEntry {
-- uint32_t constantID;
-- uint32_t offset;
-- size_t size;
-- } VkSpecializationMapEntry;
--
--
-- VkSpecializationMapEntry registry at www.khronos.org
type VkSpecializationMapEntry = VkStruct VkSpecializationMapEntry'
newtype VkStencilFaceBitmask (a :: FlagType)
VkStencilFaceBitmask :: VkFlags -> VkStencilFaceBitmask
pattern VkStencilFaceFlagBits :: VkFlags -> VkStencilFaceBitmask FlagBit
pattern VkStencilFaceFlags :: VkFlags -> VkStencilFaceBitmask FlagMask
-- | Front face
--
-- bitpos = 0
pattern VK_STENCIL_FACE_FRONT_BIT :: VkStencilFaceBitmask a
-- | Back face
--
-- bitpos = 1
pattern VK_STENCIL_FACE_BACK_BIT :: VkStencilFaceBitmask a
-- | Front and back faces
pattern VK_STENCIL_FRONT_AND_BACK :: VkStencilFaceBitmask a
-- | type = enum
--
-- VkStencilOp registry at www.khronos.org
newtype VkStencilOp
VkStencilOp :: Int32 -> VkStencilOp
pattern VK_STENCIL_OP_KEEP :: VkStencilOp
pattern VK_STENCIL_OP_ZERO :: VkStencilOp
pattern VK_STENCIL_OP_REPLACE :: VkStencilOp
pattern VK_STENCIL_OP_INCREMENT_AND_CLAMP :: VkStencilOp
pattern VK_STENCIL_OP_DECREMENT_AND_CLAMP :: VkStencilOp
pattern VK_STENCIL_OP_INVERT :: VkStencilOp
pattern VK_STENCIL_OP_INCREMENT_AND_WRAP :: VkStencilOp
pattern VK_STENCIL_OP_DECREMENT_AND_WRAP :: VkStencilOp
type VkStencilFaceFlagBits = VkStencilFaceBitmask FlagBit
type VkStencilFaceFlags = VkStencilFaceBitmask FlagMask
-- |
-- typedef struct VkStencilOpState {
-- VkStencilOp failOp;
-- VkStencilOp passOp;
-- VkStencilOp depthFailOp;
-- VkCompareOp compareOp;
-- uint32_t compareMask;
-- uint32_t writeMask;
-- uint32_t reference;
-- } VkStencilOpState;
--
--
-- VkStencilOpState registry at www.khronos.org
type VkStencilOpState = VkStruct VkStencilOpState'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- |
-- typedef struct VkVertexInputAttributeDescription {
-- uint32_t location;
-- uint32_t binding;
-- VkFormat format;
-- uint32_t offset;
-- } VkVertexInputAttributeDescription;
--
--
-- VkVertexInputAttributeDescription registry at www.khronos.org
type VkVertexInputAttributeDescription = VkStruct VkVertexInputAttributeDescription'
-- |
-- typedef struct VkVertexInputBindingDescription {
-- uint32_t binding;
-- uint32_t stride;
-- VkVertexInputRate inputRate;
-- } VkVertexInputBindingDescription;
--
--
-- VkVertexInputBindingDescription registry at www.khronos.org
type VkVertexInputBindingDescription = VkStruct VkVertexInputBindingDescription'
-- | type = enum
--
-- VkVertexInputRate registry at www.khronos.org
newtype VkVertexInputRate
VkVertexInputRate :: Int32 -> VkVertexInputRate
pattern VK_VERTEX_INPUT_RATE_VERTEX :: VkVertexInputRate
pattern VK_VERTEX_INPUT_RATE_INSTANCE :: VkVertexInputRate
-- |
-- typedef struct VkViewport {
-- float x;
-- float y;
-- float width;
-- float height;
-- float minDepth;
-- float maxDepth;
-- } VkViewport;
--
--
-- VkViewport registry at www.khronos.org
type VkViewport = VkStruct VkViewport'
type VkCmdSetDiscardRectangleEXT = "vkCmdSetDiscardRectangleEXT"
pattern VkCmdSetDiscardRectangleEXT :: CString
-- | Queues: graphics.
--
-- Renderpass: both
--
-- -- void vkCmdSetDiscardRectangleEXT -- ( VkCommandBuffer commandBuffer -- , uint32_t firstDiscardRectangle -- , uint32_t discardRectangleCount -- , const VkRect2D* pDiscardRectangles -- ) ---- -- vkCmdSetDiscardRectangleEXT registry at www.khronos.org type HS_vkCmdSetDiscardRectangleEXT = VkCommandBuffer " commandBuffer" -> Word32 " firstDiscardRectangle" -> Word32 " discardRectangleCount" -> Ptr VkRect2D " pDiscardRectangles" -> IO () type PFN_vkCmdSetDiscardRectangleEXT = FunPtr HS_vkCmdSetDiscardRectangleEXT type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
-- |
-- typedef struct VkRectLayerKHR {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- uint32_t layer;
-- } VkRectLayerKHR;
--
--
-- VkRectLayerKHR registry at www.khronos.org
type VkRectLayerKHR = VkStruct VkRectLayerKHR'
type VK_EXT_DISCARD_RECTANGLES_SPEC_VERSION = 1
pattern VK_EXT_DISCARD_RECTANGLES_SPEC_VERSION :: (Num a, Eq a) => a
type VK_EXT_DISCARD_RECTANGLES_EXTENSION_NAME = "VK_EXT_discard_rectangles"
pattern VK_EXT_DISCARD_RECTANGLES_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DISCARD_RECTANGLE_PROPERTIES_EXT :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DISCARD_RECTANGLE_STATE_CREATE_INFO_EXT :: VkStructureType
pattern VK_DYNAMIC_STATE_DISCARD_RECTANGLE_EXT :: VkDynamicState
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetDiscardRectangleEXT"
module Graphics.Vulkan.Ext.VK_KHR_push_descriptor
newtype VkBool32
VkBool32 :: Word32 -> VkBool32
newtype VkDeviceSize
VkDeviceSize :: Word64 -> VkDeviceSize
newtype VkFlags
VkFlags :: Word32 -> VkFlags
newtype VkSampleMask
VkSampleMask :: Word32 -> VkSampleMask
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- | type = enum
--
-- VkPhysicalDeviceType registry at www.khronos.org
newtype VkPhysicalDeviceType
VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType
pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType
newtype VkSampleCountBitmask (a :: FlagType)
VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask
pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit
pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask
-- | Sample count 1 supported
--
-- bitpos = 0
pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a
-- | Sample count 2 supported
--
-- bitpos = 1
pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a
-- | Sample count 4 supported
--
-- bitpos = 2
pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a
-- | Sample count 8 supported
--
-- bitpos = 3
pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a
-- | Sample count 16 supported
--
-- bitpos = 4
pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a
-- | Sample count 32 supported
--
-- bitpos = 5
pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a
-- | Sample count 64 supported
--
-- bitpos = 6
pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a
type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit
type VkSampleCountFlags = VkSampleCountBitmask FlagMask
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
type VkCmdPushDescriptorSetKHR = "vkCmdPushDescriptorSetKHR"
pattern VkCmdPushDescriptorSetKHR :: CString
-- | Queues: graphics, compute.
--
-- Renderpass: both
--
-- -- void vkCmdPushDescriptorSetKHR -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipelineLayout layout -- , uint32_t set -- , uint32_t descriptorWriteCount -- , const VkWriteDescriptorSet* pDescriptorWrites -- ) ---- -- vkCmdPushDescriptorSetKHR registry at www.khronos.org type HS_vkCmdPushDescriptorSetKHR = VkCommandBuffer " commandBuffer" -> VkPipelineBindPoint " pipelineBindPoint" -> VkPipelineLayout " layout" -> Word32 " set" -> Word32 " descriptorWriteCount" -> Ptr VkWriteDescriptorSet " pDescriptorWrites" -> IO () type PFN_vkCmdPushDescriptorSetKHR = FunPtr HS_vkCmdPushDescriptorSetKHR newtype VkDescriptorBindingBitmaskEXT (a :: FlagType) VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 1 pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 2 pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 3 pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a newtype VkDescriptorPoolCreateBitmask (a :: FlagType) VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask -- | Descriptor sets may be freed individually -- -- bitpos = 0 pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a -- | type = enum -- -- VkDescriptorType registry at www.khronos.org newtype VkDescriptorType VkDescriptorType :: Int32 -> VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType -- | type = enum -- -- VkDescriptorUpdateTemplateType registry at www.khronos.org newtype VkDescriptorUpdateTemplateType VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType -- | Create descriptor update template for descriptor set updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType) VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask newtype VkDescriptorUpdateTemplateTypeKHR VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | type = enum -- -- VkPipelineBindPoint registry at www.khronos.org newtype VkPipelineBindPoint VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint -- | type = enum -- -- VkPipelineCacheHeaderVersion registry at www.khronos.org newtype VkPipelineCacheHeaderVersion VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion newtype VkPipelineCreateBitmask (a :: FlagType) VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask -- | bitpos = 0 pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a -- | bitpos = 1 pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a -- | bitpos = 2 pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a newtype VkPipelineStageBitmask (a :: FlagType) VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask -- | Before subsequent commands are processed -- -- bitpos = 0 pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Draw/DispatchIndirect command fetch -- -- bitpos = 1 pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a -- | Vertex/index fetch -- -- bitpos = 2 pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a -- | Vertex shading -- -- bitpos = 3 pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation control shading -- -- bitpos = 4 pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation evaluation shading -- -- bitpos = 5 pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a -- | Geometry shading -- -- bitpos = 6 pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a -- | Fragment shading -- -- bitpos = 7 pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a -- | Early fragment (depth and stencil) tests -- -- bitpos = 8 pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Late fragment (depth and stencil) tests -- -- bitpos = 9 pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Color attachment writes -- -- bitpos = 10 pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a -- | Compute shading -- -- bitpos = 11 pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a -- | Transfer/copy operations -- -- bitpos = 12 pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a -- | After previous commands have completed -- -- bitpos = 13 pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Indicates host (CPU) is a source/sink of the dependency -- -- bitpos = 14 pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a -- | All stages of the graphics pipeline -- -- bitpos = 15 pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a -- | All stages supported on the queue -- -- bitpos = 16 pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a newtype VkPipelineCacheCreateFlagBits VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits newtype VkPipelineColorBlendStateCreateFlagBits VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask newtype VkPipelineDepthStencilStateCreateFlagBits VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits newtype VkPipelineDynamicStateCreateFlagBits VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits newtype VkPipelineInputAssemblyStateCreateFlagBits VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits newtype VkPipelineLayoutCreateFlagBits VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits newtype VkPipelineMultisampleStateCreateFlagBits VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits newtype VkPipelineRasterizationStateCreateFlagBits VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits newtype VkPipelineShaderStageCreateFlagBits VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask newtype VkPipelineTessellationStateCreateFlagBits VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits newtype VkPipelineVertexInputStateCreateFlagBits VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits newtype VkPipelineViewportStateCreateFlagBits VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkDescriptorBufferInfo {
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkDescriptorBufferInfo;
--
--
-- VkDescriptorBufferInfo registry at www.khronos.org
type VkDescriptorBufferInfo = VkStruct VkDescriptorBufferInfo'
-- |
-- typedef struct VkDescriptorImageInfo {
-- VkSampler sampler;
-- VkImageView imageView;
-- VkImageLayout imageLayout;
-- } VkDescriptorImageInfo;
--
--
-- VkDescriptorImageInfo registry at www.khronos.org
type VkDescriptorImageInfo = VkStruct VkDescriptorImageInfo'
-- |
-- typedef struct VkDescriptorPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPoolCreateFlags flags;
-- uint32_t maxSets;
-- uint32_t poolSizeCount;
-- const VkDescriptorPoolSize* pPoolSizes;
-- } VkDescriptorPoolCreateInfo;
--
--
-- VkDescriptorPoolCreateInfo registry at www.khronos.org
type VkDescriptorPoolCreateInfo = VkStruct VkDescriptorPoolCreateInfo'
-- |
-- typedef struct VkDescriptorPoolSize {
-- VkDescriptorType type;
-- uint32_t descriptorCount;
-- } VkDescriptorPoolSize;
--
--
-- VkDescriptorPoolSize registry at www.khronos.org
type VkDescriptorPoolSize = VkStruct VkDescriptorPoolSize'
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- | Alias for VkDescriptorSetLayoutSupport
type VkDescriptorSetLayoutSupportKHR = VkDescriptorSetLayoutSupport
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
-- |
-- typedef struct VkDescriptorUpdateTemplateCreateInfo {
-- VkStructureType sType;
-- void* pNext;
-- VkDescriptorUpdateTemplateCreateFlags flags;
-- uint32_t descriptorUpdateEntryCount;
-- const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
-- VkDescriptorUpdateTemplateType templateType;
-- VkDescriptorSetLayout descriptorSetLayout;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkPipelineLayoutpipelineLayout;
-- uint32_t set;
-- } VkDescriptorUpdateTemplateCreateInfo;
--
--
-- VkDescriptorUpdateTemplateCreateInfo registry at
-- www.khronos.org
type VkDescriptorUpdateTemplateCreateInfo = VkStruct VkDescriptorUpdateTemplateCreateInfo'
-- | Alias for VkDescriptorUpdateTemplateCreateInfo
type VkDescriptorUpdateTemplateCreateInfoKHR = VkDescriptorUpdateTemplateCreateInfo
-- |
-- typedef struct VkDescriptorUpdateTemplateEntry {
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- size_t offset;
-- size_t stride;
-- } VkDescriptorUpdateTemplateEntry;
--
--
-- VkDescriptorUpdateTemplateEntry registry at www.khronos.org
type VkDescriptorUpdateTemplateEntry = VkStruct VkDescriptorUpdateTemplateEntry'
-- | Alias for VkDescriptorUpdateTemplateEntry
type VkDescriptorUpdateTemplateEntryKHR = VkDescriptorUpdateTemplateEntry
-- |
-- typedef struct VkWriteDescriptorSet {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSet dstSet;
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- const VkDescriptorImageInfo* pImageInfo;
-- const VkDescriptorBufferInfo* pBufferInfo;
-- const VkBufferView* pTexelBufferView;
-- } VkWriteDescriptorSet;
--
--
-- VkWriteDescriptorSet registry at www.khronos.org
type VkWriteDescriptorSet = VkStruct VkWriteDescriptorSet'
type VK_KHR_PUSH_DESCRIPTOR_SPEC_VERSION = 2
pattern VK_KHR_PUSH_DESCRIPTOR_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME = "VK_KHR_push_descriptor"
pattern VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR :: VkStructureType
-- | Descriptors are pushed via flink:vkCmdPushDescriptorSetKHR
--
-- bitpos = 0
pattern VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR :: VkDescriptorSetLayoutCreateBitmask a
type VkCmdPushDescriptorSetWithTemplateKHR = "vkCmdPushDescriptorSetWithTemplateKHR"
pattern VkCmdPushDescriptorSetWithTemplateKHR :: CString
-- | Queues: graphics, compute.
--
-- Renderpass: both
--
-- -- void vkCmdPushDescriptorSetWithTemplateKHR -- ( VkCommandBuffer commandBuffer -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , VkPipelineLayout layout -- , uint32_t set -- , const void* pData -- ) ---- -- vkCmdPushDescriptorSetWithTemplateKHR registry at -- www.khronos.org type HS_vkCmdPushDescriptorSetWithTemplateKHR = VkCommandBuffer " commandBuffer" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> VkPipelineLayout " layout" -> Word32 " set" -> Ptr Void " pData" -> IO () type PFN_vkCmdPushDescriptorSetWithTemplateKHR = FunPtr HS_vkCmdPushDescriptorSetWithTemplateKHR -- | Create descriptor update template for pushed descriptor updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR :: VkDescriptorUpdateTemplateType instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdPushDescriptorSetWithTemplateKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdPushDescriptorSetKHR" module Graphics.Vulkan.Ext.VK_KHR_descriptor_update_template newtype VkAndroidSurfaceCreateFlagsKHR VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR newtype VkBufferViewCreateFlags VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags newtype VkCommandPoolTrimFlags VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags newtype VkCommandPoolTrimFlagsKHR VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR newtype VkDebugUtilsMessengerCallbackDataFlagsEXT VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT newtype VkDebugUtilsMessengerCreateFlagsEXT VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT newtype VkDescriptorPoolResetFlags VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags newtype VkDescriptorUpdateTemplateCreateFlags VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags newtype VkDescriptorUpdateTemplateCreateFlagsKHR VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR newtype VkDeviceCreateFlags VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags newtype VkDisplayModeCreateFlagsKHR VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR newtype VkDisplaySurfaceCreateFlagsKHR VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR newtype VkEventCreateFlags VkEventCreateFlags :: VkFlags -> VkEventCreateFlags newtype VkExternalFenceFeatureFlagsKHR VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR newtype VkExternalFenceHandleTypeFlagsKHR VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR newtype VkExternalMemoryFeatureFlagsKHR VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR newtype VkExternalMemoryHandleTypeFlagsKHR VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR newtype VkExternalSemaphoreFeatureFlagsKHR VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR newtype VkExternalSemaphoreHandleTypeFlagsKHR VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR newtype VkFenceImportFlagsKHR VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR newtype VkFramebufferCreateFlags VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags newtype VkIOSSurfaceCreateFlagsMVK VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK newtype VkImageViewCreateFlags VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags newtype VkInstanceCreateFlags VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags newtype VkMacOSSurfaceCreateFlagsMVK VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK newtype VkMemoryAllocateFlagsKHR VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR newtype VkMemoryMapFlags VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags newtype VkMirSurfaceCreateFlagsKHR VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR newtype VkPeerMemoryFeatureFlagsKHR VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR newtype VkPipelineCacheCreateFlags VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags newtype VkPipelineColorBlendStateCreateFlags VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags newtype VkPipelineCoverageModulationStateCreateFlagsNV VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV newtype VkPipelineCoverageToColorStateCreateFlagsNV VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV newtype VkPipelineDepthStencilStateCreateFlags VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags newtype VkPipelineDiscardRectangleStateCreateFlagsEXT VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT newtype VkPipelineDynamicStateCreateFlags VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags newtype VkPipelineInputAssemblyStateCreateFlags VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags newtype VkPipelineLayoutCreateFlags VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags newtype VkPipelineMultisampleStateCreateFlags VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT newtype VkPipelineRasterizationStateCreateFlags VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags newtype VkPipelineShaderStageCreateFlags VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags newtype VkPipelineTessellationStateCreateFlags VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags newtype VkPipelineVertexInputStateCreateFlags VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags newtype VkPipelineViewportStateCreateFlags VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags newtype VkPipelineViewportSwizzleStateCreateFlagsNV VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV newtype VkQueryPoolCreateFlags VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags newtype VkRenderPassCreateFlags VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags newtype VkSamplerCreateFlags VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags newtype VkSemaphoreCreateFlags VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags newtype VkSemaphoreImportFlagsKHR VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR newtype VkShaderModuleCreateFlags VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags newtype VkValidationCacheCreateFlagsEXT VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT newtype VkViSurfaceCreateFlagsNN VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN newtype VkWaylandSurfaceCreateFlagsKHR VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR newtype VkWin32SurfaceCreateFlagsKHR VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR newtype VkXcbSurfaceCreateFlagsKHR VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR newtype VkXlibSurfaceCreateFlagsKHR VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR -- | Alias for VkDescriptorUpdateTemplateCreateInfo type VkDescriptorUpdateTemplateCreateInfoKHR = VkDescriptorUpdateTemplateCreateInfo -- | Alias for VkDescriptorUpdateTemplateEntry type VkDescriptorUpdateTemplateEntryKHR = VkDescriptorUpdateTemplateEntry newtype VkDescriptorBindingBitmaskEXT (a :: FlagType) VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 1 pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 2 pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 3 pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a newtype VkDescriptorPoolCreateBitmask (a :: FlagType) VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask -- | Descriptor sets may be freed individually -- -- bitpos = 0 pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a -- | type = enum -- -- VkDescriptorType registry at www.khronos.org newtype VkDescriptorType VkDescriptorType :: Int32 -> VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType -- | type = enum -- -- VkDescriptorUpdateTemplateType registry at www.khronos.org newtype VkDescriptorUpdateTemplateType VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType -- | Create descriptor update template for descriptor set updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType) VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask newtype VkDescriptorUpdateTemplateTypeKHR VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR type VkCreateDescriptorUpdateTemplateKHR = "vkCreateDescriptorUpdateTemplateKHR" pattern VkCreateDescriptorUpdateTemplateKHR :: CString -- | This is an alias for vkCreateDescriptorUpdateTemplate. -- -- Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorUpdateTemplateKHR -- ( VkDevice device -- , const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate -- ) ---- -- vkCreateDescriptorUpdateTemplateKHR registry at www.khronos.org type HS_vkCreateDescriptorUpdateTemplateKHR = VkDevice " device" -> Ptr VkDescriptorUpdateTemplateCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDescriptorUpdateTemplate " pDescriptorUpdateTemplate" -> IO VkResult type PFN_vkCreateDescriptorUpdateTemplateKHR = FunPtr HS_vkCreateDescriptorUpdateTemplateKHR type VkDestroyDescriptorUpdateTemplateKHR = "vkDestroyDescriptorUpdateTemplateKHR" pattern VkDestroyDescriptorUpdateTemplateKHR :: CString -- | This is an alias for vkDestroyDescriptorUpdateTemplate. -- --
-- void vkDestroyDescriptorUpdateTemplateKHR -- ( VkDevice device -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorUpdateTemplateKHR registry at -- www.khronos.org type HS_vkDestroyDescriptorUpdateTemplateKHR = VkDevice " device" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDescriptorUpdateTemplateKHR = FunPtr HS_vkDestroyDescriptorUpdateTemplateKHR type VkUpdateDescriptorSetWithTemplateKHR = "vkUpdateDescriptorSetWithTemplateKHR" pattern VkUpdateDescriptorSetWithTemplateKHR :: CString -- | This is an alias for vkUpdateDescriptorSetWithTemplate. -- --
-- void vkUpdateDescriptorSetWithTemplateKHR -- ( VkDevice device -- , VkDescriptorSet descriptorSet -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , const void* pData -- ) ---- -- vkUpdateDescriptorSetWithTemplateKHR registry at -- www.khronos.org type HS_vkUpdateDescriptorSetWithTemplateKHR = VkDevice " device" -> VkDescriptorSet " descriptorSet" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> Ptr Void " pData" -> IO () type PFN_vkUpdateDescriptorSetWithTemplateKHR = FunPtr HS_vkUpdateDescriptorSetWithTemplateKHR newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType -- | type = enum -- -- VkPipelineBindPoint registry at www.khronos.org newtype VkPipelineBindPoint VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint -- | type = enum -- -- VkPipelineCacheHeaderVersion registry at www.khronos.org newtype VkPipelineCacheHeaderVersion VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion newtype VkPipelineCreateBitmask (a :: FlagType) VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask -- | bitpos = 0 pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a -- | bitpos = 1 pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a -- | bitpos = 2 pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a newtype VkPipelineStageBitmask (a :: FlagType) VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask -- | Before subsequent commands are processed -- -- bitpos = 0 pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Draw/DispatchIndirect command fetch -- -- bitpos = 1 pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a -- | Vertex/index fetch -- -- bitpos = 2 pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a -- | Vertex shading -- -- bitpos = 3 pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation control shading -- -- bitpos = 4 pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation evaluation shading -- -- bitpos = 5 pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a -- | Geometry shading -- -- bitpos = 6 pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a -- | Fragment shading -- -- bitpos = 7 pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a -- | Early fragment (depth and stencil) tests -- -- bitpos = 8 pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Late fragment (depth and stencil) tests -- -- bitpos = 9 pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Color attachment writes -- -- bitpos = 10 pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a -- | Compute shading -- -- bitpos = 11 pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a -- | Transfer/copy operations -- -- bitpos = 12 pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a -- | After previous commands have completed -- -- bitpos = 13 pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Indicates host (CPU) is a source/sink of the dependency -- -- bitpos = 14 pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a -- | All stages of the graphics pipeline -- -- bitpos = 15 pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a -- | All stages supported on the queue -- -- bitpos = 16 pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a newtype VkPipelineCacheCreateFlagBits VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits newtype VkPipelineColorBlendStateCreateFlagBits VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask newtype VkPipelineDepthStencilStateCreateFlagBits VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits newtype VkPipelineDynamicStateCreateFlagBits VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits newtype VkPipelineInputAssemblyStateCreateFlagBits VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits newtype VkPipelineLayoutCreateFlagBits VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits newtype VkPipelineMultisampleStateCreateFlagBits VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits newtype VkPipelineRasterizationStateCreateFlagBits VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits newtype VkPipelineShaderStageCreateFlagBits VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask newtype VkPipelineTessellationStateCreateFlagBits VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits newtype VkPipelineVertexInputStateCreateFlagBits VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits newtype VkPipelineViewportStateCreateFlagBits VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkDescriptorBufferInfo {
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkDescriptorBufferInfo;
--
--
-- VkDescriptorBufferInfo registry at www.khronos.org
type VkDescriptorBufferInfo = VkStruct VkDescriptorBufferInfo'
-- |
-- typedef struct VkDescriptorImageInfo {
-- VkSampler sampler;
-- VkImageView imageView;
-- VkImageLayout imageLayout;
-- } VkDescriptorImageInfo;
--
--
-- VkDescriptorImageInfo registry at www.khronos.org
type VkDescriptorImageInfo = VkStruct VkDescriptorImageInfo'
-- |
-- typedef struct VkDescriptorPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPoolCreateFlags flags;
-- uint32_t maxSets;
-- uint32_t poolSizeCount;
-- const VkDescriptorPoolSize* pPoolSizes;
-- } VkDescriptorPoolCreateInfo;
--
--
-- VkDescriptorPoolCreateInfo registry at www.khronos.org
type VkDescriptorPoolCreateInfo = VkStruct VkDescriptorPoolCreateInfo'
-- |
-- typedef struct VkDescriptorPoolSize {
-- VkDescriptorType type;
-- uint32_t descriptorCount;
-- } VkDescriptorPoolSize;
--
--
-- VkDescriptorPoolSize registry at www.khronos.org
type VkDescriptorPoolSize = VkStruct VkDescriptorPoolSize'
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- | Alias for VkDescriptorSetLayoutSupport
type VkDescriptorSetLayoutSupportKHR = VkDescriptorSetLayoutSupport
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
-- |
-- typedef struct VkDescriptorUpdateTemplateCreateInfo {
-- VkStructureType sType;
-- void* pNext;
-- VkDescriptorUpdateTemplateCreateFlags flags;
-- uint32_t descriptorUpdateEntryCount;
-- const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
-- VkDescriptorUpdateTemplateType templateType;
-- VkDescriptorSetLayout descriptorSetLayout;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkPipelineLayoutpipelineLayout;
-- uint32_t set;
-- } VkDescriptorUpdateTemplateCreateInfo;
--
--
-- VkDescriptorUpdateTemplateCreateInfo registry at
-- www.khronos.org
type VkDescriptorUpdateTemplateCreateInfo = VkStruct VkDescriptorUpdateTemplateCreateInfo'
-- |
-- typedef struct VkDescriptorUpdateTemplateEntry {
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- size_t offset;
-- size_t stride;
-- } VkDescriptorUpdateTemplateEntry;
--
--
-- VkDescriptorUpdateTemplateEntry registry at www.khronos.org
type VkDescriptorUpdateTemplateEntry = VkStruct VkDescriptorUpdateTemplateEntry'
type VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_SPEC_VERSION = 1
pattern VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_SPEC_VERSION :: (Num a, Eq a) => a
type VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_EXTENSION_NAME = "VK_KHR_descriptor_update_template"
pattern VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_EXTENSION_NAME :: CString
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_CREATE_INFO_KHR :: () => () => VkStructureType
pattern VK_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR :: () => () => VkObjectType
pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET_KHR :: () => () => VkDescriptorUpdateTemplateType
pattern VkCmdPushDescriptorSetWithTemplateKHR :: CString
-- | Queues: graphics, compute.
--
-- Renderpass: both
--
-- -- void vkCmdPushDescriptorSetWithTemplateKHR -- ( VkCommandBuffer commandBuffer -- , VkDescriptorUpdateTemplate descriptorUpdateTemplate -- , VkPipelineLayout layout -- , uint32_t set -- , const void* pData -- ) ---- -- vkCmdPushDescriptorSetWithTemplateKHR registry at -- www.khronos.org type HS_vkCmdPushDescriptorSetWithTemplateKHR = VkCommandBuffer " commandBuffer" -> VkDescriptorUpdateTemplate " descriptorUpdateTemplate" -> VkPipelineLayout " layout" -> Word32 " set" -> Ptr Void " pData" -> IO () type PFN_vkCmdPushDescriptorSetWithTemplateKHR = FunPtr HS_vkCmdPushDescriptorSetWithTemplateKHR -- | Create descriptor update template for pushed descriptor updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_PUSH_DESCRIPTORS_KHR :: VkDescriptorUpdateTemplateType pattern VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_KHR_EXT :: () => () => VkDebugReportObjectTypeEXT instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkUpdateDescriptorSetWithTemplateKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDescriptorUpdateTemplateKHR" instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDescriptorUpdateTemplateKHR" module Graphics.Vulkan.Core_1_0 -- | type = enum -- -- VkPipelineBindPoint registry at www.khronos.org newtype VkPipelineBindPoint VkPipelineBindPoint :: Int32 -> VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_GRAPHICS :: VkPipelineBindPoint pattern VK_PIPELINE_BIND_POINT_COMPUTE :: VkPipelineBindPoint -- | type = enum -- -- VkPipelineCacheHeaderVersion registry at www.khronos.org newtype VkPipelineCacheHeaderVersion VkPipelineCacheHeaderVersion :: Int32 -> VkPipelineCacheHeaderVersion pattern VK_PIPELINE_CACHE_HEADER_VERSION_ONE :: VkPipelineCacheHeaderVersion newtype VkPipelineCreateBitmask (a :: FlagType) VkPipelineCreateBitmask :: VkFlags -> VkPipelineCreateBitmask pattern VkPipelineCreateFlagBits :: VkFlags -> VkPipelineCreateBitmask FlagBit pattern VkPipelineCreateFlags :: VkFlags -> VkPipelineCreateBitmask FlagMask -- | bitpos = 0 pattern VK_PIPELINE_CREATE_DISABLE_OPTIMIZATION_BIT :: VkPipelineCreateBitmask a -- | bitpos = 1 pattern VK_PIPELINE_CREATE_ALLOW_DERIVATIVES_BIT :: VkPipelineCreateBitmask a -- | bitpos = 2 pattern VK_PIPELINE_CREATE_DERIVATIVE_BIT :: VkPipelineCreateBitmask a newtype VkPipelineStageBitmask (a :: FlagType) VkPipelineStageBitmask :: VkFlags -> VkPipelineStageBitmask pattern VkPipelineStageFlagBits :: VkFlags -> VkPipelineStageBitmask FlagBit pattern VkPipelineStageFlags :: VkFlags -> VkPipelineStageBitmask FlagMask -- | Before subsequent commands are processed -- -- bitpos = 0 pattern VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Draw/DispatchIndirect command fetch -- -- bitpos = 1 pattern VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT :: VkPipelineStageBitmask a -- | Vertex/index fetch -- -- bitpos = 2 pattern VK_PIPELINE_STAGE_VERTEX_INPUT_BIT :: VkPipelineStageBitmask a -- | Vertex shading -- -- bitpos = 3 pattern VK_PIPELINE_STAGE_VERTEX_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation control shading -- -- bitpos = 4 pattern VK_PIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT :: VkPipelineStageBitmask a -- | Tessellation evaluation shading -- -- bitpos = 5 pattern VK_PIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT :: VkPipelineStageBitmask a -- | Geometry shading -- -- bitpos = 6 pattern VK_PIPELINE_STAGE_GEOMETRY_SHADER_BIT :: VkPipelineStageBitmask a -- | Fragment shading -- -- bitpos = 7 pattern VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT :: VkPipelineStageBitmask a -- | Early fragment (depth and stencil) tests -- -- bitpos = 8 pattern VK_PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Late fragment (depth and stencil) tests -- -- bitpos = 9 pattern VK_PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT :: VkPipelineStageBitmask a -- | Color attachment writes -- -- bitpos = 10 pattern VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT :: VkPipelineStageBitmask a -- | Compute shading -- -- bitpos = 11 pattern VK_PIPELINE_STAGE_COMPUTE_SHADER_BIT :: VkPipelineStageBitmask a -- | Transfer/copy operations -- -- bitpos = 12 pattern VK_PIPELINE_STAGE_TRANSFER_BIT :: VkPipelineStageBitmask a -- | After previous commands have completed -- -- bitpos = 13 pattern VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT :: VkPipelineStageBitmask a -- | Indicates host (CPU) is a source/sink of the dependency -- -- bitpos = 14 pattern VK_PIPELINE_STAGE_HOST_BIT :: VkPipelineStageBitmask a -- | All stages of the graphics pipeline -- -- bitpos = 15 pattern VK_PIPELINE_STAGE_ALL_GRAPHICS_BIT :: VkPipelineStageBitmask a -- | All stages supported on the queue -- -- bitpos = 16 pattern VK_PIPELINE_STAGE_ALL_COMMANDS_BIT :: VkPipelineStageBitmask a newtype VkPipelineCacheCreateFlagBits VkPipelineCacheCreateFlagBits :: VkFlags -> VkPipelineCacheCreateFlagBits newtype VkPipelineColorBlendStateCreateFlagBits VkPipelineColorBlendStateCreateFlagBits :: VkFlags -> VkPipelineColorBlendStateCreateFlagBits type VkPipelineCreateFlagBits = VkPipelineCreateBitmask FlagBit type VkPipelineCreateFlags = VkPipelineCreateBitmask FlagMask newtype VkPipelineDepthStencilStateCreateFlagBits VkPipelineDepthStencilStateCreateFlagBits :: VkFlags -> VkPipelineDepthStencilStateCreateFlagBits newtype VkPipelineDynamicStateCreateFlagBits VkPipelineDynamicStateCreateFlagBits :: VkFlags -> VkPipelineDynamicStateCreateFlagBits newtype VkPipelineInputAssemblyStateCreateFlagBits VkPipelineInputAssemblyStateCreateFlagBits :: VkFlags -> VkPipelineInputAssemblyStateCreateFlagBits newtype VkPipelineLayoutCreateFlagBits VkPipelineLayoutCreateFlagBits :: VkFlags -> VkPipelineLayoutCreateFlagBits newtype VkPipelineMultisampleStateCreateFlagBits VkPipelineMultisampleStateCreateFlagBits :: VkFlags -> VkPipelineMultisampleStateCreateFlagBits newtype VkPipelineRasterizationStateCreateFlagBits VkPipelineRasterizationStateCreateFlagBits :: VkFlags -> VkPipelineRasterizationStateCreateFlagBits newtype VkPipelineShaderStageCreateFlagBits VkPipelineShaderStageCreateFlagBits :: VkFlags -> VkPipelineShaderStageCreateFlagBits type VkPipelineStageFlagBits = VkPipelineStageBitmask FlagBit type VkPipelineStageFlags = VkPipelineStageBitmask FlagMask newtype VkPipelineTessellationStateCreateFlagBits VkPipelineTessellationStateCreateFlagBits :: VkFlags -> VkPipelineTessellationStateCreateFlagBits newtype VkPipelineVertexInputStateCreateFlagBits VkPipelineVertexInputStateCreateFlagBits :: VkFlags -> VkPipelineVertexInputStateCreateFlagBits newtype VkPipelineViewportStateCreateFlagBits VkPipelineViewportStateCreateFlagBits :: VkFlags -> VkPipelineViewportStateCreateFlagBits pattern VK_LOD_CLAMP_NONE :: (Fractional a, Eq a) => a pattern VK_REMAINING_MIP_LEVELS :: Word32 pattern VK_REMAINING_ARRAY_LAYERS :: Word32 pattern VK_WHOLE_SIZE :: Word64 pattern VK_ATTACHMENT_UNUSED :: Word32 pattern VK_TRUE :: (Num a, Eq a) => a pattern VK_FALSE :: (Num a, Eq a) => a pattern VK_QUEUE_FAMILY_IGNORED :: Word32 pattern VK_SUBPASS_EXTERNAL :: Word32 type VkCreateInstance = "vkCreateInstance" pattern VkCreateInstance :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_LAYER_NOT_PRESENT, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_INCOMPATIBLE_DRIVER. -- --
-- VkResult vkCreateInstance -- ( const VkInstanceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkInstance* pInstance -- ) ---- -- vkCreateInstance registry at www.khronos.org type HS_vkCreateInstance = Ptr VkInstanceCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkInstance " pInstance" -> IO VkResult type PFN_vkCreateInstance = FunPtr HS_vkCreateInstance -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_LAYER_NOT_PRESENT, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_INCOMPATIBLE_DRIVER. -- --
-- VkResult vkCreateInstance -- ( const VkInstanceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkInstance* pInstance -- ) ---- -- vkCreateInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateInstance <- vkGetInstanceProc @VkCreateInstance VK_NULL ---- -- or less efficient: -- --
-- myCreateInstance <- vkGetProc @VkCreateInstance ---- -- Note: vkCreateInstanceUnsafe and -- vkCreateInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateInstance is an alias of -- vkCreateInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateInstanceSafe. vkCreateInstance :: Ptr VkInstanceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkInstance -> IO VkResult vkCreateInstanceUnsafe :: Ptr VkInstanceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkInstance -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_LAYER_NOT_PRESENT, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_INCOMPATIBLE_DRIVER. -- --
-- VkResult vkCreateInstance -- ( const VkInstanceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkInstance* pInstance -- ) ---- -- vkCreateInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateInstance <- vkGetInstanceProc @VkCreateInstance VK_NULL ---- -- or less efficient: -- --
-- myCreateInstance <- vkGetProc @VkCreateInstance ---- -- Note: vkCreateInstanceUnsafe and -- vkCreateInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateInstance is an alias of -- vkCreateInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateInstanceSafe. vkCreateInstanceSafe :: Ptr VkInstanceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkInstance -> IO VkResult type VkDestroyInstance = "vkDestroyInstance" pattern VkDestroyInstance :: CString -- |
-- void vkDestroyInstance -- ( VkInstance instance -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyInstance registry at www.khronos.org type HS_vkDestroyInstance = VkInstance " instance" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyInstance = FunPtr HS_vkDestroyInstance -- |
-- void vkDestroyInstance -- ( VkInstance instance -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyInstance <- vkGetInstanceProc @VkDestroyInstance vkInstance ---- -- or less efficient: -- --
-- myDestroyInstance <- vkGetProc @VkDestroyInstance ---- -- Note: vkDestroyInstanceUnsafe and -- vkDestroyInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyInstance is an alias of -- vkDestroyInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyInstanceSafe. vkDestroyInstance :: VkInstance -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyInstance -- ( VkInstance instance -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyInstance <- vkGetInstanceProc @VkDestroyInstance vkInstance ---- -- or less efficient: -- --
-- myDestroyInstance <- vkGetProc @VkDestroyInstance ---- -- Note: vkDestroyInstanceUnsafe and -- vkDestroyInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyInstance is an alias of -- vkDestroyInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyInstanceSafe. vkDestroyInstanceUnsafe :: VkInstance -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyInstance -- ( VkInstance instance -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyInstance <- vkGetInstanceProc @VkDestroyInstance vkInstance ---- -- or less efficient: -- --
-- myDestroyInstance <- vkGetProc @VkDestroyInstance ---- -- Note: vkDestroyInstanceUnsafe and -- vkDestroyInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyInstance is an alias of -- vkDestroyInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyInstanceSafe. vkDestroyInstanceSafe :: VkInstance -> Ptr VkAllocationCallbacks -> IO () type VkEnumeratePhysicalDevices = "vkEnumeratePhysicalDevices" pattern VkEnumeratePhysicalDevices :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDevices -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceCount -- , VkPhysicalDevice* pPhysicalDevices -- ) ---- -- vkEnumeratePhysicalDevices registry at www.khronos.org type HS_vkEnumeratePhysicalDevices = VkInstance " instance" -> Ptr Word32 " pPhysicalDeviceCount" -> Ptr VkPhysicalDevice " pPhysicalDevices" -> IO VkResult type PFN_vkEnumeratePhysicalDevices = FunPtr HS_vkEnumeratePhysicalDevices -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDevices -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceCount -- , VkPhysicalDevice* pPhysicalDevices -- ) ---- -- vkEnumeratePhysicalDevices registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDevices <- vkGetInstanceProc @VkEnumeratePhysicalDevices vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDevices <- vkGetProc @VkEnumeratePhysicalDevices ---- -- Note: vkEnumeratePhysicalDevicesUnsafe and -- vkEnumeratePhysicalDevicesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDevices is an alias of -- vkEnumeratePhysicalDevicesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDevicesSafe. vkEnumeratePhysicalDevices :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDevice -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDevices -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceCount -- , VkPhysicalDevice* pPhysicalDevices -- ) ---- -- vkEnumeratePhysicalDevices registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDevices <- vkGetInstanceProc @VkEnumeratePhysicalDevices vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDevices <- vkGetProc @VkEnumeratePhysicalDevices ---- -- Note: vkEnumeratePhysicalDevicesUnsafe and -- vkEnumeratePhysicalDevicesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDevices is an alias of -- vkEnumeratePhysicalDevicesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDevicesSafe. vkEnumeratePhysicalDevicesUnsafe :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDevice -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED. -- --
-- VkResult vkEnumeratePhysicalDevices -- ( VkInstance instance -- , uint32_t* pPhysicalDeviceCount -- , VkPhysicalDevice* pPhysicalDevices -- ) ---- -- vkEnumeratePhysicalDevices registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumeratePhysicalDevices <- vkGetInstanceProc @VkEnumeratePhysicalDevices vkInstance ---- -- or less efficient: -- --
-- myEnumeratePhysicalDevices <- vkGetProc @VkEnumeratePhysicalDevices ---- -- Note: vkEnumeratePhysicalDevicesUnsafe and -- vkEnumeratePhysicalDevicesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEnumeratePhysicalDevices is an alias of -- vkEnumeratePhysicalDevicesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumeratePhysicalDevicesSafe. vkEnumeratePhysicalDevicesSafe :: VkInstance -> Ptr Word32 -> Ptr VkPhysicalDevice -> IO VkResult type VkGetPhysicalDeviceFeatures = "vkGetPhysicalDeviceFeatures" pattern VkGetPhysicalDeviceFeatures :: CString -- |
-- void vkGetPhysicalDeviceFeatures -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures registry at www.khronos.org type HS_vkGetPhysicalDeviceFeatures = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceFeatures " pFeatures" -> IO () type PFN_vkGetPhysicalDeviceFeatures = FunPtr HS_vkGetPhysicalDeviceFeatures -- |
-- void vkGetPhysicalDeviceFeatures -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures <- vkGetProc @VkGetPhysicalDeviceFeatures ---- -- Note: vkGetPhysicalDeviceFeaturesUnsafe and -- vkGetPhysicalDeviceFeaturesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures is an alias of -- vkGetPhysicalDeviceFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeaturesSafe. vkGetPhysicalDeviceFeatures :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures -> IO () -- |
-- void vkGetPhysicalDeviceFeatures -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures <- vkGetProc @VkGetPhysicalDeviceFeatures ---- -- Note: vkGetPhysicalDeviceFeaturesUnsafe and -- vkGetPhysicalDeviceFeaturesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures is an alias of -- vkGetPhysicalDeviceFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeaturesSafe. vkGetPhysicalDeviceFeaturesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures -> IO () -- |
-- void vkGetPhysicalDeviceFeatures -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceFeatures* pFeatures -- ) ---- -- vkGetPhysicalDeviceFeatures registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFeatures <- vkGetInstanceProc @VkGetPhysicalDeviceFeatures vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFeatures <- vkGetProc @VkGetPhysicalDeviceFeatures ---- -- Note: vkGetPhysicalDeviceFeaturesUnsafe and -- vkGetPhysicalDeviceFeaturesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceFeatures is an alias of -- vkGetPhysicalDeviceFeaturesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFeaturesSafe. vkGetPhysicalDeviceFeaturesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceFeatures -> IO () type VkGetPhysicalDeviceFormatProperties = "vkGetPhysicalDeviceFormatProperties" pattern VkGetPhysicalDeviceFormatProperties :: CString -- |
-- void vkGetPhysicalDeviceFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties registry at www.khronos.org type HS_vkGetPhysicalDeviceFormatProperties = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> Ptr VkFormatProperties " pFormatProperties" -> IO () type PFN_vkGetPhysicalDeviceFormatProperties = FunPtr HS_vkGetPhysicalDeviceFormatProperties -- |
-- void vkGetPhysicalDeviceFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetProc @VkGetPhysicalDeviceFormatProperties ---- -- Note: vkGetPhysicalDeviceFormatPropertiesUnsafe and -- vkGetPhysicalDeviceFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties is an alias -- of vkGetPhysicalDeviceFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatPropertiesSafe. vkGetPhysicalDeviceFormatProperties :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties -> IO () -- |
-- void vkGetPhysicalDeviceFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetProc @VkGetPhysicalDeviceFormatProperties ---- -- Note: vkGetPhysicalDeviceFormatPropertiesUnsafe and -- vkGetPhysicalDeviceFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties is an alias -- of vkGetPhysicalDeviceFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatPropertiesSafe. vkGetPhysicalDeviceFormatPropertiesUnsafe :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties -> IO () -- |
-- void vkGetPhysicalDeviceFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkFormatProperties* pFormatProperties -- ) ---- -- vkGetPhysicalDeviceFormatProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceFormatProperties <- vkGetProc @VkGetPhysicalDeviceFormatProperties ---- -- Note: vkGetPhysicalDeviceFormatPropertiesUnsafe and -- vkGetPhysicalDeviceFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceFormatProperties is an alias -- of vkGetPhysicalDeviceFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceFormatPropertiesSafe. vkGetPhysicalDeviceFormatPropertiesSafe :: VkPhysicalDevice -> VkFormat -> Ptr VkFormatProperties -> IO () type VkGetPhysicalDeviceImageFormatProperties = "vkGetPhysicalDeviceImageFormatProperties" pattern VkGetPhysicalDeviceImageFormatProperties :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkImageTiling tiling -- , VkImageUsageFlags usage -- , VkImageCreateFlags flags -- , VkImageFormatProperties* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceImageFormatProperties = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> VkImageType " type" -> VkImageTiling " tiling" -> VkImageUsageFlags " usage" -> VkImageCreateFlags " flags" -> Ptr VkImageFormatProperties " pImageFormatProperties" -> IO VkResult type PFN_vkGetPhysicalDeviceImageFormatProperties = FunPtr HS_vkGetPhysicalDeviceImageFormatProperties -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkImageTiling tiling -- , VkImageUsageFlags usage -- , VkImageCreateFlags flags -- , VkImageFormatProperties* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties ---- -- Note: vkGetPhysicalDeviceImageFormatPropertiesUnsafe -- and vkGetPhysicalDeviceImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties is an -- alias of vkGetPhysicalDeviceImageFormatPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatPropertiesSafe. vkGetPhysicalDeviceImageFormatProperties :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkImageTiling -> VkImageUsageFlags -> VkImageCreateFlags -> Ptr VkImageFormatProperties -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkImageTiling tiling -- , VkImageUsageFlags usage -- , VkImageCreateFlags flags -- , VkImageFormatProperties* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties ---- -- Note: vkGetPhysicalDeviceImageFormatPropertiesUnsafe -- and vkGetPhysicalDeviceImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties is an -- alias of vkGetPhysicalDeviceImageFormatPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatPropertiesSafe. vkGetPhysicalDeviceImageFormatPropertiesUnsafe :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkImageTiling -> VkImageUsageFlags -> VkImageCreateFlags -> Ptr VkImageFormatProperties -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FORMAT_NOT_SUPPORTED. -- --
-- VkResult vkGetPhysicalDeviceImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkImageTiling tiling -- , VkImageUsageFlags usage -- , VkImageCreateFlags flags -- , VkImageFormatProperties* pImageFormatProperties -- ) ---- -- vkGetPhysicalDeviceImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceImageFormatProperties ---- -- Note: vkGetPhysicalDeviceImageFormatPropertiesUnsafe -- and vkGetPhysicalDeviceImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceImageFormatProperties is an -- alias of vkGetPhysicalDeviceImageFormatPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceImageFormatPropertiesSafe. vkGetPhysicalDeviceImageFormatPropertiesSafe :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkImageTiling -> VkImageUsageFlags -> VkImageCreateFlags -> Ptr VkImageFormatProperties -> IO VkResult type VkGetPhysicalDeviceProperties = "vkGetPhysicalDeviceProperties" pattern VkGetPhysicalDeviceProperties :: CString -- |
-- void vkGetPhysicalDeviceProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties registry at www.khronos.org type HS_vkGetPhysicalDeviceProperties = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceProperties " pProperties" -> IO () type PFN_vkGetPhysicalDeviceProperties = FunPtr HS_vkGetPhysicalDeviceProperties -- |
-- void vkGetPhysicalDeviceProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties <- vkGetProc @VkGetPhysicalDeviceProperties ---- -- Note: vkGetPhysicalDevicePropertiesUnsafe and -- vkGetPhysicalDevicePropertiesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties is an alias of -- vkGetPhysicalDevicePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDevicePropertiesSafe. vkGetPhysicalDeviceProperties :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties -> IO () -- |
-- void vkGetPhysicalDeviceProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties <- vkGetProc @VkGetPhysicalDeviceProperties ---- -- Note: vkGetPhysicalDevicePropertiesUnsafe and -- vkGetPhysicalDevicePropertiesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties is an alias of -- vkGetPhysicalDevicePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDevicePropertiesSafe. vkGetPhysicalDevicePropertiesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties -> IO () -- |
-- void vkGetPhysicalDeviceProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceProperties <- vkGetInstanceProc @VkGetPhysicalDeviceProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceProperties <- vkGetProc @VkGetPhysicalDeviceProperties ---- -- Note: vkGetPhysicalDevicePropertiesUnsafe and -- vkGetPhysicalDevicePropertiesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPhysicalDeviceProperties is an alias of -- vkGetPhysicalDevicePropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDevicePropertiesSafe. vkGetPhysicalDevicePropertiesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceProperties -> IO () type VkGetPhysicalDeviceQueueFamilyProperties = "vkGetPhysicalDeviceQueueFamilyProperties" pattern VkGetPhysicalDeviceQueueFamilyProperties :: CString -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceQueueFamilyProperties = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pQueueFamilyPropertyCount" -> Ptr VkQueueFamilyProperties " pQueueFamilyProperties" -> IO () type PFN_vkGetPhysicalDeviceQueueFamilyProperties = FunPtr HS_vkGetPhysicalDeviceQueueFamilyProperties -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties ---- -- Note: vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe -- and vkGetPhysicalDeviceQueueFamilyPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties is an -- alias of vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyPropertiesSafe. vkGetPhysicalDeviceQueueFamilyProperties :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties -> IO () -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties ---- -- Note: vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe -- and vkGetPhysicalDeviceQueueFamilyPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties is an -- alias of vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyPropertiesSafe. vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties -> IO () -- |
-- void vkGetPhysicalDeviceQueueFamilyProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pQueueFamilyPropertyCount -- , VkQueueFamilyProperties* pQueueFamilyProperties -- ) ---- -- vkGetPhysicalDeviceQueueFamilyProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetInstanceProc @VkGetPhysicalDeviceQueueFamilyProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceQueueFamilyProperties <- vkGetProc @VkGetPhysicalDeviceQueueFamilyProperties ---- -- Note: vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe -- and vkGetPhysicalDeviceQueueFamilyPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceQueueFamilyProperties is an -- alias of vkGetPhysicalDeviceQueueFamilyPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkGetPhysicalDeviceQueueFamilyPropertiesSafe. vkGetPhysicalDeviceQueueFamilyPropertiesSafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkQueueFamilyProperties -> IO () type VkGetPhysicalDeviceMemoryProperties = "vkGetPhysicalDeviceMemoryProperties" pattern VkGetPhysicalDeviceMemoryProperties :: CString -- |
-- void vkGetPhysicalDeviceMemoryProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties registry at www.khronos.org type HS_vkGetPhysicalDeviceMemoryProperties = VkPhysicalDevice " physicalDevice" -> Ptr VkPhysicalDeviceMemoryProperties " pMemoryProperties" -> IO () type PFN_vkGetPhysicalDeviceMemoryProperties = FunPtr HS_vkGetPhysicalDeviceMemoryProperties -- |
-- void vkGetPhysicalDeviceMemoryProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetProc @VkGetPhysicalDeviceMemoryProperties ---- -- Note: vkGetPhysicalDeviceMemoryPropertiesUnsafe and -- vkGetPhysicalDeviceMemoryPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties is an alias -- of vkGetPhysicalDeviceMemoryPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryPropertiesSafe. vkGetPhysicalDeviceMemoryProperties :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties -> IO () -- |
-- void vkGetPhysicalDeviceMemoryProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetProc @VkGetPhysicalDeviceMemoryProperties ---- -- Note: vkGetPhysicalDeviceMemoryPropertiesUnsafe and -- vkGetPhysicalDeviceMemoryPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties is an alias -- of vkGetPhysicalDeviceMemoryPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryPropertiesSafe. vkGetPhysicalDeviceMemoryPropertiesUnsafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties -> IO () -- |
-- void vkGetPhysicalDeviceMemoryProperties -- ( VkPhysicalDevice physicalDevice -- , VkPhysicalDeviceMemoryProperties* pMemoryProperties -- ) ---- -- vkGetPhysicalDeviceMemoryProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetInstanceProc @VkGetPhysicalDeviceMemoryProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceMemoryProperties <- vkGetProc @VkGetPhysicalDeviceMemoryProperties ---- -- Note: vkGetPhysicalDeviceMemoryPropertiesUnsafe and -- vkGetPhysicalDeviceMemoryPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceMemoryProperties is an alias -- of vkGetPhysicalDeviceMemoryPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPhysicalDeviceMemoryPropertiesSafe. vkGetPhysicalDeviceMemoryPropertiesSafe :: VkPhysicalDevice -> Ptr VkPhysicalDeviceMemoryProperties -> IO () type VkGetInstanceProcAddr = "vkGetInstanceProcAddr" pattern VkGetInstanceProcAddr :: CString -- |
-- PFN_vkVoidFunction vkGetInstanceProcAddr -- ( VkInstance instance -- , const char* pName -- ) ---- -- vkGetInstanceProcAddr registry at www.khronos.org type HS_vkGetInstanceProcAddr = VkInstance " instance" -> CString " pName" -> IO PFN_vkVoidFunction type PFN_vkGetInstanceProcAddr = FunPtr HS_vkGetInstanceProcAddr -- |
-- PFN_vkVoidFunction vkGetInstanceProcAddr -- ( VkInstance instance -- , const char* pName -- ) ---- -- vkGetInstanceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetInstanceProcAddr <- vkGetInstanceProc @VkGetInstanceProcAddr vkInstance ---- -- or less efficient: -- --
-- myGetInstanceProcAddr <- vkGetProc @VkGetInstanceProcAddr ---- -- Note: vkGetInstanceProcAddrUnsafe and -- vkGetInstanceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetInstanceProcAddr is an alias of -- vkGetInstanceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetInstanceProcAddrSafe. vkGetInstanceProcAddr :: VkInstance -> CString -> IO PFN_vkVoidFunction -- |
-- PFN_vkVoidFunction vkGetInstanceProcAddr -- ( VkInstance instance -- , const char* pName -- ) ---- -- vkGetInstanceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetInstanceProcAddr <- vkGetInstanceProc @VkGetInstanceProcAddr vkInstance ---- -- or less efficient: -- --
-- myGetInstanceProcAddr <- vkGetProc @VkGetInstanceProcAddr ---- -- Note: vkGetInstanceProcAddrUnsafe and -- vkGetInstanceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetInstanceProcAddr is an alias of -- vkGetInstanceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetInstanceProcAddrSafe. vkGetInstanceProcAddrUnsafe :: VkInstance -> CString -> IO PFN_vkVoidFunction -- |
-- PFN_vkVoidFunction vkGetInstanceProcAddr -- ( VkInstance instance -- , const char* pName -- ) ---- -- vkGetInstanceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetInstanceProcAddr <- vkGetInstanceProc @VkGetInstanceProcAddr vkInstance ---- -- or less efficient: -- --
-- myGetInstanceProcAddr <- vkGetProc @VkGetInstanceProcAddr ---- -- Note: vkGetInstanceProcAddrUnsafe and -- vkGetInstanceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetInstanceProcAddr is an alias of -- vkGetInstanceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetInstanceProcAddrSafe. vkGetInstanceProcAddrSafe :: VkInstance -> CString -> IO PFN_vkVoidFunction type VkGetDeviceProcAddr = "vkGetDeviceProcAddr" pattern VkGetDeviceProcAddr :: CString -- |
-- PFN_vkVoidFunction vkGetDeviceProcAddr -- ( VkDevice device -- , const char* pName -- ) ---- -- vkGetDeviceProcAddr registry at www.khronos.org type HS_vkGetDeviceProcAddr = VkDevice " device" -> CString " pName" -> IO PFN_vkVoidFunction type PFN_vkGetDeviceProcAddr = FunPtr HS_vkGetDeviceProcAddr -- |
-- PFN_vkVoidFunction vkGetDeviceProcAddr -- ( VkDevice device -- , const char* pName -- ) ---- -- vkGetDeviceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceProcAddr <- vkGetDeviceProc @VkGetDeviceProcAddr vkDevice ---- -- or less efficient: -- --
-- myGetDeviceProcAddr <- vkGetProc @VkGetDeviceProcAddr ---- -- Note: vkGetDeviceProcAddrUnsafe and -- vkGetDeviceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceProcAddr is an alias of -- vkGetDeviceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceProcAddrSafe. vkGetDeviceProcAddr :: VkDevice -> CString -> IO PFN_vkVoidFunction -- |
-- PFN_vkVoidFunction vkGetDeviceProcAddr -- ( VkDevice device -- , const char* pName -- ) ---- -- vkGetDeviceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceProcAddr <- vkGetDeviceProc @VkGetDeviceProcAddr vkDevice ---- -- or less efficient: -- --
-- myGetDeviceProcAddr <- vkGetProc @VkGetDeviceProcAddr ---- -- Note: vkGetDeviceProcAddrUnsafe and -- vkGetDeviceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceProcAddr is an alias of -- vkGetDeviceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceProcAddrSafe. vkGetDeviceProcAddrUnsafe :: VkDevice -> CString -> IO PFN_vkVoidFunction -- |
-- PFN_vkVoidFunction vkGetDeviceProcAddr -- ( VkDevice device -- , const char* pName -- ) ---- -- vkGetDeviceProcAddr registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceProcAddr <- vkGetDeviceProc @VkGetDeviceProcAddr vkDevice ---- -- or less efficient: -- --
-- myGetDeviceProcAddr <- vkGetProc @VkGetDeviceProcAddr ---- -- Note: vkGetDeviceProcAddrUnsafe and -- vkGetDeviceProcAddrSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceProcAddr is an alias of -- vkGetDeviceProcAddrUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceProcAddrSafe. vkGetDeviceProcAddrSafe :: VkDevice -> CString -> IO PFN_vkVoidFunction newtype VkBool32 VkBool32 :: Word32 -> VkBool32 newtype VkDeviceSize VkDeviceSize :: Word64 -> VkDeviceSize newtype VkFlags VkFlags :: Word32 -> VkFlags newtype VkSampleMask VkSampleMask :: Word32 -> VkSampleMask newtype VkAndroidSurfaceCreateFlagsKHR VkAndroidSurfaceCreateFlagsKHR :: VkFlags -> VkAndroidSurfaceCreateFlagsKHR newtype VkBufferViewCreateFlags VkBufferViewCreateFlags :: VkFlags -> VkBufferViewCreateFlags newtype VkCommandPoolTrimFlags VkCommandPoolTrimFlags :: VkFlags -> VkCommandPoolTrimFlags newtype VkCommandPoolTrimFlagsKHR VkCommandPoolTrimFlagsKHR :: VkFlags -> VkCommandPoolTrimFlagsKHR newtype VkDebugUtilsMessengerCallbackDataFlagsEXT VkDebugUtilsMessengerCallbackDataFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCallbackDataFlagsEXT newtype VkDebugUtilsMessengerCreateFlagsEXT VkDebugUtilsMessengerCreateFlagsEXT :: VkFlags -> VkDebugUtilsMessengerCreateFlagsEXT newtype VkDescriptorPoolResetFlags VkDescriptorPoolResetFlags :: VkFlags -> VkDescriptorPoolResetFlags newtype VkDescriptorUpdateTemplateCreateFlags VkDescriptorUpdateTemplateCreateFlags :: VkFlags -> VkDescriptorUpdateTemplateCreateFlags newtype VkDescriptorUpdateTemplateCreateFlagsKHR VkDescriptorUpdateTemplateCreateFlagsKHR :: VkFlags -> VkDescriptorUpdateTemplateCreateFlagsKHR newtype VkDeviceCreateFlags VkDeviceCreateFlags :: VkFlags -> VkDeviceCreateFlags newtype VkDisplayModeCreateFlagsKHR VkDisplayModeCreateFlagsKHR :: VkFlags -> VkDisplayModeCreateFlagsKHR newtype VkDisplaySurfaceCreateFlagsKHR VkDisplaySurfaceCreateFlagsKHR :: VkFlags -> VkDisplaySurfaceCreateFlagsKHR newtype VkEventCreateFlags VkEventCreateFlags :: VkFlags -> VkEventCreateFlags newtype VkExternalFenceFeatureFlagsKHR VkExternalFenceFeatureFlagsKHR :: VkFlags -> VkExternalFenceFeatureFlagsKHR newtype VkExternalFenceHandleTypeFlagsKHR VkExternalFenceHandleTypeFlagsKHR :: VkFlags -> VkExternalFenceHandleTypeFlagsKHR newtype VkExternalMemoryFeatureFlagsKHR VkExternalMemoryFeatureFlagsKHR :: VkFlags -> VkExternalMemoryFeatureFlagsKHR newtype VkExternalMemoryHandleTypeFlagsKHR VkExternalMemoryHandleTypeFlagsKHR :: VkFlags -> VkExternalMemoryHandleTypeFlagsKHR newtype VkExternalSemaphoreFeatureFlagsKHR VkExternalSemaphoreFeatureFlagsKHR :: VkFlags -> VkExternalSemaphoreFeatureFlagsKHR newtype VkExternalSemaphoreHandleTypeFlagsKHR VkExternalSemaphoreHandleTypeFlagsKHR :: VkFlags -> VkExternalSemaphoreHandleTypeFlagsKHR newtype VkFenceImportFlagsKHR VkFenceImportFlagsKHR :: VkFlags -> VkFenceImportFlagsKHR newtype VkFramebufferCreateFlags VkFramebufferCreateFlags :: VkFlags -> VkFramebufferCreateFlags newtype VkIOSSurfaceCreateFlagsMVK VkIOSSurfaceCreateFlagsMVK :: VkFlags -> VkIOSSurfaceCreateFlagsMVK newtype VkImageViewCreateFlags VkImageViewCreateFlags :: VkFlags -> VkImageViewCreateFlags newtype VkInstanceCreateFlags VkInstanceCreateFlags :: VkFlags -> VkInstanceCreateFlags newtype VkMacOSSurfaceCreateFlagsMVK VkMacOSSurfaceCreateFlagsMVK :: VkFlags -> VkMacOSSurfaceCreateFlagsMVK newtype VkMemoryAllocateFlagsKHR VkMemoryAllocateFlagsKHR :: VkFlags -> VkMemoryAllocateFlagsKHR newtype VkMemoryMapFlags VkMemoryMapFlags :: VkFlags -> VkMemoryMapFlags newtype VkMirSurfaceCreateFlagsKHR VkMirSurfaceCreateFlagsKHR :: VkFlags -> VkMirSurfaceCreateFlagsKHR newtype VkPeerMemoryFeatureFlagsKHR VkPeerMemoryFeatureFlagsKHR :: VkFlags -> VkPeerMemoryFeatureFlagsKHR newtype VkPipelineCacheCreateFlags VkPipelineCacheCreateFlags :: VkFlags -> VkPipelineCacheCreateFlags newtype VkPipelineColorBlendStateCreateFlags VkPipelineColorBlendStateCreateFlags :: VkFlags -> VkPipelineColorBlendStateCreateFlags newtype VkPipelineCoverageModulationStateCreateFlagsNV VkPipelineCoverageModulationStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageModulationStateCreateFlagsNV newtype VkPipelineCoverageToColorStateCreateFlagsNV VkPipelineCoverageToColorStateCreateFlagsNV :: VkFlags -> VkPipelineCoverageToColorStateCreateFlagsNV newtype VkPipelineDepthStencilStateCreateFlags VkPipelineDepthStencilStateCreateFlags :: VkFlags -> VkPipelineDepthStencilStateCreateFlags newtype VkPipelineDiscardRectangleStateCreateFlagsEXT VkPipelineDiscardRectangleStateCreateFlagsEXT :: VkFlags -> VkPipelineDiscardRectangleStateCreateFlagsEXT newtype VkPipelineDynamicStateCreateFlags VkPipelineDynamicStateCreateFlags :: VkFlags -> VkPipelineDynamicStateCreateFlags newtype VkPipelineInputAssemblyStateCreateFlags VkPipelineInputAssemblyStateCreateFlags :: VkFlags -> VkPipelineInputAssemblyStateCreateFlags newtype VkPipelineLayoutCreateFlags VkPipelineLayoutCreateFlags :: VkFlags -> VkPipelineLayoutCreateFlags newtype VkPipelineMultisampleStateCreateFlags VkPipelineMultisampleStateCreateFlags :: VkFlags -> VkPipelineMultisampleStateCreateFlags newtype VkPipelineRasterizationConservativeStateCreateFlagsEXT VkPipelineRasterizationConservativeStateCreateFlagsEXT :: VkFlags -> VkPipelineRasterizationConservativeStateCreateFlagsEXT newtype VkPipelineRasterizationStateCreateFlags VkPipelineRasterizationStateCreateFlags :: VkFlags -> VkPipelineRasterizationStateCreateFlags newtype VkPipelineShaderStageCreateFlags VkPipelineShaderStageCreateFlags :: VkFlags -> VkPipelineShaderStageCreateFlags newtype VkPipelineTessellationStateCreateFlags VkPipelineTessellationStateCreateFlags :: VkFlags -> VkPipelineTessellationStateCreateFlags newtype VkPipelineVertexInputStateCreateFlags VkPipelineVertexInputStateCreateFlags :: VkFlags -> VkPipelineVertexInputStateCreateFlags newtype VkPipelineViewportStateCreateFlags VkPipelineViewportStateCreateFlags :: VkFlags -> VkPipelineViewportStateCreateFlags newtype VkPipelineViewportSwizzleStateCreateFlagsNV VkPipelineViewportSwizzleStateCreateFlagsNV :: VkFlags -> VkPipelineViewportSwizzleStateCreateFlagsNV newtype VkQueryPoolCreateFlags VkQueryPoolCreateFlags :: VkFlags -> VkQueryPoolCreateFlags newtype VkRenderPassCreateFlags VkRenderPassCreateFlags :: VkFlags -> VkRenderPassCreateFlags newtype VkSamplerCreateFlags VkSamplerCreateFlags :: VkFlags -> VkSamplerCreateFlags newtype VkSemaphoreCreateFlags VkSemaphoreCreateFlags :: VkFlags -> VkSemaphoreCreateFlags newtype VkSemaphoreImportFlagsKHR VkSemaphoreImportFlagsKHR :: VkFlags -> VkSemaphoreImportFlagsKHR newtype VkShaderModuleCreateFlags VkShaderModuleCreateFlags :: VkFlags -> VkShaderModuleCreateFlags newtype VkValidationCacheCreateFlagsEXT VkValidationCacheCreateFlagsEXT :: VkFlags -> VkValidationCacheCreateFlagsEXT newtype VkViSurfaceCreateFlagsNN VkViSurfaceCreateFlagsNN :: VkFlags -> VkViSurfaceCreateFlagsNN newtype VkWaylandSurfaceCreateFlagsKHR VkWaylandSurfaceCreateFlagsKHR :: VkFlags -> VkWaylandSurfaceCreateFlagsKHR newtype VkWin32SurfaceCreateFlagsKHR VkWin32SurfaceCreateFlagsKHR :: VkFlags -> VkWin32SurfaceCreateFlagsKHR newtype VkXcbSurfaceCreateFlagsKHR VkXcbSurfaceCreateFlagsKHR :: VkFlags -> VkXcbSurfaceCreateFlagsKHR newtype VkXlibSurfaceCreateFlagsKHR VkXlibSurfaceCreateFlagsKHR :: VkFlags -> VkXlibSurfaceCreateFlagsKHR -- | Vulkan format definitions -- -- type = enum -- -- VkFormat registry at www.khronos.org newtype VkFormat VkFormat :: Int32 -> VkFormat pattern VK_FORMAT_UNDEFINED :: VkFormat pattern VK_FORMAT_R4G4_UNORM_PACK8 :: VkFormat pattern VK_FORMAT_R4G4B4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B4G4R4A4_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G6B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G6R5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R5G5B5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_B5G5R5A1_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_A1R5G5B5_UNORM_PACK16 :: VkFormat pattern VK_FORMAT_R8_UNORM :: VkFormat pattern VK_FORMAT_R8_SNORM :: VkFormat pattern VK_FORMAT_R8_USCALED :: VkFormat pattern VK_FORMAT_R8_SSCALED :: VkFormat pattern VK_FORMAT_R8_UINT :: VkFormat pattern VK_FORMAT_R8_SINT :: VkFormat pattern VK_FORMAT_R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8_UNORM :: VkFormat pattern VK_FORMAT_R8G8_SNORM :: VkFormat pattern VK_FORMAT_R8G8_USCALED :: VkFormat pattern VK_FORMAT_R8G8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8_UINT :: VkFormat pattern VK_FORMAT_R8G8_SINT :: VkFormat pattern VK_FORMAT_R8G8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8_SRGB :: VkFormat pattern VK_FORMAT_R8G8B8A8_UNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_SNORM :: VkFormat pattern VK_FORMAT_R8G8B8A8_USCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_SSCALED :: VkFormat pattern VK_FORMAT_R8G8B8A8_UINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SINT :: VkFormat pattern VK_FORMAT_R8G8B8A8_SRGB :: VkFormat pattern VK_FORMAT_B8G8R8A8_UNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_SNORM :: VkFormat pattern VK_FORMAT_B8G8R8A8_USCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_SSCALED :: VkFormat pattern VK_FORMAT_B8G8R8A8_UINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SINT :: VkFormat pattern VK_FORMAT_B8G8R8A8_SRGB :: VkFormat pattern VK_FORMAT_A8B8G8R8_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A8B8G8R8_SRGB_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2R10G10B10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SNORM_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_USCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SSCALED_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_UINT_PACK32 :: VkFormat pattern VK_FORMAT_A2B10G10R10_SINT_PACK32 :: VkFormat pattern VK_FORMAT_R16_UNORM :: VkFormat pattern VK_FORMAT_R16_SNORM :: VkFormat pattern VK_FORMAT_R16_USCALED :: VkFormat pattern VK_FORMAT_R16_SSCALED :: VkFormat pattern VK_FORMAT_R16_UINT :: VkFormat pattern VK_FORMAT_R16_SINT :: VkFormat pattern VK_FORMAT_R16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16_UNORM :: VkFormat pattern VK_FORMAT_R16G16_SNORM :: VkFormat pattern VK_FORMAT_R16G16_USCALED :: VkFormat pattern VK_FORMAT_R16G16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16_UINT :: VkFormat pattern VK_FORMAT_R16G16_SINT :: VkFormat pattern VK_FORMAT_R16G16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16_SFLOAT :: VkFormat pattern VK_FORMAT_R16G16B16A16_UNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_SNORM :: VkFormat pattern VK_FORMAT_R16G16B16A16_USCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_SSCALED :: VkFormat pattern VK_FORMAT_R16G16B16A16_UINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SINT :: VkFormat pattern VK_FORMAT_R16G16B16A16_SFLOAT :: VkFormat pattern VK_FORMAT_R32_UINT :: VkFormat pattern VK_FORMAT_R32_SINT :: VkFormat pattern VK_FORMAT_R32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32_UINT :: VkFormat pattern VK_FORMAT_R32G32_SINT :: VkFormat pattern VK_FORMAT_R32G32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32_SFLOAT :: VkFormat pattern VK_FORMAT_R32G32B32A32_UINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SINT :: VkFormat pattern VK_FORMAT_R32G32B32A32_SFLOAT :: VkFormat pattern VK_FORMAT_R64_UINT :: VkFormat pattern VK_FORMAT_R64_SINT :: VkFormat pattern VK_FORMAT_R64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64_UINT :: VkFormat pattern VK_FORMAT_R64G64_SINT :: VkFormat pattern VK_FORMAT_R64G64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64_SFLOAT :: VkFormat pattern VK_FORMAT_R64G64B64A64_UINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SINT :: VkFormat pattern VK_FORMAT_R64G64B64A64_SFLOAT :: VkFormat pattern VK_FORMAT_B10G11R11_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_E5B9G9R9_UFLOAT_PACK32 :: VkFormat pattern VK_FORMAT_D16_UNORM :: VkFormat pattern VK_FORMAT_X8_D24_UNORM_PACK32 :: VkFormat pattern VK_FORMAT_D32_SFLOAT :: VkFormat pattern VK_FORMAT_S8_UINT :: VkFormat pattern VK_FORMAT_D16_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D24_UNORM_S8_UINT :: VkFormat pattern VK_FORMAT_D32_SFLOAT_S8_UINT :: VkFormat pattern VK_FORMAT_BC1_RGB_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGB_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC1_RGBA_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC2_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC2_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC3_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC3_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_BC4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC4_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC5_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_UFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC6H_SFLOAT_BLOCK :: VkFormat pattern VK_FORMAT_BC7_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_BC7_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_EAC_R11G11_SNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_4x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x4_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_5x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_6x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_8x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x5_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x6_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x8_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_10x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x10_SRGB_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_UNORM_BLOCK :: VkFormat pattern VK_FORMAT_ASTC_12x12_SRGB_BLOCK :: VkFormat newtype VkFormatFeatureBitmask (a :: FlagType) VkFormatFeatureBitmask :: VkFlags -> VkFormatFeatureBitmask pattern VkFormatFeatureFlagBits :: VkFlags -> VkFormatFeatureBitmask FlagBit pattern VkFormatFeatureFlags :: VkFlags -> VkFormatFeatureBitmask FlagMask -- | Format can be used for sampled images (SAMPLED_IMAGE and -- COMBINED_IMAGE_SAMPLER descriptor types) -- -- bitpos = 0 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage images (STORAGE_IMAGE descriptor type) -- -- bitpos = 1 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage -- images -- -- bitpos = 2 pattern VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for uniform texel buffers (TBOs) -- -- bitpos = 3 pattern VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for storage texel buffers (IBOs) -- -- bitpos = 4 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format supports atomic operations in case it is used for storage texel -- buffers -- -- bitpos = 5 pattern VK_FORMAT_FEATURE_STORAGE_TEXEL_BUFFER_ATOMIC_BIT :: VkFormatFeatureBitmask a -- | Format can be used for vertex buffers (VBOs) -- -- bitpos = 6 pattern VK_FORMAT_FEATURE_VERTEX_BUFFER_BIT :: VkFormatFeatureBitmask a -- | Format can be used for color attachment images -- -- bitpos = 7 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format supports blending in case it is used for color attachment -- images -- -- bitpos = 8 pattern VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT :: VkFormatFeatureBitmask a -- | Format can be used for depth/stencil attachment images -- -- bitpos = 9 pattern VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the source image of blits with vkCmdBlitImage -- -- bitpos = 10 pattern VK_FORMAT_FEATURE_BLIT_SRC_BIT :: VkFormatFeatureBitmask a -- | Format can be used as the destination image of blits with -- vkCmdBlitImage -- -- bitpos = 11 pattern VK_FORMAT_FEATURE_BLIT_DST_BIT :: VkFormatFeatureBitmask a -- | Format can be filtered with VK_FILTER_LINEAR when being sampled -- -- bitpos = 12 pattern VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT :: VkFormatFeatureBitmask a type VkFormatFeatureFlagBits = VkFormatFeatureBitmask FlagBit type VkFormatFeatureFlags = VkFormatFeatureBitmask FlagMask newtype VkImageAspectBitmask (a :: FlagType) VkImageAspectBitmask :: VkFlags -> VkImageAspectBitmask pattern VkImageAspectFlagBits :: VkFlags -> VkImageAspectBitmask FlagBit pattern VkImageAspectFlags :: VkFlags -> VkImageAspectBitmask FlagMask -- | bitpos = 0 pattern VK_IMAGE_ASPECT_COLOR_BIT :: VkImageAspectBitmask a -- | bitpos = 1 pattern VK_IMAGE_ASPECT_DEPTH_BIT :: VkImageAspectBitmask a -- | bitpos = 2 pattern VK_IMAGE_ASPECT_STENCIL_BIT :: VkImageAspectBitmask a -- | bitpos = 3 pattern VK_IMAGE_ASPECT_METADATA_BIT :: VkImageAspectBitmask a newtype VkImageCreateBitmask (a :: FlagType) VkImageCreateBitmask :: VkFlags -> VkImageCreateBitmask pattern VkImageCreateFlagBits :: VkFlags -> VkImageCreateBitmask FlagBit pattern VkImageCreateFlags :: VkFlags -> VkImageCreateBitmask FlagMask -- | Image should support sparse backing -- -- bitpos = 0 pattern VK_IMAGE_CREATE_SPARSE_BINDING_BIT :: VkImageCreateBitmask a -- | Image should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_IMAGE_CREATE_SPARSE_RESIDENCY_BIT :: VkImageCreateBitmask a -- | Image should support constent data access to physical memory ranges -- mapped into multiple locations of sparse images -- -- bitpos = 2 pattern VK_IMAGE_CREATE_SPARSE_ALIASED_BIT :: VkImageCreateBitmask a -- | Allows image views to have different format than the base image -- -- bitpos = 3 pattern VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT :: VkImageCreateBitmask a -- | Allows creating image views with cube type from the created image -- -- bitpos = 4 pattern VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT :: VkImageCreateBitmask a -- | type = enum -- -- VkImageLayout registry at www.khronos.org newtype VkImageLayout VkImageLayout :: Int32 -> VkImageLayout -- | Implicit layout an image is when its contents are undefined due to -- various reasons (e.g. right after creation) pattern VK_IMAGE_LAYOUT_UNDEFINED :: VkImageLayout -- | General layout when image can be used for any kind of access pattern VK_IMAGE_LAYOUT_GENERAL :: VkImageLayout -- | Optimal layout when image is only used for color attachment read/write pattern VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is only used for depthstencil attachment -- readwrite pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only depth/stencil -- attachment and shader access pattern VK_IMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used for read only shader access pattern VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as source of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL :: VkImageLayout -- | Optimal layout when image is used only as destination of transfer -- operations pattern VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL :: VkImageLayout -- | Initial layout used when the data is populated by the CPU pattern VK_IMAGE_LAYOUT_PREINITIALIZED :: VkImageLayout -- | type = enum -- -- VkImageTiling registry at www.khronos.org newtype VkImageTiling VkImageTiling :: Int32 -> VkImageTiling pattern VK_IMAGE_TILING_OPTIMAL :: VkImageTiling pattern VK_IMAGE_TILING_LINEAR :: VkImageTiling -- | type = enum -- -- VkImageType registry at www.khronos.org newtype VkImageType VkImageType :: Int32 -> VkImageType pattern VK_IMAGE_TYPE_1D :: VkImageType pattern VK_IMAGE_TYPE_2D :: VkImageType pattern VK_IMAGE_TYPE_3D :: VkImageType newtype VkImageUsageBitmask (a :: FlagType) VkImageUsageBitmask :: VkFlags -> VkImageUsageBitmask pattern VkImageUsageFlagBits :: VkFlags -> VkImageUsageBitmask FlagBit pattern VkImageUsageFlags :: VkFlags -> VkImageUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_IMAGE_USAGE_TRANSFER_SRC_BIT :: VkImageUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_IMAGE_USAGE_TRANSFER_DST_BIT :: VkImageUsageBitmask a -- | Can be sampled from (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER -- descriptor types) -- -- bitpos = 2 pattern VK_IMAGE_USAGE_SAMPLED_BIT :: VkImageUsageBitmask a -- | Can be used as storage image (STORAGE_IMAGE descriptor type) -- -- bitpos = 3 pattern VK_IMAGE_USAGE_STORAGE_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer color attachment -- -- bitpos = 4 pattern VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer depth/stencil attachment -- -- bitpos = 5 pattern VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Image data not needed outside of rendering -- -- bitpos = 6 pattern VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | Can be used as framebuffer input attachment -- -- bitpos = 7 pattern VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT :: VkImageUsageBitmask a -- | type = enum -- -- VkImageViewType registry at www.khronos.org newtype VkImageViewType VkImageViewType :: Int32 -> VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_3D :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_1D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_2D_ARRAY :: VkImageViewType pattern VK_IMAGE_VIEW_TYPE_CUBE_ARRAY :: VkImageViewType type VkImageAspectFlagBits = VkImageAspectBitmask FlagBit type VkImageAspectFlags = VkImageAspectBitmask FlagMask type VkImageCreateFlagBits = VkImageCreateBitmask FlagBit type VkImageCreateFlags = VkImageCreateBitmask FlagMask type VkImageUsageFlagBits = VkImageUsageBitmask FlagBit type VkImageUsageFlags = VkImageUsageBitmask FlagMask -- | type = enum -- -- VkInternalAllocationType registry at www.khronos.org newtype VkInternalAllocationType VkInternalAllocationType :: Int32 -> VkInternalAllocationType pattern VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE :: VkInternalAllocationType newtype VkMemoryAllocateBitmask (a :: FlagType) VkMemoryAllocateBitmask :: VkFlags -> VkMemoryAllocateBitmask pattern VkMemoryAllocateFlagBits :: VkFlags -> VkMemoryAllocateBitmask FlagBit pattern VkMemoryAllocateFlags :: VkFlags -> VkMemoryAllocateBitmask FlagMask -- | Force allocation on specific devices -- -- bitpos = 0 pattern VK_MEMORY_ALLOCATE_DEVICE_MASK_BIT :: VkMemoryAllocateBitmask a newtype VkMemoryHeapBitmask (a :: FlagType) VkMemoryHeapBitmask :: VkFlags -> VkMemoryHeapBitmask pattern VkMemoryHeapFlagBits :: VkFlags -> VkMemoryHeapBitmask FlagBit pattern VkMemoryHeapFlags :: VkFlags -> VkMemoryHeapBitmask FlagMask -- | If set, heap represents device memory -- -- bitpos = 0 pattern VK_MEMORY_HEAP_DEVICE_LOCAL_BIT :: VkMemoryHeapBitmask a newtype VkMemoryPropertyBitmask (a :: FlagType) VkMemoryPropertyBitmask :: VkFlags -> VkMemoryPropertyBitmask pattern VkMemoryPropertyFlagBits :: VkFlags -> VkMemoryPropertyBitmask FlagBit pattern VkMemoryPropertyFlags :: VkFlags -> VkMemoryPropertyBitmask FlagMask -- | If otherwise stated, then allocate memory on device -- -- bitpos = 0 pattern VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT :: VkMemoryPropertyBitmask a -- | Memory is mappable by host -- -- bitpos = 1 pattern VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT :: VkMemoryPropertyBitmask a -- | Memory will have io coherency. If not set, application may need to -- use vkFlushMappedMemoryRanges and vkInvalidateMappedMemoryRanges to -- flushinvalidate host cache -- -- bitpos = 2 pattern VK_MEMORY_PROPERTY_HOST_COHERENT_BIT :: VkMemoryPropertyBitmask a -- | Memory will be cached by the host -- -- bitpos = 3 pattern VK_MEMORY_PROPERTY_HOST_CACHED_BIT :: VkMemoryPropertyBitmask a -- | Memory may be allocated by the driver when it is required -- -- bitpos = 4 pattern VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT :: VkMemoryPropertyBitmask a type VkMemoryAllocateFlagBits = VkMemoryAllocateBitmask FlagBit newtype VkMemoryAllocateFlagBitsKHR VkMemoryAllocateFlagBitsKHR :: VkFlags -> VkMemoryAllocateFlagBitsKHR type VkMemoryAllocateFlags = VkMemoryAllocateBitmask FlagMask type VkMemoryHeapFlagBits = VkMemoryHeapBitmask FlagBit type VkMemoryHeapFlags = VkMemoryHeapBitmask FlagMask type VkMemoryPropertyFlagBits = VkMemoryPropertyBitmask FlagBit type VkMemoryPropertyFlags = VkMemoryPropertyBitmask FlagMask -- | type = enum -- -- VkPhysicalDeviceType registry at www.khronos.org newtype VkPhysicalDeviceType VkPhysicalDeviceType :: Int32 -> VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_OTHER :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU :: VkPhysicalDeviceType pattern VK_PHYSICAL_DEVICE_TYPE_CPU :: VkPhysicalDeviceType newtype VkQueueBitmask (a :: FlagType) VkQueueBitmask :: VkFlags -> VkQueueBitmask pattern VkQueueFlagBits :: VkFlags -> VkQueueBitmask FlagBit pattern VkQueueFlags :: VkFlags -> VkQueueBitmask FlagMask -- | Queue supports graphics operations -- -- bitpos = 0 pattern VK_QUEUE_GRAPHICS_BIT :: VkQueueBitmask a -- | Queue supports compute operations -- -- bitpos = 1 pattern VK_QUEUE_COMPUTE_BIT :: VkQueueBitmask a -- | Queue supports transfer operations -- -- bitpos = 2 pattern VK_QUEUE_TRANSFER_BIT :: VkQueueBitmask a -- | Queue supports sparse resource memory management operations -- -- bitpos = 3 pattern VK_QUEUE_SPARSE_BINDING_BIT :: VkQueueBitmask a -- | type = enum -- -- VkQueueGlobalPriorityEXT registry at www.khronos.org newtype VkQueueGlobalPriorityEXT VkQueueGlobalPriorityEXT :: Int32 -> VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT :: VkQueueGlobalPriorityEXT pattern VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT :: VkQueueGlobalPriorityEXT type VkQueueFlagBits = VkQueueBitmask FlagBit type VkQueueFlags = VkQueueBitmask FlagMask -- | API result codes -- -- type = enum -- -- VkResult registry at www.khronos.org newtype VkResult VkResult :: Int32 -> VkResult -- | Command completed successfully pattern VK_SUCCESS :: VkResult -- | A fence or query has not yet completed pattern VK_NOT_READY :: VkResult -- | A wait operation has not completed in the specified time pattern VK_TIMEOUT :: VkResult -- | An event is signaled pattern VK_EVENT_SET :: VkResult -- | An event is unsignaled pattern VK_EVENT_RESET :: VkResult -- | A return array was too small for the result pattern VK_INCOMPLETE :: VkResult -- | A host memory allocation has failed pattern VK_ERROR_OUT_OF_HOST_MEMORY :: VkResult -- | A device memory allocation has failed pattern VK_ERROR_OUT_OF_DEVICE_MEMORY :: VkResult -- | Initialization of a object has failed pattern VK_ERROR_INITIALIZATION_FAILED :: VkResult -- | The logical device has been lost. See pattern VK_ERROR_DEVICE_LOST :: VkResult -- | Mapping of a memory object has failed pattern VK_ERROR_MEMORY_MAP_FAILED :: VkResult -- | Layer specified does not exist pattern VK_ERROR_LAYER_NOT_PRESENT :: VkResult -- | Extension specified does not exist pattern VK_ERROR_EXTENSION_NOT_PRESENT :: VkResult -- | Requested feature is not available on this device pattern VK_ERROR_FEATURE_NOT_PRESENT :: VkResult -- | Unable to find a Vulkan driver pattern VK_ERROR_INCOMPATIBLE_DRIVER :: VkResult -- | Too many objects of the type have already been created pattern VK_ERROR_TOO_MANY_OBJECTS :: VkResult -- | Requested format is not supported on this device pattern VK_ERROR_FORMAT_NOT_SUPPORTED :: VkResult -- | A requested pool allocation has failed due to fragmentation of the -- pool's memory pattern VK_ERROR_FRAGMENTED_POOL :: VkResult newtype VkSampleCountBitmask (a :: FlagType) VkSampleCountBitmask :: VkFlags -> VkSampleCountBitmask pattern VkSampleCountFlagBits :: VkFlags -> VkSampleCountBitmask FlagBit pattern VkSampleCountFlags :: VkFlags -> VkSampleCountBitmask FlagMask -- | Sample count 1 supported -- -- bitpos = 0 pattern VK_SAMPLE_COUNT_1_BIT :: VkSampleCountBitmask a -- | Sample count 2 supported -- -- bitpos = 1 pattern VK_SAMPLE_COUNT_2_BIT :: VkSampleCountBitmask a -- | Sample count 4 supported -- -- bitpos = 2 pattern VK_SAMPLE_COUNT_4_BIT :: VkSampleCountBitmask a -- | Sample count 8 supported -- -- bitpos = 3 pattern VK_SAMPLE_COUNT_8_BIT :: VkSampleCountBitmask a -- | Sample count 16 supported -- -- bitpos = 4 pattern VK_SAMPLE_COUNT_16_BIT :: VkSampleCountBitmask a -- | Sample count 32 supported -- -- bitpos = 5 pattern VK_SAMPLE_COUNT_32_BIT :: VkSampleCountBitmask a -- | Sample count 64 supported -- -- bitpos = 6 pattern VK_SAMPLE_COUNT_64_BIT :: VkSampleCountBitmask a type VkSampleCountFlagBits = VkSampleCountBitmask FlagBit type VkSampleCountFlags = VkSampleCountBitmask FlagMask -- | Structure type enumerant -- -- type = enum -- -- VkStructureType registry at www.khronos.org newtype VkStructureType VkStructureType :: Int32 -> VkStructureType pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType -- | Reserved for internal use by the loader, layers, and ICDs pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType -- | type = enum -- -- VkSystemAllocationScope registry at www.khronos.org newtype VkSystemAllocationScope VkSystemAllocationScope :: Int32 -> VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_COMMAND :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_OBJECT :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_CACHE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_DEVICE :: VkSystemAllocationScope pattern VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE :: VkSystemAllocationScope -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkAllocationFunction :: HS_vkAllocationFunction -> IO PFN_vkAllocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugReportCallbackEXT :: HS_vkDebugReportCallbackEXT -> IO PFN_vkDebugReportCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkDebugUtilsMessengerCallbackEXT :: HS_vkDebugUtilsMessengerCallbackEXT -> IO PFN_vkDebugUtilsMessengerCallbackEXT -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkFreeFunction :: HS_vkFreeFunction -> IO PFN_vkFreeFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalAllocationNotification :: HS_vkInternalAllocationNotification -> IO PFN_vkInternalAllocationNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkInternalFreeNotification :: HS_vkInternalFreeNotification -> IO PFN_vkInternalFreeNotification -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkReallocationFunction :: HS_vkReallocationFunction -> IO PFN_vkReallocationFunction -- | Wrap haskell function into C-callable FunPtr. Note, you need to free -- resources after using it. newVkVoidFunction :: HS_vkVoidFunction -> IO PFN_vkVoidFunction unwrapVkAllocationFunction :: PFN_vkAllocationFunction -> HS_vkAllocationFunction unwrapVkDebugReportCallbackEXT :: PFN_vkDebugReportCallbackEXT -> HS_vkDebugReportCallbackEXT unwrapVkDebugUtilsMessengerCallbackEXT :: PFN_vkDebugUtilsMessengerCallbackEXT -> HS_vkDebugUtilsMessengerCallbackEXT unwrapVkFreeFunction :: PFN_vkFreeFunction -> HS_vkFreeFunction unwrapVkInternalAllocationNotification :: PFN_vkInternalAllocationNotification -> HS_vkInternalAllocationNotification unwrapVkInternalFreeNotification :: PFN_vkInternalFreeNotification -> HS_vkInternalFreeNotification unwrapVkReallocationFunction :: PFN_vkReallocationFunction -> HS_vkReallocationFunction unwrapVkVoidFunction :: PFN_vkVoidFunction -> HS_vkVoidFunction type HS_vkAllocationFunction = Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkDebugReportCallbackEXT = VkDebugReportFlagsEXT -> VkDebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> CString -> CString -> Ptr Void -> IO VkBool32 type HS_vkDebugUtilsMessengerCallbackEXT = VkDebugUtilsMessageSeverityFlagBitsEXT -> VkDebugUtilsMessageTypeFlagsEXT -> Ptr VkDebugUtilsMessengerCallbackDataEXT -> Ptr Void -> IO VkBool32 type HS_vkFreeFunction = Ptr Void -> Ptr Void -> IO () type HS_vkInternalAllocationNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkInternalFreeNotification = Ptr Void -> CSize -> VkInternalAllocationType -> VkSystemAllocationScope -> IO () type HS_vkReallocationFunction = Ptr Void -> Ptr Void -> CSize -> CSize -> VkSystemAllocationScope -> IO (Ptr Void) type HS_vkVoidFunction = IO () -- |
-- typedef void* (VKAPI_PTR *PFN_vkAllocationFunction)( -- void* pUserData, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkAllocationFunction = FunPtr HS_vkAllocationFunction -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)( -- VkDebugReportFlagsEXT flags, -- VkDebugReportObjectTypeEXT objectType, -- uint64_t object, -- size_t location, -- int32_t messageCode, -- const char* pLayerPrefix, -- const char* pMessage, -- void* pUserData); --type PFN_vkDebugReportCallbackEXT = FunPtr HS_vkDebugReportCallbackEXT -- |
-- typedef VkBool32 (VKAPI_PTR *PFN_vkDebugUtilsMessengerCallbackEXT)( -- VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, -- VkDebugUtilsMessageTypeFlagsEXT messageType, -- const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, -- void* pUserData); --type PFN_vkDebugUtilsMessengerCallbackEXT = FunPtr HS_vkDebugUtilsMessengerCallbackEXT -- |
-- typedef void (VKAPI_PTR *PFN_vkFreeFunction)( -- void* pUserData, -- void* pMemory); --type PFN_vkFreeFunction = FunPtr HS_vkFreeFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalAllocationNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalAllocationNotification = FunPtr HS_vkInternalAllocationNotification -- |
-- typedef void (VKAPI_PTR *PFN_vkInternalFreeNotification)( -- void* pUserData, -- size_t size, -- VkInternalAllocationType allocationType, -- VkSystemAllocationScope allocationScope); --type PFN_vkInternalFreeNotification = FunPtr HS_vkInternalFreeNotification -- |
-- typedef void* (VKAPI_PTR *PFN_vkReallocationFunction)( -- void* pUserData, -- void* pOriginal, -- size_t size, -- size_t alignment, -- VkSystemAllocationScope allocationScope); --type PFN_vkReallocationFunction = FunPtr HS_vkReallocationFunction -- |
-- typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void); --type PFN_vkVoidFunction = FunPtr HS_vkVoidFunction type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T -- |
-- typedef struct VkAllocationCallbacks {
-- void* pUserData;
-- PFN_vkAllocationFunction pfnAllocation;
-- PFN_vkReallocationFunction pfnReallocation;
-- PFN_vkFreeFunction pfnFree;
-- PFN_vkInternalAllocationNotification pfnInternalAllocation;
-- PFN_vkInternalFreeNotification pfnInternalFree;
-- } VkAllocationCallbacks;
--
--
-- VkAllocationCallbacks registry at www.khronos.org
type VkAllocationCallbacks = VkStruct VkAllocationCallbacks'
-- |
-- typedef struct VkApplicationInfo {
-- VkStructureType sType;
-- const void* pNext;
-- const char* pApplicationName;
-- uint32_t applicationVersion;
-- const char* pEngineName;
-- uint32_t engineVersion;
-- uint32_t apiVersion;
-- } VkApplicationInfo;
--
--
-- VkApplicationInfo registry at www.khronos.org
type VkApplicationInfo = VkStruct VkApplicationInfo'
-- |
-- typedef struct VkExtent2D {
-- uint32_t width;
-- uint32_t height;
-- } VkExtent2D;
--
--
-- VkExtent2D registry at www.khronos.org
type VkExtent2D = VkStruct VkExtent2D'
-- |
-- typedef struct VkExtent3D {
-- uint32_t width;
-- uint32_t height;
-- uint32_t depth;
-- } VkExtent3D;
--
--
-- VkExtent3D registry at www.khronos.org
type VkExtent3D = VkStruct VkExtent3D'
-- |
-- typedef struct VkFormatProperties {
-- VkFormatFeatureFlags linearTilingFeatures;
-- VkFormatFeatureFlags optimalTilingFeatures;
-- VkFormatFeatureFlags bufferFeatures;
-- } VkFormatProperties;
--
--
-- VkFormatProperties registry at www.khronos.org
type VkFormatProperties = VkStruct VkFormatProperties'
-- |
-- typedef struct VkFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkFormatProperties formatProperties;
-- } VkFormatProperties2;
--
--
-- VkFormatProperties2 registry at www.khronos.org
type VkFormatProperties2 = VkStruct VkFormatProperties2'
-- | Alias for VkFormatProperties2
type VkFormatProperties2KHR = VkFormatProperties2
-- |
-- typedef struct VkImageBlit {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffsets[2];
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffsets[2];
-- } VkImageBlit;
--
--
-- VkImageBlit registry at www.khronos.org
type VkImageBlit = VkStruct VkImageBlit'
-- |
-- typedef struct VkImageCopy {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageCopy;
--
--
-- VkImageCopy registry at www.khronos.org
type VkImageCopy = VkStruct VkImageCopy'
-- |
-- typedef struct VkImageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageCreateFlags flags;
-- VkImageType imageType;
-- VkFormat format;
-- VkExtent3D extent;
-- uint32_t mipLevels;
-- uint32_t arrayLayers;
-- VkSampleCountFlagBits samples;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- VkImageLayout initialLayout;
-- } VkImageCreateInfo;
--
--
-- VkImageCreateInfo registry at www.khronos.org
type VkImageCreateInfo = VkStruct VkImageCreateInfo'
-- |
-- typedef struct VkImageFormatListCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t viewFormatCount;
-- const VkFormat* pViewFormats;
-- } VkImageFormatListCreateInfoKHR;
--
--
-- VkImageFormatListCreateInfoKHR registry at www.khronos.org
type VkImageFormatListCreateInfoKHR = VkStruct VkImageFormatListCreateInfoKHR'
-- |
-- typedef struct VkImageFormatProperties {
-- VkExtent3D maxExtent;
-- uint32_t maxMipLevels;
-- uint32_t maxArrayLayers;
-- VkSampleCountFlags sampleCounts;
-- VkDeviceSize maxResourceSize;
-- } VkImageFormatProperties;
--
--
-- VkImageFormatProperties registry at www.khronos.org
type VkImageFormatProperties = VkStruct VkImageFormatProperties'
-- |
-- typedef struct VkImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkImageFormatProperties imageFormatProperties;
-- } VkImageFormatProperties2;
--
--
-- VkImageFormatProperties2 registry at www.khronos.org
type VkImageFormatProperties2 = VkStruct VkImageFormatProperties2'
-- | Alias for VkImageFormatProperties2
type VkImageFormatProperties2KHR = VkImageFormatProperties2
-- |
-- typedef struct VkImageMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkImageLayout oldLayout;
-- VkImageLayout newLayout;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkImage image;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageMemoryBarrier;
--
--
-- VkImageMemoryBarrier registry at www.khronos.org
type VkImageMemoryBarrier = VkStruct VkImageMemoryBarrier'
-- |
-- typedef struct VkImageMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageMemoryRequirementsInfo2;
--
--
-- VkImageMemoryRequirementsInfo2 registry at www.khronos.org
type VkImageMemoryRequirementsInfo2 = VkStruct VkImageMemoryRequirementsInfo2'
-- | Alias for VkImageMemoryRequirementsInfo2
type VkImageMemoryRequirementsInfo2KHR = VkImageMemoryRequirementsInfo2
-- |
-- typedef struct VkImagePlaneMemoryRequirementsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkImagePlaneMemoryRequirementsInfo;
--
--
-- VkImagePlaneMemoryRequirementsInfo registry at www.khronos.org
type VkImagePlaneMemoryRequirementsInfo = VkStruct VkImagePlaneMemoryRequirementsInfo'
-- | Alias for VkImagePlaneMemoryRequirementsInfo
type VkImagePlaneMemoryRequirementsInfoKHR = VkImagePlaneMemoryRequirementsInfo
-- |
-- typedef struct VkImageResolve {
-- VkImageSubresourceLayers srcSubresource;
-- VkOffset3D srcOffset;
-- VkImageSubresourceLayers dstSubresource;
-- VkOffset3D dstOffset;
-- VkExtent3D extent;
-- } VkImageResolve;
--
--
-- VkImageResolve registry at www.khronos.org
type VkImageResolve = VkStruct VkImageResolve'
-- |
-- typedef struct VkImageSparseMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- } VkImageSparseMemoryRequirementsInfo2;
--
--
-- VkImageSparseMemoryRequirementsInfo2 registry at
-- www.khronos.org
type VkImageSparseMemoryRequirementsInfo2 = VkStruct VkImageSparseMemoryRequirementsInfo2'
-- | Alias for VkImageSparseMemoryRequirementsInfo2
type VkImageSparseMemoryRequirementsInfo2KHR = VkImageSparseMemoryRequirementsInfo2
-- |
-- typedef struct VkImageSubresource {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t arrayLayer;
-- } VkImageSubresource;
--
--
-- VkImageSubresource registry at www.khronos.org
type VkImageSubresource = VkStruct VkImageSubresource'
-- |
-- typedef struct VkImageSubresourceLayers {
-- VkImageAspectFlags aspectMask;
-- uint32_t mipLevel;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceLayers;
--
--
-- VkImageSubresourceLayers registry at www.khronos.org
type VkImageSubresourceLayers = VkStruct VkImageSubresourceLayers'
-- |
-- typedef struct VkImageSubresourceRange {
-- VkImageAspectFlags aspectMask;
-- uint32_t baseMipLevel;
-- uint32_t levelCount;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkImageSubresourceRange;
--
--
-- VkImageSubresourceRange registry at www.khronos.org
type VkImageSubresourceRange = VkStruct VkImageSubresourceRange'
-- |
-- typedef struct VkImageSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- } VkImageSwapchainCreateInfoKHR;
--
--
-- VkImageSwapchainCreateInfoKHR registry at www.khronos.org
type VkImageSwapchainCreateInfoKHR = VkStruct VkImageSwapchainCreateInfoKHR'
-- |
-- typedef struct VkImageViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageViewCreateFlags flags;
-- VkImage image;
-- VkImageViewType viewType;
-- VkFormat format;
-- VkComponentMapping components;
-- VkImageSubresourceRange subresourceRange;
-- } VkImageViewCreateInfo;
--
--
-- VkImageViewCreateInfo registry at www.khronos.org
type VkImageViewCreateInfo = VkStruct VkImageViewCreateInfo'
-- |
-- typedef struct VkImageViewUsageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageUsageFlags usage;
-- } VkImageViewUsageCreateInfo;
--
--
-- VkImageViewUsageCreateInfo registry at www.khronos.org
type VkImageViewUsageCreateInfo = VkStruct VkImageViewUsageCreateInfo'
-- | Alias for VkImageViewUsageCreateInfo
type VkImageViewUsageCreateInfoKHR = VkImageViewUsageCreateInfo
-- |
-- typedef struct VkInstanceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkInstanceCreateFlags flags;
-- const VkApplicationInfo* pApplicationInfo;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- } VkInstanceCreateInfo;
--
--
-- VkInstanceCreateInfo registry at www.khronos.org
type VkInstanceCreateInfo = VkStruct VkInstanceCreateInfo'
-- |
-- typedef struct VkMemoryAllocateFlagsInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkMemoryAllocateFlags flags;
-- uint32_t deviceMask;
-- } VkMemoryAllocateFlagsInfo;
--
--
-- VkMemoryAllocateFlagsInfo registry at www.khronos.org
type VkMemoryAllocateFlagsInfo = VkStruct VkMemoryAllocateFlagsInfo'
-- | Alias for VkMemoryAllocateFlagsInfo
type VkMemoryAllocateFlagsInfoKHR = VkMemoryAllocateFlagsInfo
-- |
-- typedef struct VkMemoryAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceSize allocationSize;
-- uint32_t memoryTypeIndex;
-- } VkMemoryAllocateInfo;
--
--
-- VkMemoryAllocateInfo registry at www.khronos.org
type VkMemoryAllocateInfo = VkStruct VkMemoryAllocateInfo'
-- |
-- typedef struct VkMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- } VkMemoryBarrier;
--
--
-- VkMemoryBarrier registry at www.khronos.org
type VkMemoryBarrier = VkStruct VkMemoryBarrier'
-- |
-- typedef struct VkMemoryDedicatedAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkBuffer buffer;
-- } VkMemoryDedicatedAllocateInfo;
--
--
-- VkMemoryDedicatedAllocateInfo registry at www.khronos.org
type VkMemoryDedicatedAllocateInfo = VkStruct VkMemoryDedicatedAllocateInfo'
-- | Alias for VkMemoryDedicatedAllocateInfo
type VkMemoryDedicatedAllocateInfoKHR = VkMemoryDedicatedAllocateInfo
-- |
-- typedef struct VkMemoryDedicatedRequirements {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 prefersDedicatedAllocation;
-- VkBool32 requiresDedicatedAllocation;
-- } VkMemoryDedicatedRequirements;
--
--
-- VkMemoryDedicatedRequirements registry at www.khronos.org
type VkMemoryDedicatedRequirements = VkStruct VkMemoryDedicatedRequirements'
-- | Alias for VkMemoryDedicatedRequirements
type VkMemoryDedicatedRequirementsKHR = VkMemoryDedicatedRequirements
-- |
-- typedef struct VkMemoryFdPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryFdPropertiesKHR;
--
--
-- VkMemoryFdPropertiesKHR registry at www.khronos.org
type VkMemoryFdPropertiesKHR = VkStruct VkMemoryFdPropertiesKHR'
-- |
-- typedef struct VkMemoryGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkMemoryGetFdInfoKHR;
--
--
-- VkMemoryGetFdInfoKHR registry at www.khronos.org
type VkMemoryGetFdInfoKHR = VkStruct VkMemoryGetFdInfoKHR'
-- |
-- typedef struct VkMemoryHeap {
-- VkDeviceSize size;
-- VkMemoryHeapFlags flags;
-- } VkMemoryHeap;
--
--
-- VkMemoryHeap registry at www.khronos.org
type VkMemoryHeap = VkStruct VkMemoryHeap'
-- |
-- typedef struct VkMemoryHostPointerPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t memoryTypeBits;
-- } VkMemoryHostPointerPropertiesEXT;
--
--
-- VkMemoryHostPointerPropertiesEXT registry at www.khronos.org
type VkMemoryHostPointerPropertiesEXT = VkStruct VkMemoryHostPointerPropertiesEXT'
-- |
-- typedef struct VkMemoryRequirements {
-- VkDeviceSize size;
-- VkDeviceSize alignment;
-- uint32_t memoryTypeBits;
-- } VkMemoryRequirements;
--
--
-- VkMemoryRequirements registry at www.khronos.org
type VkMemoryRequirements = VkStruct VkMemoryRequirements'
-- |
-- typedef struct VkMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkMemoryRequirements memoryRequirements;
-- } VkMemoryRequirements2;
--
--
-- VkMemoryRequirements2 registry at www.khronos.org
type VkMemoryRequirements2 = VkStruct VkMemoryRequirements2'
-- | Alias for VkMemoryRequirements2
type VkMemoryRequirements2KHR = VkMemoryRequirements2
-- |
-- typedef struct VkMemoryType {
-- VkMemoryPropertyFlags propertyFlags;
-- uint32_t heapIndex;
-- } VkMemoryType;
--
--
-- VkMemoryType registry at www.khronos.org
type VkMemoryType = VkStruct VkMemoryType'
-- |
-- typedef struct VkPhysicalDevice16BitStorageFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 storageBuffer16BitAccess;
-- VkBool32 uniformAndStorageBuffer16BitAccess;
-- VkBool32 storagePushConstant16;
-- VkBool32 storageInputOutput16;
-- } VkPhysicalDevice16BitStorageFeatures;
--
--
-- VkPhysicalDevice16BitStorageFeatures registry at
-- www.khronos.org
type VkPhysicalDevice16BitStorageFeatures = VkStruct VkPhysicalDevice16BitStorageFeatures'
-- | Alias for VkPhysicalDevice16BitStorageFeatures
type VkPhysicalDevice16BitStorageFeaturesKHR = VkPhysicalDevice16BitStorageFeatures
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 advancedBlendCoherentOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t advancedBlendMaxColorAttachments;
-- VkBool32 advancedBlendIndependentBlend;
-- VkBool32 advancedBlendNonPremultipliedSrcColor;
-- VkBool32 advancedBlendNonPremultipliedDstColor;
-- VkBool32 advancedBlendCorrelatedOverlap;
-- VkBool32 advancedBlendAllOperations;
-- } VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT;
--
--
-- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT = VkStruct VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceConservativeRasterizationPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- float primitiveOverestimationSize;
-- float maxExtraPrimitiveOverestimationSize;
-- float extraPrimitiveOverestimationSizeGranularity;
-- VkBool32 primitiveUnderestimation;
-- VkBool32 conservativePointAndLineRasterization;
-- VkBool32 degenerateTrianglesRasterized;
-- VkBool32 degenerateLinesRasterized;
-- VkBool32 fullyCoveredFragmentShaderInputVariable;
-- VkBool32 conservativeRasterizationPostDepthCoverage;
-- } VkPhysicalDeviceConservativeRasterizationPropertiesEXT;
--
--
-- VkPhysicalDeviceConservativeRasterizationPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceConservativeRasterizationPropertiesEXT = VkStruct VkPhysicalDeviceConservativeRasterizationPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingFeaturesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderInputAttachmentArrayDynamicIndexing;
-- VkBool32 shaderUniformTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageTexelBufferArrayDynamicIndexing;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexing;
-- VkBool32 shaderSampledImageArrayNonUniformIndexing;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageImageArrayNonUniformIndexing;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexing;
-- VkBool32 shaderUniformTexelBufferArrayNonUniformIndexing;
-- VkBool32 shaderStorageTexelBufferArrayNonUniformIndexing;
-- VkBool32 descriptorBindingUniformBufferUpdateAfterBind;
-- VkBool32 descriptorBindingSampledImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageImageUpdateAfterBind;
-- VkBool32 descriptorBindingStorageBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUniformTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingStorageTexelBufferUpdateAfterBind;
-- VkBool32 descriptorBindingUpdateUnusedWhilePending;
-- VkBool32 descriptorBindingPartiallyBound;
-- VkBool32 descriptorBindingVariableDescriptorCount;
-- VkBool32 runtimeDescriptorArray;
-- } VkPhysicalDeviceDescriptorIndexingFeaturesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingFeaturesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingFeaturesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingFeaturesEXT'
-- |
-- typedef struct VkPhysicalDeviceDescriptorIndexingPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxUpdateAfterBindDescriptorsInAllPools;
-- VkBool32 shaderUniformBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderSampledImageArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageBufferArrayNonUniformIndexingNative;
-- VkBool32 shaderStorageImageArrayNonUniformIndexingNative;
-- VkBool32 shaderInputAttachmentArrayNonUniformIndexingNative;
-- VkBool32 robustBufferAccessUpdateAfterBind;
-- VkBool32 quadDivergentImplicitLod;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSamplers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindUniformBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageBuffers;
-- uint32_t maxPerStageDescriptorUpdateAfterBindSampledImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindStorageImages;
-- uint32_t maxPerStageDescriptorUpdateAfterBindInputAttachments;
-- uint32_t maxPerStageUpdateAfterBindResources;
-- uint32_t maxDescriptorSetUpdateAfterBindSamplers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindUniformBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffers;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageBuffersDynamic;
-- uint32_t maxDescriptorSetUpdateAfterBindSampledImages;
-- uint32_t maxDescriptorSetUpdateAfterBindStorageImages;
-- uint32_t maxDescriptorSetUpdateAfterBindInputAttachments;
-- } VkPhysicalDeviceDescriptorIndexingPropertiesEXT;
--
--
-- VkPhysicalDeviceDescriptorIndexingPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDescriptorIndexingPropertiesEXT = VkStruct VkPhysicalDeviceDescriptorIndexingPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceDiscardRectanglePropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxDiscardRectangles;
-- } VkPhysicalDeviceDiscardRectanglePropertiesEXT;
--
--
-- VkPhysicalDeviceDiscardRectanglePropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceDiscardRectanglePropertiesEXT = VkStruct VkPhysicalDeviceDiscardRectanglePropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalBufferInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkBufferUsageFlags usage;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalBufferInfo;
--
--
-- VkPhysicalDeviceExternalBufferInfo registry at www.khronos.org
type VkPhysicalDeviceExternalBufferInfo = VkStruct VkPhysicalDeviceExternalBufferInfo'
-- | Alias for VkPhysicalDeviceExternalBufferInfo
type VkPhysicalDeviceExternalBufferInfoKHR = VkPhysicalDeviceExternalBufferInfo
-- |
-- typedef struct VkPhysicalDeviceExternalFenceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalFenceInfo;
--
--
-- VkPhysicalDeviceExternalFenceInfo registry at www.khronos.org
type VkPhysicalDeviceExternalFenceInfo = VkStruct VkPhysicalDeviceExternalFenceInfo'
-- | Alias for VkPhysicalDeviceExternalFenceInfo
type VkPhysicalDeviceExternalFenceInfoKHR = VkPhysicalDeviceExternalFenceInfo
-- |
-- typedef struct VkPhysicalDeviceExternalImageFormatInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalMemoryHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalImageFormatInfo;
--
--
-- VkPhysicalDeviceExternalImageFormatInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalImageFormatInfo = VkStruct VkPhysicalDeviceExternalImageFormatInfo'
-- | Alias for VkPhysicalDeviceExternalImageFormatInfo
type VkPhysicalDeviceExternalImageFormatInfoKHR = VkPhysicalDeviceExternalImageFormatInfo
-- |
-- typedef struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkDeviceSize minImportedHostPointerAlignment;
-- } VkPhysicalDeviceExternalMemoryHostPropertiesEXT;
--
--
-- VkPhysicalDeviceExternalMemoryHostPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceExternalMemoryHostPropertiesEXT = VkStruct VkPhysicalDeviceExternalMemoryHostPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceExternalSemaphoreInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkPhysicalDeviceExternalSemaphoreInfo;
--
--
-- VkPhysicalDeviceExternalSemaphoreInfo registry at
-- www.khronos.org
type VkPhysicalDeviceExternalSemaphoreInfo = VkStruct VkPhysicalDeviceExternalSemaphoreInfo'
-- | Alias for VkPhysicalDeviceExternalSemaphoreInfo
type VkPhysicalDeviceExternalSemaphoreInfoKHR = VkPhysicalDeviceExternalSemaphoreInfo
-- |
-- typedef struct VkPhysicalDeviceFeatures2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceFeatures features;
-- } VkPhysicalDeviceFeatures2;
--
--
-- VkPhysicalDeviceFeatures2 registry at www.khronos.org
type VkPhysicalDeviceFeatures2 = VkStruct VkPhysicalDeviceFeatures2'
-- | Alias for VkPhysicalDeviceFeatures2
type VkPhysicalDeviceFeatures2KHR = VkPhysicalDeviceFeatures2
-- |
-- typedef struct VkPhysicalDeviceGroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t physicalDeviceCount;
-- VkPhysicalDevice physicalDevices[VK_MAX_DEVICE_GROUP_SIZE];
-- VkBool32 subsetAllocation;
-- } VkPhysicalDeviceGroupProperties;
--
--
-- VkPhysicalDeviceGroupProperties registry at www.khronos.org
type VkPhysicalDeviceGroupProperties = VkStruct VkPhysicalDeviceGroupProperties'
-- | Alias for VkPhysicalDeviceGroupProperties
type VkPhysicalDeviceGroupPropertiesKHR = VkPhysicalDeviceGroupProperties
-- |
-- typedef struct VkPhysicalDeviceIDProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint8_t deviceUUID[VK_UUID_SIZE];
-- uint8_t driverUUID[VK_UUID_SIZE];
-- uint8_t deviceLUID[VK_LUID_SIZE];
-- uint32_t deviceNodeMask;
-- VkBool32 deviceLUIDValid;
-- } VkPhysicalDeviceIDProperties;
--
--
-- VkPhysicalDeviceIDProperties registry at www.khronos.org
type VkPhysicalDeviceIDProperties = VkStruct VkPhysicalDeviceIDProperties'
-- | Alias for VkPhysicalDeviceIDProperties
type VkPhysicalDeviceIDPropertiesKHR = VkPhysicalDeviceIDProperties
-- |
-- typedef struct VkPhysicalDeviceImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkImageTiling tiling;
-- VkImageUsageFlags usage;
-- VkImageCreateFlags flags;
-- } VkPhysicalDeviceImageFormatInfo2;
--
--
-- VkPhysicalDeviceImageFormatInfo2 registry at www.khronos.org
type VkPhysicalDeviceImageFormatInfo2 = VkStruct VkPhysicalDeviceImageFormatInfo2'
-- | Alias for VkPhysicalDeviceImageFormatInfo2
type VkPhysicalDeviceImageFormatInfo2KHR = VkPhysicalDeviceImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceLimits {
-- uint32_t maxImageDimension1D;
-- uint32_t maxImageDimension2D;
-- uint32_t maxImageDimension3D;
-- uint32_t maxImageDimensionCube;
-- uint32_t maxImageArrayLayers;
-- uint32_t maxTexelBufferElements;
-- uint32_t maxUniformBufferRange;
-- uint32_t maxStorageBufferRange;
-- uint32_t maxPushConstantsSize;
-- uint32_t maxMemoryAllocationCount;
-- uint32_t maxSamplerAllocationCount;
-- VkDeviceSize bufferImageGranularity;
-- VkDeviceSize sparseAddressSpaceSize;
-- uint32_t maxBoundDescriptorSets;
-- uint32_t maxPerStageDescriptorSamplers;
-- uint32_t maxPerStageDescriptorUniformBuffers;
-- uint32_t maxPerStageDescriptorStorageBuffers;
-- uint32_t maxPerStageDescriptorSampledImages;
-- uint32_t maxPerStageDescriptorStorageImages;
-- uint32_t maxPerStageDescriptorInputAttachments;
-- uint32_t maxPerStageResources;
-- uint32_t maxDescriptorSetSamplers;
-- uint32_t maxDescriptorSetUniformBuffers;
-- uint32_t maxDescriptorSetUniformBuffersDynamic;
-- uint32_t maxDescriptorSetStorageBuffers;
-- uint32_t maxDescriptorSetStorageBuffersDynamic;
-- uint32_t maxDescriptorSetSampledImages;
-- uint32_t maxDescriptorSetStorageImages;
-- uint32_t maxDescriptorSetInputAttachments;
-- uint32_t maxVertexInputAttributes;
-- uint32_t maxVertexInputBindings;
-- uint32_t maxVertexInputAttributeOffset;
-- uint32_t maxVertexInputBindingStride;
-- uint32_t maxVertexOutputComponents;
-- uint32_t maxTessellationGenerationLevel;
-- uint32_t maxTessellationPatchSize;
-- uint32_t maxTessellationControlPerVertexInputComponents;
-- uint32_t maxTessellationControlPerVertexOutputComponents;
-- uint32_t maxTessellationControlPerPatchOutputComponents;
-- uint32_t maxTessellationControlTotalOutputComponents;
-- uint32_t maxTessellationEvaluationInputComponents;
-- uint32_t maxTessellationEvaluationOutputComponents;
-- uint32_t maxGeometryShaderInvocations;
-- uint32_t maxGeometryInputComponents;
-- uint32_t maxGeometryOutputComponents;
-- uint32_t maxGeometryOutputVertices;
-- uint32_t maxGeometryTotalOutputComponents;
-- uint32_t maxFragmentInputComponents;
-- uint32_t maxFragmentOutputAttachments;
-- uint32_t maxFragmentDualSrcAttachments;
-- uint32_t maxFragmentCombinedOutputResources;
-- uint32_t maxComputeSharedMemorySize;
-- uint32_t maxComputeWorkGroupCount[3];
-- uint32_t maxComputeWorkGroupInvocations;
-- uint32_t maxComputeWorkGroupSize[3];
-- uint32_t subPixelPrecisionBits;
-- uint32_t subTexelPrecisionBits;
-- uint32_t mipmapPrecisionBits;
-- uint32_t maxDrawIndexedIndexValue;
-- uint32_t maxDrawIndirectCount;
-- float maxSamplerLodBias;
-- float maxSamplerAnisotropy;
-- uint32_t maxViewports;
-- uint32_t maxViewportDimensions[2];
-- float viewportBoundsRange[2];
-- uint32_t viewportSubPixelBits;
-- size_t minMemoryMapAlignment;
-- VkDeviceSize minTexelBufferOffsetAlignment;
-- VkDeviceSize minUniformBufferOffsetAlignment;
-- VkDeviceSize minStorageBufferOffsetAlignment;
-- int32_t minTexelOffset;
-- uint32_t maxTexelOffset;
-- int32_t minTexelGatherOffset;
-- uint32_t maxTexelGatherOffset;
-- float minInterpolationOffset;
-- float maxInterpolationOffset;
-- uint32_t subPixelInterpolationOffsetBits;
-- uint32_t maxFramebufferWidth;
-- uint32_t maxFramebufferHeight;
-- uint32_t maxFramebufferLayers;
-- VkSampleCountFlags framebufferColorSampleCounts;
-- VkSampleCountFlags framebufferDepthSampleCounts;
-- VkSampleCountFlags framebufferStencilSampleCounts;
-- VkSampleCountFlags framebufferNoAttachmentsSampleCounts;
-- uint32_t maxColorAttachments;
-- VkSampleCountFlags sampledImageColorSampleCounts;
-- VkSampleCountFlags sampledImageIntegerSampleCounts;
-- VkSampleCountFlags sampledImageDepthSampleCounts;
-- VkSampleCountFlags sampledImageStencilSampleCounts;
-- VkSampleCountFlags storageImageSampleCounts;
-- uint32_t maxSampleMaskWords;
-- VkBool32 timestampComputeAndGraphics;
-- float timestampPeriod;
-- uint32_t maxClipDistances;
-- uint32_t maxCullDistances;
-- uint32_t maxCombinedClipAndCullDistances;
-- uint32_t discreteQueuePriorities;
-- float pointSizeRange[2];
-- float lineWidthRange[2];
-- float pointSizeGranularity;
-- float lineWidthGranularity;
-- VkBool32 strictLines;
-- VkBool32 standardSampleLocations;
-- VkDeviceSize optimalBufferCopyOffsetAlignment;
-- VkDeviceSize optimalBufferCopyRowPitchAlignment;
-- VkDeviceSize nonCoherentAtomSize;
-- } VkPhysicalDeviceLimits;
--
--
-- VkPhysicalDeviceLimits registry at www.khronos.org
type VkPhysicalDeviceLimits = VkStruct VkPhysicalDeviceLimits'
-- |
-- typedef struct VkPhysicalDeviceMaintenance3Properties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPerSetDescriptors;
-- VkDeviceSize maxMemoryAllocationSize;
-- } VkPhysicalDeviceMaintenance3Properties;
--
--
-- VkPhysicalDeviceMaintenance3Properties registry at
-- www.khronos.org
type VkPhysicalDeviceMaintenance3Properties = VkStruct VkPhysicalDeviceMaintenance3Properties'
-- | Alias for VkPhysicalDeviceMaintenance3Properties
type VkPhysicalDeviceMaintenance3PropertiesKHR = VkPhysicalDeviceMaintenance3Properties
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties {
-- uint32_t memoryTypeCount;
-- VkMemoryType memoryTypes[VK_MAX_MEMORY_TYPES];
-- uint32_t memoryHeapCount;
-- VkMemoryHeap memoryHeaps[VK_MAX_MEMORY_HEAPS];
-- } VkPhysicalDeviceMemoryProperties;
--
--
-- VkPhysicalDeviceMemoryProperties registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties = VkStruct VkPhysicalDeviceMemoryProperties'
-- |
-- typedef struct VkPhysicalDeviceMemoryProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceMemoryProperties memoryProperties;
-- } VkPhysicalDeviceMemoryProperties2;
--
--
-- VkPhysicalDeviceMemoryProperties2 registry at www.khronos.org
type VkPhysicalDeviceMemoryProperties2 = VkStruct VkPhysicalDeviceMemoryProperties2'
-- | Alias for VkPhysicalDeviceMemoryProperties2
type VkPhysicalDeviceMemoryProperties2KHR = VkPhysicalDeviceMemoryProperties2
-- |
-- typedef struct VkPhysicalDeviceMultiviewFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 multiview;
-- VkBool32 multiviewGeometryShader;
-- VkBool32 multiviewTessellationShader;
-- } VkPhysicalDeviceMultiviewFeatures;
--
--
-- VkPhysicalDeviceMultiviewFeatures registry at www.khronos.org
type VkPhysicalDeviceMultiviewFeatures = VkStruct VkPhysicalDeviceMultiviewFeatures'
-- | Alias for VkPhysicalDeviceMultiviewFeatures
type VkPhysicalDeviceMultiviewFeaturesKHR = VkPhysicalDeviceMultiviewFeatures
-- |
-- typedef struct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 perViewPositionAllComponents;
-- } VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
--
--
-- VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX registry at
-- www.khronos.org
type VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX = VkStruct VkPhysicalDeviceMultiviewPerViewAttributesPropertiesNVX'
-- |
-- typedef struct VkPhysicalDeviceMultiviewProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxMultiviewViewCount;
-- uint32_t maxMultiviewInstanceIndex;
-- } VkPhysicalDeviceMultiviewProperties;
--
--
-- VkPhysicalDeviceMultiviewProperties registry at www.khronos.org
type VkPhysicalDeviceMultiviewProperties = VkStruct VkPhysicalDeviceMultiviewProperties'
-- | Alias for VkPhysicalDeviceMultiviewProperties
type VkPhysicalDeviceMultiviewPropertiesKHR = VkPhysicalDeviceMultiviewProperties
-- |
-- typedef struct VkPhysicalDevicePointClippingProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkPointClippingBehavior pointClippingBehavior;
-- } VkPhysicalDevicePointClippingProperties;
--
--
-- VkPhysicalDevicePointClippingProperties registry at
-- www.khronos.org
type VkPhysicalDevicePointClippingProperties = VkStruct VkPhysicalDevicePointClippingProperties'
-- | Alias for VkPhysicalDevicePointClippingProperties
type VkPhysicalDevicePointClippingPropertiesKHR = VkPhysicalDevicePointClippingProperties
-- |
-- typedef struct VkPhysicalDeviceProperties {
-- uint32_t apiVersion;
-- uint32_t driverVersion;
-- uint32_t vendorID;
-- uint32_t deviceID;
-- VkPhysicalDeviceType deviceType;
-- char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
-- uint8_t pipelineCacheUUID[VK_UUID_SIZE];
-- VkPhysicalDeviceLimits limits;
-- VkPhysicalDeviceSparseProperties sparseProperties;
-- } VkPhysicalDeviceProperties;
--
--
-- VkPhysicalDeviceProperties registry at www.khronos.org
type VkPhysicalDeviceProperties = VkStruct VkPhysicalDeviceProperties'
-- |
-- typedef struct VkPhysicalDeviceProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkPhysicalDeviceProperties properties;
-- } VkPhysicalDeviceProperties2;
--
--
-- VkPhysicalDeviceProperties2 registry at www.khronos.org
type VkPhysicalDeviceProperties2 = VkStruct VkPhysicalDeviceProperties2'
-- | Alias for VkPhysicalDeviceProperties2
type VkPhysicalDeviceProperties2KHR = VkPhysicalDeviceProperties2
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedMemory;
-- } VkPhysicalDeviceProtectedMemoryFeatures;
--
--
-- VkPhysicalDeviceProtectedMemoryFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryFeatures = VkStruct VkPhysicalDeviceProtectedMemoryFeatures'
-- |
-- typedef struct VkPhysicalDeviceProtectedMemoryProperties {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 protectedNoFault;
-- } VkPhysicalDeviceProtectedMemoryProperties;
--
--
-- VkPhysicalDeviceProtectedMemoryProperties registry at
-- www.khronos.org
type VkPhysicalDeviceProtectedMemoryProperties = VkStruct VkPhysicalDeviceProtectedMemoryProperties'
-- |
-- typedef struct VkPhysicalDevicePushDescriptorPropertiesKHR {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxPushDescriptors;
-- } VkPhysicalDevicePushDescriptorPropertiesKHR;
--
--
-- VkPhysicalDevicePushDescriptorPropertiesKHR registry at
-- www.khronos.org
type VkPhysicalDevicePushDescriptorPropertiesKHR = VkStruct VkPhysicalDevicePushDescriptorPropertiesKHR'
-- |
-- typedef struct VkPhysicalDeviceSampleLocationsPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkSampleCountFlags sampleLocationSampleCounts;
-- VkExtent2D maxSampleLocationGridSize;
-- float sampleLocationCoordinateRange[2];
-- uint32_t sampleLocationSubPixelBits;
-- VkBool32 variableSampleLocations;
-- } VkPhysicalDeviceSampleLocationsPropertiesEXT;
--
--
-- VkPhysicalDeviceSampleLocationsPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSampleLocationsPropertiesEXT = VkStruct VkPhysicalDeviceSampleLocationsPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 filterMinmaxSingleComponentFormats;
-- VkBool32 filterMinmaxImageComponentMapping;
-- } VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
--
--
-- VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT = VkStruct VkPhysicalDeviceSamplerFilterMinmaxPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceSamplerYcbcrConversionFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 samplerYcbcrConversion;
-- } VkPhysicalDeviceSamplerYcbcrConversionFeatures;
--
--
-- VkPhysicalDeviceSamplerYcbcrConversionFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceSamplerYcbcrConversionFeatures = VkStruct VkPhysicalDeviceSamplerYcbcrConversionFeatures'
-- | Alias for VkPhysicalDeviceSamplerYcbcrConversionFeatures
type VkPhysicalDeviceSamplerYcbcrConversionFeaturesKHR = VkPhysicalDeviceSamplerYcbcrConversionFeatures
-- |
-- typedef struct VkPhysicalDeviceShaderCorePropertiesAMD {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t shaderEngineCount;
-- uint32_t shaderArraysPerEngineCount;
-- uint32_t computeUnitsPerShaderArray;
-- uint32_t simdPerComputeUnit;
-- uint32_t wavefrontsPerSimd;
-- uint32_t wavefrontSize;
-- uint32_t sgprsPerSimd;
-- uint32_t minSgprAllocation;
-- uint32_t maxSgprAllocation;
-- uint32_t sgprAllocationGranularity;
-- uint32_t vgprsPerSimd;
-- uint32_t minVgprAllocation;
-- uint32_t maxVgprAllocation;
-- uint32_t vgprAllocationGranularity;
-- } VkPhysicalDeviceShaderCorePropertiesAMD;
--
--
-- VkPhysicalDeviceShaderCorePropertiesAMD registry at
-- www.khronos.org
type VkPhysicalDeviceShaderCorePropertiesAMD = VkStruct VkPhysicalDeviceShaderCorePropertiesAMD'
-- |
-- typedef struct VkPhysicalDeviceShaderDrawParameterFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 shaderDrawParameters;
-- } VkPhysicalDeviceShaderDrawParameterFeatures;
--
--
-- VkPhysicalDeviceShaderDrawParameterFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceShaderDrawParameterFeatures = VkStruct VkPhysicalDeviceShaderDrawParameterFeatures'
-- |
-- typedef struct VkPhysicalDeviceSparseImageFormatInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkImageType type;
-- VkSampleCountFlagBits samples;
-- VkImageUsageFlags usage;
-- VkImageTiling tiling;
-- } VkPhysicalDeviceSparseImageFormatInfo2;
--
--
-- VkPhysicalDeviceSparseImageFormatInfo2 registry at
-- www.khronos.org
type VkPhysicalDeviceSparseImageFormatInfo2 = VkStruct VkPhysicalDeviceSparseImageFormatInfo2'
-- | Alias for VkPhysicalDeviceSparseImageFormatInfo2
type VkPhysicalDeviceSparseImageFormatInfo2KHR = VkPhysicalDeviceSparseImageFormatInfo2
-- |
-- typedef struct VkPhysicalDeviceSparseProperties {
-- VkBool32 residencyStandard2DBlockShape;
-- VkBool32 residencyStandard2DMultisampleBlockShape;
-- VkBool32 residencyStandard3DBlockShape;
-- VkBool32 residencyAlignedMipSize;
-- VkBool32 residencyNonResidentStrict;
-- } VkPhysicalDeviceSparseProperties;
--
--
-- VkPhysicalDeviceSparseProperties registry at www.khronos.org
type VkPhysicalDeviceSparseProperties = VkStruct VkPhysicalDeviceSparseProperties'
-- |
-- typedef struct VkPhysicalDeviceSubgroupProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t subgroupSize;
-- VkShaderStageFlags supportedStages;
-- VkSubgroupFeatureFlags supportedOperations;
-- VkBool32 quadOperationsInAllStages;
-- } VkPhysicalDeviceSubgroupProperties;
--
--
-- VkPhysicalDeviceSubgroupProperties registry at www.khronos.org
type VkPhysicalDeviceSubgroupProperties = VkStruct VkPhysicalDeviceSubgroupProperties'
-- |
-- typedef struct VkPhysicalDeviceSurfaceInfo2KHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSurfaceKHR surface;
-- } VkPhysicalDeviceSurfaceInfo2KHR;
--
--
-- VkPhysicalDeviceSurfaceInfo2KHR registry at www.khronos.org
type VkPhysicalDeviceSurfaceInfo2KHR = VkStruct VkPhysicalDeviceSurfaceInfo2KHR'
-- |
-- typedef struct VkPhysicalDeviceVariablePointerFeatures {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 variablePointersStorageBuffer;
-- VkBool32 variablePointers;
-- } VkPhysicalDeviceVariablePointerFeatures;
--
--
-- VkPhysicalDeviceVariablePointerFeatures registry at
-- www.khronos.org
type VkPhysicalDeviceVariablePointerFeatures = VkStruct VkPhysicalDeviceVariablePointerFeatures'
-- | Alias for VkPhysicalDeviceVariablePointerFeatures
type VkPhysicalDeviceVariablePointerFeaturesKHR = VkPhysicalDeviceVariablePointerFeatures
-- |
-- typedef struct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVertexAttribDivisor;
-- } VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT;
--
--
-- VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT registry at
-- www.khronos.org
type VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT = VkStruct VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT'
-- |
-- typedef struct VkPhysicalDeviceFeatures {
-- VkBool32 robustBufferAccess;
-- VkBool32 fullDrawIndexUint32;
-- VkBool32 imageCubeArray;
-- VkBool32 independentBlend;
-- VkBool32 geometryShader;
-- VkBool32 tessellationShader;
-- VkBool32 sampleRateShading;
-- VkBool32 dualSrcBlend;
-- VkBool32 logicOp;
-- VkBool32 multiDrawIndirect;
-- VkBool32 drawIndirectFirstInstance;
-- VkBool32 depthClamp;
-- VkBool32 depthBiasClamp;
-- VkBool32 fillModeNonSolid;
-- VkBool32 depthBounds;
-- VkBool32 wideLines;
-- VkBool32 largePoints;
-- VkBool32 alphaToOne;
-- VkBool32 multiViewport;
-- VkBool32 samplerAnisotropy;
-- VkBool32 textureCompressionETC2;
-- VkBool32 textureCompressionASTC_LDR;
-- VkBool32 textureCompressionBC;
-- VkBool32 occlusionQueryPrecise;
-- VkBool32 pipelineStatisticsQuery;
-- VkBool32 vertexPipelineStoresAndAtomics;
-- VkBool32 fragmentStoresAndAtomics;
-- VkBool32 shaderTessellationAndGeometryPointSize;
-- VkBool32 shaderImageGatherExtended;
-- VkBool32 shaderStorageImageExtendedFormats;
-- VkBool32 shaderStorageImageMultisample;
-- VkBool32 shaderStorageImageReadWithoutFormat;
-- VkBool32 shaderStorageImageWriteWithoutFormat;
-- VkBool32 shaderUniformBufferArrayDynamicIndexing;
-- VkBool32 shaderSampledImageArrayDynamicIndexing;
-- VkBool32 shaderStorageBufferArrayDynamicIndexing;
-- VkBool32 shaderStorageImageArrayDynamicIndexing;
-- VkBool32 shaderClipDistance;
-- VkBool32 shaderCullDistance;
-- VkBool32 shaderFloat64;
-- VkBool32 shaderInt64;
-- VkBool32 shaderInt16;
-- VkBool32 shaderResourceResidency;
-- VkBool32 shaderResourceMinLod;
-- VkBool32 sparseBinding;
-- VkBool32 sparseResidencyBuffer;
-- VkBool32 sparseResidencyImage2D;
-- VkBool32 sparseResidencyImage3D;
-- VkBool32 sparseResidency2Samples;
-- VkBool32 sparseResidency4Samples;
-- VkBool32 sparseResidency8Samples;
-- VkBool32 sparseResidency16Samples;
-- VkBool32 sparseResidencyAliased;
-- VkBool32 variableMultisampleRate;
-- VkBool32 inheritedQueries;
-- } VkPhysicalDeviceFeatures;
--
--
-- VkPhysicalDeviceFeatures registry at www.khronos.org
type VkPhysicalDeviceFeatures = VkStruct VkPhysicalDeviceFeatures'
-- |
-- typedef struct VkQueueFamilyProperties {
-- VkQueueFlags queueFlags;
-- uint32_t queueCount;
-- uint32_t timestampValidBits;
-- VkExtent3D minImageTransferGranularity;
-- } VkQueueFamilyProperties;
--
--
-- VkQueueFamilyProperties registry at www.khronos.org
type VkQueueFamilyProperties = VkStruct VkQueueFamilyProperties'
-- |
-- typedef struct VkQueueFamilyProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkQueueFamilyProperties queueFamilyProperties;
-- } VkQueueFamilyProperties2;
--
--
-- VkQueueFamilyProperties2 registry at www.khronos.org
type VkQueueFamilyProperties2 = VkStruct VkQueueFamilyProperties2'
-- | Alias for VkQueueFamilyProperties2
type VkQueueFamilyProperties2KHR = VkQueueFamilyProperties2
type VkCreateDevice = "vkCreateDevice"
pattern VkCreateDevice :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INITIALIZATION_FAILED,
-- VK_ERROR_EXTENSION_NOT_PRESENT,
-- VK_ERROR_FEATURE_NOT_PRESENT, VK_ERROR_TOO_MANY_OBJECTS,
-- VK_ERROR_DEVICE_LOST.
--
-- -- VkResult vkCreateDevice -- ( VkPhysicalDevice physicalDevice -- , const VkDeviceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDevice* pDevice -- ) ---- -- vkCreateDevice registry at www.khronos.org type HS_vkCreateDevice = VkPhysicalDevice " physicalDevice" -> Ptr VkDeviceCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDevice " pDevice" -> IO VkResult type PFN_vkCreateDevice = FunPtr HS_vkCreateDevice -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_FEATURE_NOT_PRESENT, VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkCreateDevice -- ( VkPhysicalDevice physicalDevice -- , const VkDeviceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDevice* pDevice -- ) ---- -- vkCreateDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDevice <- vkGetInstanceProc @VkCreateDevice vkInstance ---- -- or less efficient: -- --
-- myCreateDevice <- vkGetProc @VkCreateDevice ---- -- Note: vkCreateDeviceUnsafe and -- vkCreateDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateDevice is -- an alias of vkCreateDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDeviceSafe. vkCreateDevice :: VkPhysicalDevice -> Ptr VkDeviceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDevice -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_FEATURE_NOT_PRESENT, VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkCreateDevice -- ( VkPhysicalDevice physicalDevice -- , const VkDeviceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDevice* pDevice -- ) ---- -- vkCreateDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDevice <- vkGetInstanceProc @VkCreateDevice vkInstance ---- -- or less efficient: -- --
-- myCreateDevice <- vkGetProc @VkCreateDevice ---- -- Note: vkCreateDeviceUnsafe and -- vkCreateDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateDevice is -- an alias of vkCreateDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDeviceSafe. vkCreateDeviceUnsafe :: VkPhysicalDevice -> Ptr VkDeviceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDevice -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_FEATURE_NOT_PRESENT, VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkCreateDevice -- ( VkPhysicalDevice physicalDevice -- , const VkDeviceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDevice* pDevice -- ) ---- -- vkCreateDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDevice <- vkGetInstanceProc @VkCreateDevice vkInstance ---- -- or less efficient: -- --
-- myCreateDevice <- vkGetProc @VkCreateDevice ---- -- Note: vkCreateDeviceUnsafe and -- vkCreateDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateDevice is -- an alias of vkCreateDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDeviceSafe. vkCreateDeviceSafe :: VkPhysicalDevice -> Ptr VkDeviceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDevice -> IO VkResult type VkDestroyDevice = "vkDestroyDevice" pattern VkDestroyDevice :: CString -- |
-- void vkDestroyDevice -- ( VkDevice device -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDevice registry at www.khronos.org type HS_vkDestroyDevice = VkDevice " device" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDevice = FunPtr HS_vkDestroyDevice -- |
-- void vkDestroyDevice -- ( VkDevice device -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDevice <- vkGetDeviceProc @VkDestroyDevice vkDevice ---- -- or less efficient: -- --
-- myDestroyDevice <- vkGetProc @VkDestroyDevice ---- -- Note: vkDestroyDeviceUnsafe and -- vkDestroyDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyDevice -- is an alias of vkDestroyDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDeviceSafe. vkDestroyDevice :: VkDevice -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDevice -- ( VkDevice device -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDevice <- vkGetDeviceProc @VkDestroyDevice vkDevice ---- -- or less efficient: -- --
-- myDestroyDevice <- vkGetProc @VkDestroyDevice ---- -- Note: vkDestroyDeviceUnsafe and -- vkDestroyDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyDevice -- is an alias of vkDestroyDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDeviceSafe. vkDestroyDeviceUnsafe :: VkDevice -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDevice -- ( VkDevice device -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDevice registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDevice <- vkGetDeviceProc @VkDestroyDevice vkDevice ---- -- or less efficient: -- --
-- myDestroyDevice <- vkGetProc @VkDestroyDevice ---- -- Note: vkDestroyDeviceUnsafe and -- vkDestroyDeviceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyDevice -- is an alias of vkDestroyDeviceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDeviceSafe. vkDestroyDeviceSafe :: VkDevice -> Ptr VkAllocationCallbacks -> IO () -- | type = enum -- -- VkDeviceEventTypeEXT registry at www.khronos.org newtype VkDeviceEventTypeEXT VkDeviceEventTypeEXT :: Int32 -> VkDeviceEventTypeEXT pattern VK_DEVICE_EVENT_TYPE_DISPLAY_HOTPLUG_EXT :: VkDeviceEventTypeEXT newtype VkDeviceGroupPresentModeBitmaskKHR (a :: FlagType) VkDeviceGroupPresentModeBitmaskKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR pattern VkDeviceGroupPresentModeFlagBitsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagBit pattern VkDeviceGroupPresentModeFlagsKHR :: VkFlags -> VkDeviceGroupPresentModeBitmaskKHR FlagMask -- | Present from local memory -- -- bitpos = 0 pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Present from remote memory -- -- bitpos = 1 pattern VK_DEVICE_GROUP_PRESENT_MODE_REMOTE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Present sum of local and/or remote memory -- -- bitpos = 2 pattern VK_DEVICE_GROUP_PRESENT_MODE_SUM_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a -- | Each physical device presents from local memory -- -- bitpos = 3 pattern VK_DEVICE_GROUP_PRESENT_MODE_LOCAL_MULTI_DEVICE_BIT_KHR :: VkDeviceGroupPresentModeBitmaskKHR a newtype VkDeviceCreateFlagBits VkDeviceCreateFlagBits :: VkFlags -> VkDeviceCreateFlagBits type VkDeviceGroupPresentModeFlagBitsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagBit type VkDeviceGroupPresentModeFlagsKHR = VkDeviceGroupPresentModeBitmaskKHR FlagMask newtype VkDeviceQueueCreateBitmask (a :: FlagType) VkDeviceQueueCreateBitmask :: VkFlags -> VkDeviceQueueCreateBitmask pattern VkDeviceQueueCreateFlagBits :: VkFlags -> VkDeviceQueueCreateBitmask FlagBit pattern VkDeviceQueueCreateFlags :: VkFlags -> VkDeviceQueueCreateBitmask FlagMask type VkDeviceQueueCreateFlagBits = VkDeviceQueueCreateBitmask FlagBit type VkDeviceQueueCreateFlags = VkDeviceQueueCreateBitmask FlagMask -- |
-- typedef struct VkDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceCreateFlags flags;
-- uint32_t queueCreateInfoCount;
-- const VkDeviceQueueCreateInfo* pQueueCreateInfos;
-- uint32_t enabledLayerCount;
-- const char* const* ppEnabledLayerNames;
-- uint32_t enabledExtensionCount;
-- const char* const* ppEnabledExtensionNames;
-- const VkPhysicalDeviceFeatures* pEnabledFeatures;
-- } VkDeviceCreateInfo;
--
--
-- VkDeviceCreateInfo registry at www.khronos.org
type VkDeviceCreateInfo = VkStruct VkDeviceCreateInfo'
-- |
-- typedef struct VkDeviceEventInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceEventTypeEXT deviceEvent;
-- } VkDeviceEventInfoEXT;
--
--
-- VkDeviceEventInfoEXT registry at www.khronos.org
type VkDeviceEventInfoEXT = VkStruct VkDeviceEventInfoEXT'
-- |
-- typedef struct VkDeviceGeneratedCommandsFeaturesNVX {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 computeBindingPointSupport;
-- } VkDeviceGeneratedCommandsFeaturesNVX;
--
--
-- VkDeviceGeneratedCommandsFeaturesNVX registry at
-- www.khronos.org
type VkDeviceGeneratedCommandsFeaturesNVX = VkStruct VkDeviceGeneratedCommandsFeaturesNVX'
-- |
-- typedef struct VkDeviceGeneratedCommandsLimitsNVX {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t maxIndirectCommandsLayoutTokenCount;
-- uint32_t maxObjectEntryCounts;
-- uint32_t minSequenceCountBufferOffsetAlignment;
-- uint32_t minSequenceIndexBufferOffsetAlignment;
-- uint32_t minCommandsTokenBufferOffsetAlignment;
-- } VkDeviceGeneratedCommandsLimitsNVX;
--
--
-- VkDeviceGeneratedCommandsLimitsNVX registry at www.khronos.org
type VkDeviceGeneratedCommandsLimitsNVX = VkStruct VkDeviceGeneratedCommandsLimitsNVX'
-- |
-- typedef struct VkDeviceGroupBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t resourceDeviceIndex;
-- uint32_t memoryDeviceIndex;
-- } VkDeviceGroupBindSparseInfo;
--
--
-- VkDeviceGroupBindSparseInfo registry at www.khronos.org
type VkDeviceGroupBindSparseInfo = VkStruct VkDeviceGroupBindSparseInfo'
-- | Alias for VkDeviceGroupBindSparseInfo
type VkDeviceGroupBindSparseInfoKHR = VkDeviceGroupBindSparseInfo
-- |
-- typedef struct VkDeviceGroupCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- } VkDeviceGroupCommandBufferBeginInfo;
--
--
-- VkDeviceGroupCommandBufferBeginInfo registry at www.khronos.org
type VkDeviceGroupCommandBufferBeginInfo = VkStruct VkDeviceGroupCommandBufferBeginInfo'
-- | Alias for VkDeviceGroupCommandBufferBeginInfo
type VkDeviceGroupCommandBufferBeginInfoKHR = VkDeviceGroupCommandBufferBeginInfo
-- |
-- typedef struct VkDeviceGroupDeviceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t physicalDeviceCount;
-- const VkPhysicalDevice* pPhysicalDevices;
-- } VkDeviceGroupDeviceCreateInfo;
--
--
-- VkDeviceGroupDeviceCreateInfo registry at www.khronos.org
type VkDeviceGroupDeviceCreateInfo = VkStruct VkDeviceGroupDeviceCreateInfo'
-- | Alias for VkDeviceGroupDeviceCreateInfo
type VkDeviceGroupDeviceCreateInfoKHR = VkDeviceGroupDeviceCreateInfo
-- |
-- typedef struct VkDeviceGroupPresentCapabilitiesKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t presentMask[VK_MAX_DEVICE_GROUP_SIZE];
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupPresentCapabilitiesKHR;
--
--
-- VkDeviceGroupPresentCapabilitiesKHR registry at www.khronos.org
type VkDeviceGroupPresentCapabilitiesKHR = VkStruct VkDeviceGroupPresentCapabilitiesKHR'
-- |
-- typedef struct VkDeviceGroupPresentInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t swapchainCount;
-- const uint32_t* pDeviceMasks;
-- VkDeviceGroupPresentModeFlagBitsKHR mode;
-- } VkDeviceGroupPresentInfoKHR;
--
--
-- VkDeviceGroupPresentInfoKHR registry at www.khronos.org
type VkDeviceGroupPresentInfoKHR = VkStruct VkDeviceGroupPresentInfoKHR'
-- |
-- typedef struct VkDeviceGroupRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceMask;
-- uint32_t deviceRenderAreaCount;
-- const VkRect2D* pDeviceRenderAreas;
-- } VkDeviceGroupRenderPassBeginInfo;
--
--
-- VkDeviceGroupRenderPassBeginInfo registry at www.khronos.org
type VkDeviceGroupRenderPassBeginInfo = VkStruct VkDeviceGroupRenderPassBeginInfo'
-- | Alias for VkDeviceGroupRenderPassBeginInfo
type VkDeviceGroupRenderPassBeginInfoKHR = VkDeviceGroupRenderPassBeginInfo
-- |
-- typedef struct VkDeviceGroupSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const uint32_t* pWaitSemaphoreDeviceIndices;
-- uint32_t commandBufferCount;
-- const uint32_t* pCommandBufferDeviceMasks;
-- uint32_t signalSemaphoreCount;
-- const uint32_t* pSignalSemaphoreDeviceIndices;
-- } VkDeviceGroupSubmitInfo;
--
--
-- VkDeviceGroupSubmitInfo registry at www.khronos.org
type VkDeviceGroupSubmitInfo = VkStruct VkDeviceGroupSubmitInfo'
-- | Alias for VkDeviceGroupSubmitInfo
type VkDeviceGroupSubmitInfoKHR = VkDeviceGroupSubmitInfo
-- |
-- typedef struct VkDeviceGroupSwapchainCreateInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceGroupPresentModeFlagsKHR modes;
-- } VkDeviceGroupSwapchainCreateInfoKHR;
--
--
-- VkDeviceGroupSwapchainCreateInfoKHR registry at www.khronos.org
type VkDeviceGroupSwapchainCreateInfoKHR = VkStruct VkDeviceGroupSwapchainCreateInfoKHR'
-- |
-- typedef struct VkDeviceQueueCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueCount;
-- const float* pQueuePriorities;
-- } VkDeviceQueueCreateInfo;
--
--
-- VkDeviceQueueCreateInfo registry at www.khronos.org
type VkDeviceQueueCreateInfo = VkStruct VkDeviceQueueCreateInfo'
-- |
-- typedef struct VkDeviceQueueGlobalPriorityCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueueGlobalPriorityEXT globalPriority;
-- } VkDeviceQueueGlobalPriorityCreateInfoEXT;
--
--
-- VkDeviceQueueGlobalPriorityCreateInfoEXT registry at
-- www.khronos.org
type VkDeviceQueueGlobalPriorityCreateInfoEXT = VkStruct VkDeviceQueueGlobalPriorityCreateInfoEXT'
-- |
-- typedef struct VkDeviceQueueInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceQueueCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- uint32_t queueIndex;
-- } VkDeviceQueueInfo2;
--
--
-- VkDeviceQueueInfo2 registry at www.khronos.org
type VkDeviceQueueInfo2 = VkStruct VkDeviceQueueInfo2'
type VkEnumerateInstanceExtensionProperties = "vkEnumerateInstanceExtensionProperties"
pattern VkEnumerateInstanceExtensionProperties :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_LAYER_NOT_PRESENT.
--
-- -- VkResult vkEnumerateInstanceExtensionProperties -- ( const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateInstanceExtensionProperties registry at -- www.khronos.org type HS_vkEnumerateInstanceExtensionProperties = CString " pLayerName" -> Ptr Word32 " pPropertyCount" -> Ptr VkExtensionProperties " pProperties" -> IO VkResult type PFN_vkEnumerateInstanceExtensionProperties = FunPtr HS_vkEnumerateInstanceExtensionProperties -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateInstanceExtensionProperties -- ( const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateInstanceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetInstanceProc @VkEnumerateInstanceExtensionProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetProc @VkEnumerateInstanceExtensionProperties ---- -- Note: vkEnumerateInstanceExtensionPropertiesUnsafe and -- vkEnumerateInstanceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceExtensionProperties is an -- alias of vkEnumerateInstanceExtensionPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkEnumerateInstanceExtensionPropertiesSafe. vkEnumerateInstanceExtensionProperties :: CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateInstanceExtensionProperties -- ( const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateInstanceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetInstanceProc @VkEnumerateInstanceExtensionProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetProc @VkEnumerateInstanceExtensionProperties ---- -- Note: vkEnumerateInstanceExtensionPropertiesUnsafe and -- vkEnumerateInstanceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceExtensionProperties is an -- alias of vkEnumerateInstanceExtensionPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkEnumerateInstanceExtensionPropertiesSafe. vkEnumerateInstanceExtensionPropertiesUnsafe :: CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateInstanceExtensionProperties -- ( const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateInstanceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetInstanceProc @VkEnumerateInstanceExtensionProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceExtensionProperties <- vkGetProc @VkEnumerateInstanceExtensionProperties ---- -- Note: vkEnumerateInstanceExtensionPropertiesUnsafe and -- vkEnumerateInstanceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceExtensionProperties is an -- alias of vkEnumerateInstanceExtensionPropertiesUnsafe when -- the useUnsafeFFIDefault cabal flag is enabled; otherwise, it -- is an alias of vkEnumerateInstanceExtensionPropertiesSafe. vkEnumerateInstanceExtensionPropertiesSafe :: CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult type VkEnumerateDeviceExtensionProperties = "vkEnumerateDeviceExtensionProperties" pattern VkEnumerateDeviceExtensionProperties :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateDeviceExtensionProperties -- ( VkPhysicalDevice physicalDevice -- , const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateDeviceExtensionProperties registry at -- www.khronos.org type HS_vkEnumerateDeviceExtensionProperties = VkPhysicalDevice " physicalDevice" -> CString " pLayerName" -> Ptr Word32 " pPropertyCount" -> Ptr VkExtensionProperties " pProperties" -> IO VkResult type PFN_vkEnumerateDeviceExtensionProperties = FunPtr HS_vkEnumerateDeviceExtensionProperties -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateDeviceExtensionProperties -- ( VkPhysicalDevice physicalDevice -- , const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateDeviceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetInstanceProc @VkEnumerateDeviceExtensionProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetProc @VkEnumerateDeviceExtensionProperties ---- -- Note: vkEnumerateDeviceExtensionPropertiesUnsafe and -- vkEnumerateDeviceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateDeviceExtensionProperties is an -- alias of vkEnumerateDeviceExtensionPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceExtensionPropertiesSafe. vkEnumerateDeviceExtensionProperties :: VkPhysicalDevice -> CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateDeviceExtensionProperties -- ( VkPhysicalDevice physicalDevice -- , const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateDeviceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetInstanceProc @VkEnumerateDeviceExtensionProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetProc @VkEnumerateDeviceExtensionProperties ---- -- Note: vkEnumerateDeviceExtensionPropertiesUnsafe and -- vkEnumerateDeviceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateDeviceExtensionProperties is an -- alias of vkEnumerateDeviceExtensionPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceExtensionPropertiesSafe. vkEnumerateDeviceExtensionPropertiesUnsafe :: VkPhysicalDevice -> CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_LAYER_NOT_PRESENT. -- --
-- VkResult vkEnumerateDeviceExtensionProperties -- ( VkPhysicalDevice physicalDevice -- , const char* pLayerName -- , uint32_t* pPropertyCount -- , VkExtensionProperties* pProperties -- ) ---- -- vkEnumerateDeviceExtensionProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetInstanceProc @VkEnumerateDeviceExtensionProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceExtensionProperties <- vkGetProc @VkEnumerateDeviceExtensionProperties ---- -- Note: vkEnumerateDeviceExtensionPropertiesUnsafe and -- vkEnumerateDeviceExtensionPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateDeviceExtensionProperties is an -- alias of vkEnumerateDeviceExtensionPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceExtensionPropertiesSafe. vkEnumerateDeviceExtensionPropertiesSafe :: VkPhysicalDevice -> CString -> Ptr Word32 -> Ptr VkExtensionProperties -> IO VkResult -- |
-- typedef struct VkExtensionProperties {
-- char extensionName[VK_MAX_EXTENSION_NAME_SIZE];
-- uint32_t specVersion;
-- } VkExtensionProperties;
--
--
-- VkExtensionProperties registry at www.khronos.org
type VkExtensionProperties = VkStruct VkExtensionProperties'
type VkEnumerateInstanceLayerProperties = "vkEnumerateInstanceLayerProperties"
pattern VkEnumerateInstanceLayerProperties :: CString
-- | Success codes: VK_SUCCESS, VK_INCOMPLETE.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkEnumerateInstanceLayerProperties -- ( uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateInstanceLayerProperties registry at www.khronos.org type HS_vkEnumerateInstanceLayerProperties = Ptr Word32 " pPropertyCount" -> Ptr VkLayerProperties " pProperties" -> IO VkResult type PFN_vkEnumerateInstanceLayerProperties = FunPtr HS_vkEnumerateInstanceLayerProperties -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateInstanceLayerProperties -- ( uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateInstanceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceLayerProperties <- vkGetInstanceProc @VkEnumerateInstanceLayerProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceLayerProperties <- vkGetProc @VkEnumerateInstanceLayerProperties ---- -- Note: vkEnumerateInstanceLayerPropertiesUnsafe and -- vkEnumerateInstanceLayerPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceLayerProperties is an alias -- of vkEnumerateInstanceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceLayerPropertiesSafe. vkEnumerateInstanceLayerProperties :: Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateInstanceLayerProperties -- ( uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateInstanceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceLayerProperties <- vkGetInstanceProc @VkEnumerateInstanceLayerProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceLayerProperties <- vkGetProc @VkEnumerateInstanceLayerProperties ---- -- Note: vkEnumerateInstanceLayerPropertiesUnsafe and -- vkEnumerateInstanceLayerPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceLayerProperties is an alias -- of vkEnumerateInstanceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceLayerPropertiesSafe. vkEnumerateInstanceLayerPropertiesUnsafe :: Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateInstanceLayerProperties -- ( uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateInstanceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateInstanceLayerProperties <- vkGetInstanceProc @VkEnumerateInstanceLayerProperties VK_NULL ---- -- or less efficient: -- --
-- myEnumerateInstanceLayerProperties <- vkGetProc @VkEnumerateInstanceLayerProperties ---- -- Note: vkEnumerateInstanceLayerPropertiesUnsafe and -- vkEnumerateInstanceLayerPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkEnumerateInstanceLayerProperties is an alias -- of vkEnumerateInstanceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateInstanceLayerPropertiesSafe. vkEnumerateInstanceLayerPropertiesSafe :: Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult type VkEnumerateDeviceLayerProperties = "vkEnumerateDeviceLayerProperties" pattern VkEnumerateDeviceLayerProperties :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateDeviceLayerProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateDeviceLayerProperties registry at www.khronos.org type HS_vkEnumerateDeviceLayerProperties = VkPhysicalDevice " physicalDevice" -> Ptr Word32 " pPropertyCount" -> Ptr VkLayerProperties " pProperties" -> IO VkResult type PFN_vkEnumerateDeviceLayerProperties = FunPtr HS_vkEnumerateDeviceLayerProperties -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateDeviceLayerProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateDeviceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceLayerProperties <- vkGetInstanceProc @VkEnumerateDeviceLayerProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceLayerProperties <- vkGetProc @VkEnumerateDeviceLayerProperties ---- -- Note: vkEnumerateDeviceLayerPropertiesUnsafe and -- vkEnumerateDeviceLayerPropertiesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumerateDeviceLayerProperties is an alias of -- vkEnumerateDeviceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceLayerPropertiesSafe. vkEnumerateDeviceLayerProperties :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateDeviceLayerProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateDeviceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceLayerProperties <- vkGetInstanceProc @VkEnumerateDeviceLayerProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceLayerProperties <- vkGetProc @VkEnumerateDeviceLayerProperties ---- -- Note: vkEnumerateDeviceLayerPropertiesUnsafe and -- vkEnumerateDeviceLayerPropertiesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumerateDeviceLayerProperties is an alias of -- vkEnumerateDeviceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceLayerPropertiesSafe. vkEnumerateDeviceLayerPropertiesUnsafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEnumerateDeviceLayerProperties -- ( VkPhysicalDevice physicalDevice -- , uint32_t* pPropertyCount -- , VkLayerProperties* pProperties -- ) ---- -- vkEnumerateDeviceLayerProperties registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEnumerateDeviceLayerProperties <- vkGetInstanceProc @VkEnumerateDeviceLayerProperties vkInstance ---- -- or less efficient: -- --
-- myEnumerateDeviceLayerProperties <- vkGetProc @VkEnumerateDeviceLayerProperties ---- -- Note: vkEnumerateDeviceLayerPropertiesUnsafe and -- vkEnumerateDeviceLayerPropertiesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkEnumerateDeviceLayerProperties is an alias of -- vkEnumerateDeviceLayerPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEnumerateDeviceLayerPropertiesSafe. vkEnumerateDeviceLayerPropertiesSafe :: VkPhysicalDevice -> Ptr Word32 -> Ptr VkLayerProperties -> IO VkResult -- |
-- typedef struct VkLayerProperties {
-- char layerName[VK_MAX_EXTENSION_NAME_SIZE];
-- uint32_t specVersion;
-- uint32_t implementationVersion;
-- char description[VK_MAX_DESCRIPTION_SIZE];
-- } VkLayerProperties;
--
--
-- VkLayerProperties registry at www.khronos.org
type VkLayerProperties = VkStruct VkLayerProperties'
type VkGetDeviceQueue = "vkGetDeviceQueue"
pattern VkGetDeviceQueue :: CString
-- | -- void vkGetDeviceQueue -- ( VkDevice device -- , uint32_t queueFamilyIndex -- , uint32_t queueIndex -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue registry at www.khronos.org type HS_vkGetDeviceQueue = VkDevice " device" -> Word32 " queueFamilyIndex" -> Word32 " queueIndex" -> Ptr VkQueue " pQueue" -> IO () type PFN_vkGetDeviceQueue = FunPtr HS_vkGetDeviceQueue -- |
-- void vkGetDeviceQueue -- ( VkDevice device -- , uint32_t queueFamilyIndex -- , uint32_t queueIndex -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue <- vkGetDeviceProc @VkGetDeviceQueue vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue <- vkGetProc @VkGetDeviceQueue ---- -- Note: vkGetDeviceQueueUnsafe and -- vkGetDeviceQueueSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue is an alias of -- vkGetDeviceQueueUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueueSafe. vkGetDeviceQueue :: VkDevice -> Word32 -> Word32 -> Ptr VkQueue -> IO () -- |
-- void vkGetDeviceQueue -- ( VkDevice device -- , uint32_t queueFamilyIndex -- , uint32_t queueIndex -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue <- vkGetDeviceProc @VkGetDeviceQueue vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue <- vkGetProc @VkGetDeviceQueue ---- -- Note: vkGetDeviceQueueUnsafe and -- vkGetDeviceQueueSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue is an alias of -- vkGetDeviceQueueUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueueSafe. vkGetDeviceQueueUnsafe :: VkDevice -> Word32 -> Word32 -> Ptr VkQueue -> IO () -- |
-- void vkGetDeviceQueue -- ( VkDevice device -- , uint32_t queueFamilyIndex -- , uint32_t queueIndex -- , VkQueue* pQueue -- ) ---- -- vkGetDeviceQueue registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceQueue <- vkGetDeviceProc @VkGetDeviceQueue vkDevice ---- -- or less efficient: -- --
-- myGetDeviceQueue <- vkGetProc @VkGetDeviceQueue ---- -- Note: vkGetDeviceQueueUnsafe and -- vkGetDeviceQueueSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceQueue is an alias of -- vkGetDeviceQueueUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetDeviceQueueSafe. vkGetDeviceQueueSafe :: VkDevice -> Word32 -> Word32 -> Ptr VkQueue -> IO () type VkQueueSubmit = "vkQueueSubmit" pattern VkQueueSubmit :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueSubmit -- ( VkQueue queue -- , uint32_t submitCount -- , const VkSubmitInfo* pSubmits -- , VkFence fence -- ) ---- -- vkQueueSubmit registry at www.khronos.org type HS_vkQueueSubmit = VkQueue " queue" -> Word32 " submitCount" -> Ptr VkSubmitInfo " pSubmits" -> VkFence " fence" -> IO VkResult type PFN_vkQueueSubmit = FunPtr HS_vkQueueSubmit -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueSubmit -- ( VkQueue queue -- , uint32_t submitCount -- , const VkSubmitInfo* pSubmits -- , VkFence fence -- ) ---- -- vkQueueSubmit registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueSubmit <- vkGetInstanceProc @VkQueueSubmit vkInstance ---- -- or less efficient: -- --
-- myQueueSubmit <- vkGetProc @VkQueueSubmit ---- -- Note: vkQueueSubmitUnsafe and -- vkQueueSubmitSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueSubmit is -- an alias of vkQueueSubmitUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueSubmitSafe. vkQueueSubmit :: VkQueue -> Word32 -> Ptr VkSubmitInfo -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueSubmit -- ( VkQueue queue -- , uint32_t submitCount -- , const VkSubmitInfo* pSubmits -- , VkFence fence -- ) ---- -- vkQueueSubmit registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueSubmit <- vkGetInstanceProc @VkQueueSubmit vkInstance ---- -- or less efficient: -- --
-- myQueueSubmit <- vkGetProc @VkQueueSubmit ---- -- Note: vkQueueSubmitUnsafe and -- vkQueueSubmitSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueSubmit is -- an alias of vkQueueSubmitUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueSubmitSafe. vkQueueSubmitUnsafe :: VkQueue -> Word32 -> Ptr VkSubmitInfo -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueSubmit -- ( VkQueue queue -- , uint32_t submitCount -- , const VkSubmitInfo* pSubmits -- , VkFence fence -- ) ---- -- vkQueueSubmit registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueSubmit <- vkGetInstanceProc @VkQueueSubmit vkInstance ---- -- or less efficient: -- --
-- myQueueSubmit <- vkGetProc @VkQueueSubmit ---- -- Note: vkQueueSubmitUnsafe and -- vkQueueSubmitSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueSubmit is -- an alias of vkQueueSubmitUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueSubmitSafe. vkQueueSubmitSafe :: VkQueue -> Word32 -> Ptr VkSubmitInfo -> VkFence -> IO VkResult type VkQueueWaitIdle = "vkQueueWaitIdle" pattern VkQueueWaitIdle :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueWaitIdle -- ( VkQueue queue -- ) ---- -- vkQueueWaitIdle registry at www.khronos.org type HS_vkQueueWaitIdle = VkQueue " queue" -> IO VkResult type PFN_vkQueueWaitIdle = FunPtr HS_vkQueueWaitIdle -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueWaitIdle -- ( VkQueue queue -- ) ---- -- vkQueueWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueWaitIdle <- vkGetInstanceProc @VkQueueWaitIdle vkInstance ---- -- or less efficient: -- --
-- myQueueWaitIdle <- vkGetProc @VkQueueWaitIdle ---- -- Note: vkQueueWaitIdleUnsafe and -- vkQueueWaitIdleSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueWaitIdle -- is an alias of vkQueueWaitIdleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueWaitIdleSafe. vkQueueWaitIdle :: VkQueue -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueWaitIdle -- ( VkQueue queue -- ) ---- -- vkQueueWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueWaitIdle <- vkGetInstanceProc @VkQueueWaitIdle vkInstance ---- -- or less efficient: -- --
-- myQueueWaitIdle <- vkGetProc @VkQueueWaitIdle ---- -- Note: vkQueueWaitIdleUnsafe and -- vkQueueWaitIdleSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueWaitIdle -- is an alias of vkQueueWaitIdleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueWaitIdleSafe. vkQueueWaitIdleUnsafe :: VkQueue -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkQueueWaitIdle -- ( VkQueue queue -- ) ---- -- vkQueueWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueWaitIdle <- vkGetInstanceProc @VkQueueWaitIdle vkInstance ---- -- or less efficient: -- --
-- myQueueWaitIdle <- vkGetProc @VkQueueWaitIdle ---- -- Note: vkQueueWaitIdleUnsafe and -- vkQueueWaitIdleSafe are the unsafe and safe -- FFI imports of this function, respectively. vkQueueWaitIdle -- is an alias of vkQueueWaitIdleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkQueueWaitIdleSafe. vkQueueWaitIdleSafe :: VkQueue -> IO VkResult type VkDeviceWaitIdle = "vkDeviceWaitIdle" pattern VkDeviceWaitIdle :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkDeviceWaitIdle -- ( VkDevice device -- ) ---- -- vkDeviceWaitIdle registry at www.khronos.org type HS_vkDeviceWaitIdle = VkDevice " device" -> IO VkResult type PFN_vkDeviceWaitIdle = FunPtr HS_vkDeviceWaitIdle -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkDeviceWaitIdle -- ( VkDevice device -- ) ---- -- vkDeviceWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDeviceWaitIdle <- vkGetDeviceProc @VkDeviceWaitIdle vkDevice ---- -- or less efficient: -- --
-- myDeviceWaitIdle <- vkGetProc @VkDeviceWaitIdle ---- -- Note: vkDeviceWaitIdleUnsafe and -- vkDeviceWaitIdleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDeviceWaitIdle is an alias of -- vkDeviceWaitIdleUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDeviceWaitIdleSafe. vkDeviceWaitIdle :: VkDevice -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkDeviceWaitIdle -- ( VkDevice device -- ) ---- -- vkDeviceWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDeviceWaitIdle <- vkGetDeviceProc @VkDeviceWaitIdle vkDevice ---- -- or less efficient: -- --
-- myDeviceWaitIdle <- vkGetProc @VkDeviceWaitIdle ---- -- Note: vkDeviceWaitIdleUnsafe and -- vkDeviceWaitIdleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDeviceWaitIdle is an alias of -- vkDeviceWaitIdleUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDeviceWaitIdleSafe. vkDeviceWaitIdleUnsafe :: VkDevice -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkDeviceWaitIdle -- ( VkDevice device -- ) ---- -- vkDeviceWaitIdle registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDeviceWaitIdle <- vkGetDeviceProc @VkDeviceWaitIdle vkDevice ---- -- or less efficient: -- --
-- myDeviceWaitIdle <- vkGetProc @VkDeviceWaitIdle ---- -- Note: vkDeviceWaitIdleUnsafe and -- vkDeviceWaitIdleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDeviceWaitIdle is an alias of -- vkDeviceWaitIdleUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDeviceWaitIdleSafe. vkDeviceWaitIdleSafe :: VkDevice -> IO VkResult -- |
-- typedef struct VkSubmitInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- const VkPipelineStageFlags* pWaitDstStageMask;
-- uint32_t commandBufferCount;
-- const VkCommandBuffer* pCommandBuffers;
-- uint32_t signalSemaphoreCount;
-- const VkSemaphore* pSignalSemaphores;
-- } VkSubmitInfo;
--
--
-- VkSubmitInfo registry at www.khronos.org
type VkSubmitInfo = VkStruct VkSubmitInfo'
type VkAllocateMemory = "vkAllocateMemory"
pattern VkAllocateMemory :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_TOO_MANY_OBJECTS,
-- VK_ERROR_INVALID_EXTERNAL_HANDLE.
--
-- -- VkResult vkAllocateMemory -- ( VkDevice device -- , const VkMemoryAllocateInfo* pAllocateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDeviceMemory* pMemory -- ) ---- -- vkAllocateMemory registry at www.khronos.org type HS_vkAllocateMemory = VkDevice " device" -> Ptr VkMemoryAllocateInfo " pAllocateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDeviceMemory " pMemory" -> IO VkResult type PFN_vkAllocateMemory = FunPtr HS_vkAllocateMemory -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_INVALID_EXTERNAL_HANDLE. -- --
-- VkResult vkAllocateMemory -- ( VkDevice device -- , const VkMemoryAllocateInfo* pAllocateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDeviceMemory* pMemory -- ) ---- -- vkAllocateMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateMemory <- vkGetDeviceProc @VkAllocateMemory vkDevice ---- -- or less efficient: -- --
-- myAllocateMemory <- vkGetProc @VkAllocateMemory ---- -- Note: vkAllocateMemoryUnsafe and -- vkAllocateMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateMemory is an alias of -- vkAllocateMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkAllocateMemorySafe. vkAllocateMemory :: VkDevice -> Ptr VkMemoryAllocateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDeviceMemory -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_INVALID_EXTERNAL_HANDLE. -- --
-- VkResult vkAllocateMemory -- ( VkDevice device -- , const VkMemoryAllocateInfo* pAllocateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDeviceMemory* pMemory -- ) ---- -- vkAllocateMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateMemory <- vkGetDeviceProc @VkAllocateMemory vkDevice ---- -- or less efficient: -- --
-- myAllocateMemory <- vkGetProc @VkAllocateMemory ---- -- Note: vkAllocateMemoryUnsafe and -- vkAllocateMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateMemory is an alias of -- vkAllocateMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkAllocateMemorySafe. vkAllocateMemoryUnsafe :: VkDevice -> Ptr VkMemoryAllocateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDeviceMemory -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS, -- VK_ERROR_INVALID_EXTERNAL_HANDLE. -- --
-- VkResult vkAllocateMemory -- ( VkDevice device -- , const VkMemoryAllocateInfo* pAllocateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDeviceMemory* pMemory -- ) ---- -- vkAllocateMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateMemory <- vkGetDeviceProc @VkAllocateMemory vkDevice ---- -- or less efficient: -- --
-- myAllocateMemory <- vkGetProc @VkAllocateMemory ---- -- Note: vkAllocateMemoryUnsafe and -- vkAllocateMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateMemory is an alias of -- vkAllocateMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkAllocateMemorySafe. vkAllocateMemorySafe :: VkDevice -> Ptr VkMemoryAllocateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDeviceMemory -> IO VkResult type VkFreeMemory = "vkFreeMemory" pattern VkFreeMemory :: CString -- |
-- void vkFreeMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkFreeMemory registry at www.khronos.org type HS_vkFreeMemory = VkDevice " device" -> VkDeviceMemory " memory" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkFreeMemory = FunPtr HS_vkFreeMemory -- |
-- void vkFreeMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkFreeMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeMemory <- vkGetDeviceProc @VkFreeMemory vkDevice ---- -- or less efficient: -- --
-- myFreeMemory <- vkGetProc @VkFreeMemory ---- -- Note: vkFreeMemoryUnsafe and vkFreeMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkFreeMemory is an alias of -- vkFreeMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkFreeMemorySafe. vkFreeMemory :: VkDevice -> VkDeviceMemory -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkFreeMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkFreeMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeMemory <- vkGetDeviceProc @VkFreeMemory vkDevice ---- -- or less efficient: -- --
-- myFreeMemory <- vkGetProc @VkFreeMemory ---- -- Note: vkFreeMemoryUnsafe and vkFreeMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkFreeMemory is an alias of -- vkFreeMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkFreeMemorySafe. vkFreeMemoryUnsafe :: VkDevice -> VkDeviceMemory -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkFreeMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkFreeMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeMemory <- vkGetDeviceProc @VkFreeMemory vkDevice ---- -- or less efficient: -- --
-- myFreeMemory <- vkGetProc @VkFreeMemory ---- -- Note: vkFreeMemoryUnsafe and vkFreeMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkFreeMemory is an alias of -- vkFreeMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkFreeMemorySafe. vkFreeMemorySafe :: VkDevice -> VkDeviceMemory -> Ptr VkAllocationCallbacks -> IO () type VkMapMemory = "vkMapMemory" pattern VkMapMemory :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_MEMORY_MAP_FAILED. -- --
-- VkResult vkMapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize offset -- , VkDeviceSize size -- , VkMemoryMapFlags flags -- , void** ppData -- ) ---- -- vkMapMemory registry at www.khronos.org type HS_vkMapMemory = VkDevice " device" -> VkDeviceMemory " memory" -> VkDeviceSize " offset" -> VkDeviceSize " size" -> VkMemoryMapFlags " flags" -> Ptr (Ptr Void) " ppData" -> IO VkResult type PFN_vkMapMemory = FunPtr HS_vkMapMemory -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_MEMORY_MAP_FAILED. -- --
-- VkResult vkMapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize offset -- , VkDeviceSize size -- , VkMemoryMapFlags flags -- , void** ppData -- ) ---- -- vkMapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMapMemory <- vkGetDeviceProc @VkMapMemory vkDevice ---- -- or less efficient: -- --
-- myMapMemory <- vkGetProc @VkMapMemory ---- -- Note: vkMapMemoryUnsafe and vkMapMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkMapMemory is an alias of -- vkMapMemoryUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of -- vkMapMemorySafe. vkMapMemory :: VkDevice -> VkDeviceMemory -> VkDeviceSize -> VkDeviceSize -> VkMemoryMapFlags -> Ptr (Ptr Void) -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_MEMORY_MAP_FAILED. -- --
-- VkResult vkMapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize offset -- , VkDeviceSize size -- , VkMemoryMapFlags flags -- , void** ppData -- ) ---- -- vkMapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMapMemory <- vkGetDeviceProc @VkMapMemory vkDevice ---- -- or less efficient: -- --
-- myMapMemory <- vkGetProc @VkMapMemory ---- -- Note: vkMapMemoryUnsafe and vkMapMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkMapMemory is an alias of -- vkMapMemoryUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of -- vkMapMemorySafe. vkMapMemoryUnsafe :: VkDevice -> VkDeviceMemory -> VkDeviceSize -> VkDeviceSize -> VkMemoryMapFlags -> Ptr (Ptr Void) -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_MEMORY_MAP_FAILED. -- --
-- VkResult vkMapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize offset -- , VkDeviceSize size -- , VkMemoryMapFlags flags -- , void** ppData -- ) ---- -- vkMapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMapMemory <- vkGetDeviceProc @VkMapMemory vkDevice ---- -- or less efficient: -- --
-- myMapMemory <- vkGetProc @VkMapMemory ---- -- Note: vkMapMemoryUnsafe and vkMapMemorySafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkMapMemory is an alias of -- vkMapMemoryUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of -- vkMapMemorySafe. vkMapMemorySafe :: VkDevice -> VkDeviceMemory -> VkDeviceSize -> VkDeviceSize -> VkMemoryMapFlags -> Ptr (Ptr Void) -> IO VkResult type VkUnmapMemory = "vkUnmapMemory" pattern VkUnmapMemory :: CString -- |
-- void vkUnmapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- ) ---- -- vkUnmapMemory registry at www.khronos.org type HS_vkUnmapMemory = VkDevice " device" -> VkDeviceMemory " memory" -> IO () type PFN_vkUnmapMemory = FunPtr HS_vkUnmapMemory -- |
-- void vkUnmapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- ) ---- -- vkUnmapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUnmapMemory <- vkGetDeviceProc @VkUnmapMemory vkDevice ---- -- or less efficient: -- --
-- myUnmapMemory <- vkGetProc @VkUnmapMemory ---- -- Note: vkUnmapMemoryUnsafe and -- vkUnmapMemorySafe are the unsafe and safe -- FFI imports of this function, respectively. vkUnmapMemory is -- an alias of vkUnmapMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUnmapMemorySafe. vkUnmapMemory :: VkDevice -> VkDeviceMemory -> IO () -- |
-- void vkUnmapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- ) ---- -- vkUnmapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUnmapMemory <- vkGetDeviceProc @VkUnmapMemory vkDevice ---- -- or less efficient: -- --
-- myUnmapMemory <- vkGetProc @VkUnmapMemory ---- -- Note: vkUnmapMemoryUnsafe and -- vkUnmapMemorySafe are the unsafe and safe -- FFI imports of this function, respectively. vkUnmapMemory is -- an alias of vkUnmapMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUnmapMemorySafe. vkUnmapMemoryUnsafe :: VkDevice -> VkDeviceMemory -> IO () -- |
-- void vkUnmapMemory -- ( VkDevice device -- , VkDeviceMemory memory -- ) ---- -- vkUnmapMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUnmapMemory <- vkGetDeviceProc @VkUnmapMemory vkDevice ---- -- or less efficient: -- --
-- myUnmapMemory <- vkGetProc @VkUnmapMemory ---- -- Note: vkUnmapMemoryUnsafe and -- vkUnmapMemorySafe are the unsafe and safe -- FFI imports of this function, respectively. vkUnmapMemory is -- an alias of vkUnmapMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUnmapMemorySafe. vkUnmapMemorySafe :: VkDevice -> VkDeviceMemory -> IO () type VkFlushMappedMemoryRanges = "vkFlushMappedMemoryRanges" pattern VkFlushMappedMemoryRanges :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFlushMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkFlushMappedMemoryRanges registry at www.khronos.org type HS_vkFlushMappedMemoryRanges = VkDevice " device" -> Word32 " memoryRangeCount" -> Ptr VkMappedMemoryRange " pMemoryRanges" -> IO VkResult type PFN_vkFlushMappedMemoryRanges = FunPtr HS_vkFlushMappedMemoryRanges -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFlushMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkFlushMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFlushMappedMemoryRanges <- vkGetDeviceProc @VkFlushMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myFlushMappedMemoryRanges <- vkGetProc @VkFlushMappedMemoryRanges ---- -- Note: vkFlushMappedMemoryRangesUnsafe and -- vkFlushMappedMemoryRangesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFlushMappedMemoryRanges is an alias of -- vkFlushMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFlushMappedMemoryRangesSafe. vkFlushMappedMemoryRanges :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFlushMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkFlushMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFlushMappedMemoryRanges <- vkGetDeviceProc @VkFlushMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myFlushMappedMemoryRanges <- vkGetProc @VkFlushMappedMemoryRanges ---- -- Note: vkFlushMappedMemoryRangesUnsafe and -- vkFlushMappedMemoryRangesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFlushMappedMemoryRanges is an alias of -- vkFlushMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFlushMappedMemoryRangesSafe. vkFlushMappedMemoryRangesUnsafe :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFlushMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkFlushMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFlushMappedMemoryRanges <- vkGetDeviceProc @VkFlushMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myFlushMappedMemoryRanges <- vkGetProc @VkFlushMappedMemoryRanges ---- -- Note: vkFlushMappedMemoryRangesUnsafe and -- vkFlushMappedMemoryRangesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFlushMappedMemoryRanges is an alias of -- vkFlushMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFlushMappedMemoryRangesSafe. vkFlushMappedMemoryRangesSafe :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult type VkInvalidateMappedMemoryRanges = "vkInvalidateMappedMemoryRanges" pattern VkInvalidateMappedMemoryRanges :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkInvalidateMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkInvalidateMappedMemoryRanges registry at www.khronos.org type HS_vkInvalidateMappedMemoryRanges = VkDevice " device" -> Word32 " memoryRangeCount" -> Ptr VkMappedMemoryRange " pMemoryRanges" -> IO VkResult type PFN_vkInvalidateMappedMemoryRanges = FunPtr HS_vkInvalidateMappedMemoryRanges -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkInvalidateMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkInvalidateMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myInvalidateMappedMemoryRanges <- vkGetDeviceProc @VkInvalidateMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myInvalidateMappedMemoryRanges <- vkGetProc @VkInvalidateMappedMemoryRanges ---- -- Note: vkInvalidateMappedMemoryRangesUnsafe and -- vkInvalidateMappedMemoryRangesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkInvalidateMappedMemoryRanges is an alias of -- vkInvalidateMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkInvalidateMappedMemoryRangesSafe. vkInvalidateMappedMemoryRanges :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkInvalidateMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkInvalidateMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myInvalidateMappedMemoryRanges <- vkGetDeviceProc @VkInvalidateMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myInvalidateMappedMemoryRanges <- vkGetProc @VkInvalidateMappedMemoryRanges ---- -- Note: vkInvalidateMappedMemoryRangesUnsafe and -- vkInvalidateMappedMemoryRangesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkInvalidateMappedMemoryRanges is an alias of -- vkInvalidateMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkInvalidateMappedMemoryRangesSafe. vkInvalidateMappedMemoryRangesUnsafe :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkInvalidateMappedMemoryRanges -- ( VkDevice device -- , uint32_t memoryRangeCount -- , const VkMappedMemoryRange* pMemoryRanges -- ) ---- -- vkInvalidateMappedMemoryRanges registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myInvalidateMappedMemoryRanges <- vkGetDeviceProc @VkInvalidateMappedMemoryRanges vkDevice ---- -- or less efficient: -- --
-- myInvalidateMappedMemoryRanges <- vkGetProc @VkInvalidateMappedMemoryRanges ---- -- Note: vkInvalidateMappedMemoryRangesUnsafe and -- vkInvalidateMappedMemoryRangesSafe are the unsafe -- and safe FFI imports of this function, respectively. -- vkInvalidateMappedMemoryRanges is an alias of -- vkInvalidateMappedMemoryRangesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkInvalidateMappedMemoryRangesSafe. vkInvalidateMappedMemoryRangesSafe :: VkDevice -> Word32 -> Ptr VkMappedMemoryRange -> IO VkResult type VkGetDeviceMemoryCommitment = "vkGetDeviceMemoryCommitment" pattern VkGetDeviceMemoryCommitment :: CString -- |
-- void vkGetDeviceMemoryCommitment -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize* pCommittedMemoryInBytes -- ) ---- -- vkGetDeviceMemoryCommitment registry at www.khronos.org type HS_vkGetDeviceMemoryCommitment = VkDevice " device" -> VkDeviceMemory " memory" -> Ptr VkDeviceSize " pCommittedMemoryInBytes" -> IO () type PFN_vkGetDeviceMemoryCommitment = FunPtr HS_vkGetDeviceMemoryCommitment -- |
-- void vkGetDeviceMemoryCommitment -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize* pCommittedMemoryInBytes -- ) ---- -- vkGetDeviceMemoryCommitment registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceMemoryCommitment <- vkGetDeviceProc @VkGetDeviceMemoryCommitment vkDevice ---- -- or less efficient: -- --
-- myGetDeviceMemoryCommitment <- vkGetProc @VkGetDeviceMemoryCommitment ---- -- Note: vkGetDeviceMemoryCommitmentUnsafe and -- vkGetDeviceMemoryCommitmentSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceMemoryCommitment is an alias of -- vkGetDeviceMemoryCommitmentUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceMemoryCommitmentSafe. vkGetDeviceMemoryCommitment :: VkDevice -> VkDeviceMemory -> Ptr VkDeviceSize -> IO () -- |
-- void vkGetDeviceMemoryCommitment -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize* pCommittedMemoryInBytes -- ) ---- -- vkGetDeviceMemoryCommitment registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceMemoryCommitment <- vkGetDeviceProc @VkGetDeviceMemoryCommitment vkDevice ---- -- or less efficient: -- --
-- myGetDeviceMemoryCommitment <- vkGetProc @VkGetDeviceMemoryCommitment ---- -- Note: vkGetDeviceMemoryCommitmentUnsafe and -- vkGetDeviceMemoryCommitmentSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceMemoryCommitment is an alias of -- vkGetDeviceMemoryCommitmentUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceMemoryCommitmentSafe. vkGetDeviceMemoryCommitmentUnsafe :: VkDevice -> VkDeviceMemory -> Ptr VkDeviceSize -> IO () -- |
-- void vkGetDeviceMemoryCommitment -- ( VkDevice device -- , VkDeviceMemory memory -- , VkDeviceSize* pCommittedMemoryInBytes -- ) ---- -- vkGetDeviceMemoryCommitment registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetDeviceMemoryCommitment <- vkGetDeviceProc @VkGetDeviceMemoryCommitment vkDevice ---- -- or less efficient: -- --
-- myGetDeviceMemoryCommitment <- vkGetProc @VkGetDeviceMemoryCommitment ---- -- Note: vkGetDeviceMemoryCommitmentUnsafe and -- vkGetDeviceMemoryCommitmentSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetDeviceMemoryCommitment is an alias of -- vkGetDeviceMemoryCommitmentUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetDeviceMemoryCommitmentSafe. vkGetDeviceMemoryCommitmentSafe :: VkDevice -> VkDeviceMemory -> Ptr VkDeviceSize -> IO () -- |
-- typedef struct VkMappedMemoryRange {
-- VkStructureType sType;
-- const void* pNext;
-- VkDeviceMemory memory;
-- VkDeviceSize offset;
-- VkDeviceSize size;
-- } VkMappedMemoryRange;
--
--
-- VkMappedMemoryRange registry at www.khronos.org
type VkMappedMemoryRange = VkStruct VkMappedMemoryRange'
type VkBindBufferMemory = "vkBindBufferMemory"
pattern VkBindBufferMemory :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkBindBufferMemory -- ( VkDevice device -- , VkBuffer buffer -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindBufferMemory registry at www.khronos.org type HS_vkBindBufferMemory = VkDevice " device" -> VkBuffer " buffer" -> VkDeviceMemory " memory" -> VkDeviceSize " memoryOffset" -> IO VkResult type PFN_vkBindBufferMemory = FunPtr HS_vkBindBufferMemory -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory -- ( VkDevice device -- , VkBuffer buffer -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindBufferMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory <- vkGetDeviceProc @VkBindBufferMemory vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory <- vkGetProc @VkBindBufferMemory ---- -- Note: vkBindBufferMemoryUnsafe and -- vkBindBufferMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory is an alias of -- vkBindBufferMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemorySafe. vkBindBufferMemory :: VkDevice -> VkBuffer -> VkDeviceMemory -> VkDeviceSize -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory -- ( VkDevice device -- , VkBuffer buffer -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindBufferMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory <- vkGetDeviceProc @VkBindBufferMemory vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory <- vkGetProc @VkBindBufferMemory ---- -- Note: vkBindBufferMemoryUnsafe and -- vkBindBufferMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory is an alias of -- vkBindBufferMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemorySafe. vkBindBufferMemoryUnsafe :: VkDevice -> VkBuffer -> VkDeviceMemory -> VkDeviceSize -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindBufferMemory -- ( VkDevice device -- , VkBuffer buffer -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindBufferMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindBufferMemory <- vkGetDeviceProc @VkBindBufferMemory vkDevice ---- -- or less efficient: -- --
-- myBindBufferMemory <- vkGetProc @VkBindBufferMemory ---- -- Note: vkBindBufferMemoryUnsafe and -- vkBindBufferMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindBufferMemory is an alias of -- vkBindBufferMemoryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBindBufferMemorySafe. vkBindBufferMemorySafe :: VkDevice -> VkBuffer -> VkDeviceMemory -> VkDeviceSize -> IO VkResult type VkBindImageMemory = "vkBindImageMemory" pattern VkBindImageMemory :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory -- ( VkDevice device -- , VkImage image -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindImageMemory registry at www.khronos.org type HS_vkBindImageMemory = VkDevice " device" -> VkImage " image" -> VkDeviceMemory " memory" -> VkDeviceSize " memoryOffset" -> IO VkResult type PFN_vkBindImageMemory = FunPtr HS_vkBindImageMemory -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory -- ( VkDevice device -- , VkImage image -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindImageMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory <- vkGetDeviceProc @VkBindImageMemory vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory <- vkGetProc @VkBindImageMemory ---- -- Note: vkBindImageMemoryUnsafe and -- vkBindImageMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory is an alias of -- vkBindImageMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkBindImageMemorySafe. vkBindImageMemory :: VkDevice -> VkImage -> VkDeviceMemory -> VkDeviceSize -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory -- ( VkDevice device -- , VkImage image -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindImageMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory <- vkGetDeviceProc @VkBindImageMemory vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory <- vkGetProc @VkBindImageMemory ---- -- Note: vkBindImageMemoryUnsafe and -- vkBindImageMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory is an alias of -- vkBindImageMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkBindImageMemorySafe. vkBindImageMemoryUnsafe :: VkDevice -> VkImage -> VkDeviceMemory -> VkDeviceSize -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBindImageMemory -- ( VkDevice device -- , VkImage image -- , VkDeviceMemory memory -- , VkDeviceSize memoryOffset -- ) ---- -- vkBindImageMemory registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBindImageMemory <- vkGetDeviceProc @VkBindImageMemory vkDevice ---- -- or less efficient: -- --
-- myBindImageMemory <- vkGetProc @VkBindImageMemory ---- -- Note: vkBindImageMemoryUnsafe and -- vkBindImageMemorySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBindImageMemory is an alias of -- vkBindImageMemoryUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkBindImageMemorySafe. vkBindImageMemorySafe :: VkDevice -> VkImage -> VkDeviceMemory -> VkDeviceSize -> IO VkResult type VkGetBufferMemoryRequirements = "vkGetBufferMemoryRequirements" pattern VkGetBufferMemoryRequirements :: CString -- |
-- void vkGetBufferMemoryRequirements -- ( VkDevice device -- , VkBuffer buffer -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements registry at www.khronos.org type HS_vkGetBufferMemoryRequirements = VkDevice " device" -> VkBuffer " buffer" -> Ptr VkMemoryRequirements " pMemoryRequirements" -> IO () type PFN_vkGetBufferMemoryRequirements = FunPtr HS_vkGetBufferMemoryRequirements -- |
-- void vkGetBufferMemoryRequirements -- ( VkDevice device -- , VkBuffer buffer -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements <- vkGetDeviceProc @VkGetBufferMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements <- vkGetProc @VkGetBufferMemoryRequirements ---- -- Note: vkGetBufferMemoryRequirementsUnsafe and -- vkGetBufferMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements is an alias of -- vkGetBufferMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirementsSafe. vkGetBufferMemoryRequirements :: VkDevice -> VkBuffer -> Ptr VkMemoryRequirements -> IO () -- |
-- void vkGetBufferMemoryRequirements -- ( VkDevice device -- , VkBuffer buffer -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements <- vkGetDeviceProc @VkGetBufferMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements <- vkGetProc @VkGetBufferMemoryRequirements ---- -- Note: vkGetBufferMemoryRequirementsUnsafe and -- vkGetBufferMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements is an alias of -- vkGetBufferMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirementsSafe. vkGetBufferMemoryRequirementsUnsafe :: VkDevice -> VkBuffer -> Ptr VkMemoryRequirements -> IO () -- |
-- void vkGetBufferMemoryRequirements -- ( VkDevice device -- , VkBuffer buffer -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetBufferMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetBufferMemoryRequirements <- vkGetDeviceProc @VkGetBufferMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetBufferMemoryRequirements <- vkGetProc @VkGetBufferMemoryRequirements ---- -- Note: vkGetBufferMemoryRequirementsUnsafe and -- vkGetBufferMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetBufferMemoryRequirements is an alias of -- vkGetBufferMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetBufferMemoryRequirementsSafe. vkGetBufferMemoryRequirementsSafe :: VkDevice -> VkBuffer -> Ptr VkMemoryRequirements -> IO () type VkGetImageMemoryRequirements = "vkGetImageMemoryRequirements" pattern VkGetImageMemoryRequirements :: CString -- |
-- void vkGetImageMemoryRequirements -- ( VkDevice device -- , VkImage image -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements registry at www.khronos.org type HS_vkGetImageMemoryRequirements = VkDevice " device" -> VkImage " image" -> Ptr VkMemoryRequirements " pMemoryRequirements" -> IO () type PFN_vkGetImageMemoryRequirements = FunPtr HS_vkGetImageMemoryRequirements -- |
-- void vkGetImageMemoryRequirements -- ( VkDevice device -- , VkImage image -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements <- vkGetDeviceProc @VkGetImageMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements <- vkGetProc @VkGetImageMemoryRequirements ---- -- Note: vkGetImageMemoryRequirementsUnsafe and -- vkGetImageMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements is an alias of -- vkGetImageMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirementsSafe. vkGetImageMemoryRequirements :: VkDevice -> VkImage -> Ptr VkMemoryRequirements -> IO () -- |
-- void vkGetImageMemoryRequirements -- ( VkDevice device -- , VkImage image -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements <- vkGetDeviceProc @VkGetImageMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements <- vkGetProc @VkGetImageMemoryRequirements ---- -- Note: vkGetImageMemoryRequirementsUnsafe and -- vkGetImageMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements is an alias of -- vkGetImageMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirementsSafe. vkGetImageMemoryRequirementsUnsafe :: VkDevice -> VkImage -> Ptr VkMemoryRequirements -> IO () -- |
-- void vkGetImageMemoryRequirements -- ( VkDevice device -- , VkImage image -- , VkMemoryRequirements* pMemoryRequirements -- ) ---- -- vkGetImageMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageMemoryRequirements <- vkGetDeviceProc @VkGetImageMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageMemoryRequirements <- vkGetProc @VkGetImageMemoryRequirements ---- -- Note: vkGetImageMemoryRequirementsUnsafe and -- vkGetImageMemoryRequirementsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageMemoryRequirements is an alias of -- vkGetImageMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageMemoryRequirementsSafe. vkGetImageMemoryRequirementsSafe :: VkDevice -> VkImage -> Ptr VkMemoryRequirements -> IO () type VkGetImageSparseMemoryRequirements = "vkGetImageSparseMemoryRequirements" pattern VkGetImageSparseMemoryRequirements :: CString -- |
-- void vkGetImageSparseMemoryRequirements -- ( VkDevice device -- , VkImage image -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements registry at www.khronos.org type HS_vkGetImageSparseMemoryRequirements = VkDevice " device" -> VkImage " image" -> Ptr Word32 " pSparseMemoryRequirementCount" -> Ptr VkSparseImageMemoryRequirements " pSparseMemoryRequirements" -> IO () type PFN_vkGetImageSparseMemoryRequirements = FunPtr HS_vkGetImageSparseMemoryRequirements -- |
-- void vkGetImageSparseMemoryRequirements -- ( VkDevice device -- , VkImage image -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements <- vkGetProc @VkGetImageSparseMemoryRequirements ---- -- Note: vkGetImageSparseMemoryRequirementsUnsafe and -- vkGetImageSparseMemoryRequirementsSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements is an alias -- of vkGetImageSparseMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirementsSafe. vkGetImageSparseMemoryRequirements :: VkDevice -> VkImage -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements -> IO () -- |
-- void vkGetImageSparseMemoryRequirements -- ( VkDevice device -- , VkImage image -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements <- vkGetProc @VkGetImageSparseMemoryRequirements ---- -- Note: vkGetImageSparseMemoryRequirementsUnsafe and -- vkGetImageSparseMemoryRequirementsSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements is an alias -- of vkGetImageSparseMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirementsSafe. vkGetImageSparseMemoryRequirementsUnsafe :: VkDevice -> VkImage -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements -> IO () -- |
-- void vkGetImageSparseMemoryRequirements -- ( VkDevice device -- , VkImage image -- , uint32_t* pSparseMemoryRequirementCount -- , VkSparseImageMemoryRequirements* pSparseMemoryRequirements -- ) ---- -- vkGetImageSparseMemoryRequirements registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSparseMemoryRequirements <- vkGetDeviceProc @VkGetImageSparseMemoryRequirements vkDevice ---- -- or less efficient: -- --
-- myGetImageSparseMemoryRequirements <- vkGetProc @VkGetImageSparseMemoryRequirements ---- -- Note: vkGetImageSparseMemoryRequirementsUnsafe and -- vkGetImageSparseMemoryRequirementsSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetImageSparseMemoryRequirements is an alias -- of vkGetImageSparseMemoryRequirementsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSparseMemoryRequirementsSafe. vkGetImageSparseMemoryRequirementsSafe :: VkDevice -> VkImage -> Ptr Word32 -> Ptr VkSparseImageMemoryRequirements -> IO () type VkGetPhysicalDeviceSparseImageFormatProperties = "vkGetPhysicalDeviceSparseImageFormatProperties" pattern VkGetPhysicalDeviceSparseImageFormatProperties :: CString -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkSampleCountFlagBits samples -- , VkImageUsageFlags usage -- , VkImageTiling tiling -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties registry at -- www.khronos.org type HS_vkGetPhysicalDeviceSparseImageFormatProperties = VkPhysicalDevice " physicalDevice" -> VkFormat " format" -> VkImageType " type" -> VkSampleCountFlagBits " samples" -> VkImageUsageFlags " usage" -> VkImageTiling " tiling" -> Ptr Word32 " pPropertyCount" -> Ptr VkSparseImageFormatProperties " pProperties" -> IO () type PFN_vkGetPhysicalDeviceSparseImageFormatProperties = FunPtr HS_vkGetPhysicalDeviceSparseImageFormatProperties -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkSampleCountFlagBits samples -- , VkImageUsageFlags usage -- , VkImageTiling tiling -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe and -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe. vkGetPhysicalDeviceSparseImageFormatProperties :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkSampleCountFlagBits -> VkImageUsageFlags -> VkImageTiling -> Ptr Word32 -> Ptr VkSparseImageFormatProperties -> IO () -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkSampleCountFlagBits samples -- , VkImageUsageFlags usage -- , VkImageTiling tiling -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe and -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe. vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkSampleCountFlagBits -> VkImageUsageFlags -> VkImageTiling -> Ptr Word32 -> Ptr VkSparseImageFormatProperties -> IO () -- |
-- void vkGetPhysicalDeviceSparseImageFormatProperties -- ( VkPhysicalDevice physicalDevice -- , VkFormat format -- , VkImageType type -- , VkSampleCountFlagBits samples -- , VkImageUsageFlags usage -- , VkImageTiling tiling -- , uint32_t* pPropertyCount -- , VkSparseImageFormatProperties* pProperties -- ) ---- -- vkGetPhysicalDeviceSparseImageFormatProperties registry at -- www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetInstanceProc @VkGetPhysicalDeviceSparseImageFormatProperties vkInstance ---- -- or less efficient: -- --
-- myGetPhysicalDeviceSparseImageFormatProperties <- vkGetProc @VkGetPhysicalDeviceSparseImageFormatProperties ---- -- Note: -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe and -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe are the -- unsafe and safe FFI imports of this function, -- respectively. vkGetPhysicalDeviceSparseImageFormatProperties -- is an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of -- vkGetPhysicalDeviceSparseImageFormatPropertiesSafe. vkGetPhysicalDeviceSparseImageFormatPropertiesSafe :: VkPhysicalDevice -> VkFormat -> VkImageType -> VkSampleCountFlagBits -> VkImageUsageFlags -> VkImageTiling -> Ptr Word32 -> Ptr VkSparseImageFormatProperties -> IO () type VkQueueBindSparse = "vkQueueBindSparse" pattern VkQueueBindSparse :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- -- Queues: sparse_binding. -- --
-- VkResult vkQueueBindSparse -- ( VkQueue queue -- , uint32_t bindInfoCount -- , const VkBindSparseInfo* pBindInfo -- , VkFence fence -- ) ---- -- vkQueueBindSparse registry at www.khronos.org type HS_vkQueueBindSparse = VkQueue " queue" -> Word32 " bindInfoCount" -> Ptr VkBindSparseInfo " pBindInfo" -> VkFence " fence" -> IO VkResult type PFN_vkQueueBindSparse = FunPtr HS_vkQueueBindSparse -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- -- Queues: sparse_binding. -- --
-- VkResult vkQueueBindSparse -- ( VkQueue queue -- , uint32_t bindInfoCount -- , const VkBindSparseInfo* pBindInfo -- , VkFence fence -- ) ---- -- vkQueueBindSparse registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueBindSparse <- vkGetInstanceProc @VkQueueBindSparse vkInstance ---- -- or less efficient: -- --
-- myQueueBindSparse <- vkGetProc @VkQueueBindSparse ---- -- Note: vkQueueBindSparseUnsafe and -- vkQueueBindSparseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueueBindSparse is an alias of -- vkQueueBindSparseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueueBindSparseSafe. vkQueueBindSparse :: VkQueue -> Word32 -> Ptr VkBindSparseInfo -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- -- Queues: sparse_binding. -- --
-- VkResult vkQueueBindSparse -- ( VkQueue queue -- , uint32_t bindInfoCount -- , const VkBindSparseInfo* pBindInfo -- , VkFence fence -- ) ---- -- vkQueueBindSparse registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueBindSparse <- vkGetInstanceProc @VkQueueBindSparse vkInstance ---- -- or less efficient: -- --
-- myQueueBindSparse <- vkGetProc @VkQueueBindSparse ---- -- Note: vkQueueBindSparseUnsafe and -- vkQueueBindSparseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueueBindSparse is an alias of -- vkQueueBindSparseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueueBindSparseSafe. vkQueueBindSparseUnsafe :: VkQueue -> Word32 -> Ptr VkBindSparseInfo -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- -- Queues: sparse_binding. -- --
-- VkResult vkQueueBindSparse -- ( VkQueue queue -- , uint32_t bindInfoCount -- , const VkBindSparseInfo* pBindInfo -- , VkFence fence -- ) ---- -- vkQueueBindSparse registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myQueueBindSparse <- vkGetInstanceProc @VkQueueBindSparse vkInstance ---- -- or less efficient: -- --
-- myQueueBindSparse <- vkGetProc @VkQueueBindSparse ---- -- Note: vkQueueBindSparseUnsafe and -- vkQueueBindSparseSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkQueueBindSparse is an alias of -- vkQueueBindSparseUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkQueueBindSparseSafe. vkQueueBindSparseSafe :: VkQueue -> Word32 -> Ptr VkBindSparseInfo -> VkFence -> IO VkResult newtype VkSparseImageFormatBitmask (a :: FlagType) VkSparseImageFormatBitmask :: VkFlags -> VkSparseImageFormatBitmask pattern VkSparseImageFormatFlagBits :: VkFlags -> VkSparseImageFormatBitmask FlagBit pattern VkSparseImageFormatFlags :: VkFlags -> VkSparseImageFormatBitmask FlagMask -- | Image uses a single mip tail region for all array layers -- -- bitpos = 0 pattern VK_SPARSE_IMAGE_FORMAT_SINGLE_MIPTAIL_BIT :: VkSparseImageFormatBitmask a -- | Image requires mip level dimensions to be an integer multiple of the -- sparse image block dimensions for non-tail mip levels. -- -- bitpos = 1 pattern VK_SPARSE_IMAGE_FORMAT_ALIGNED_MIP_SIZE_BIT :: VkSparseImageFormatBitmask a -- | Image uses a non-standard sparse image block dimensions -- -- bitpos = 2 pattern VK_SPARSE_IMAGE_FORMAT_NONSTANDARD_BLOCK_SIZE_BIT :: VkSparseImageFormatBitmask a newtype VkSparseMemoryBindBitmask (a :: FlagType) VkSparseMemoryBindBitmask :: VkFlags -> VkSparseMemoryBindBitmask pattern VkSparseMemoryBindFlagBits :: VkFlags -> VkSparseMemoryBindBitmask FlagBit pattern VkSparseMemoryBindFlags :: VkFlags -> VkSparseMemoryBindBitmask FlagMask -- | Operation binds resource metadata to memory -- -- bitpos = 0 pattern VK_SPARSE_MEMORY_BIND_METADATA_BIT :: VkSparseMemoryBindBitmask a type VkSparseImageFormatFlagBits = VkSparseImageFormatBitmask FlagBit type VkSparseImageFormatFlags = VkSparseImageFormatBitmask FlagMask type VkSparseMemoryBindFlagBits = VkSparseMemoryBindBitmask FlagBit type VkSparseMemoryBindFlags = VkSparseMemoryBindBitmask FlagMask -- |
-- typedef struct VkBindBufferMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- } VkBindBufferMemoryDeviceGroupInfo;
--
--
-- VkBindBufferMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindBufferMemoryDeviceGroupInfo = VkStruct VkBindBufferMemoryDeviceGroupInfo'
-- | Alias for VkBindBufferMemoryDeviceGroupInfo
type VkBindBufferMemoryDeviceGroupInfoKHR = VkBindBufferMemoryDeviceGroupInfo
-- |
-- typedef struct VkBindBufferMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindBufferMemoryInfo;
--
--
-- VkBindBufferMemoryInfo registry at www.khronos.org
type VkBindBufferMemoryInfo = VkStruct VkBindBufferMemoryInfo'
-- | Alias for VkBindBufferMemoryInfo
type VkBindBufferMemoryInfoKHR = VkBindBufferMemoryInfo
-- |
-- typedef struct VkBindImageMemoryDeviceGroupInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t deviceIndexCount;
-- const uint32_t* pDeviceIndices;
-- uint32_t splitInstanceBindRegionCount;
-- const VkRect2D* pSplitInstanceBindRegions;
-- } VkBindImageMemoryDeviceGroupInfo;
--
--
-- VkBindImageMemoryDeviceGroupInfo registry at www.khronos.org
type VkBindImageMemoryDeviceGroupInfo = VkStruct VkBindImageMemoryDeviceGroupInfo'
-- | Alias for VkBindImageMemoryDeviceGroupInfo
type VkBindImageMemoryDeviceGroupInfoKHR = VkBindImageMemoryDeviceGroupInfo
-- |
-- typedef struct VkBindImageMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImage image;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- } VkBindImageMemoryInfo;
--
--
-- VkBindImageMemoryInfo registry at www.khronos.org
type VkBindImageMemoryInfo = VkStruct VkBindImageMemoryInfo'
-- | Alias for VkBindImageMemoryInfo
type VkBindImageMemoryInfoKHR = VkBindImageMemoryInfo
-- |
-- typedef struct VkBindImageMemorySwapchainInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSwapchainKHR swapchain;
-- uint32_t imageIndex;
-- } VkBindImageMemorySwapchainInfoKHR;
--
--
-- VkBindImageMemorySwapchainInfoKHR registry at www.khronos.org
type VkBindImageMemorySwapchainInfoKHR = VkStruct VkBindImageMemorySwapchainInfoKHR'
-- |
-- typedef struct VkBindImagePlaneMemoryInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkImageAspectFlagBits planeAspect;
-- } VkBindImagePlaneMemoryInfo;
--
--
-- VkBindImagePlaneMemoryInfo registry at www.khronos.org
type VkBindImagePlaneMemoryInfo = VkStruct VkBindImagePlaneMemoryInfo'
-- | Alias for VkBindImagePlaneMemoryInfo
type VkBindImagePlaneMemoryInfoKHR = VkBindImagePlaneMemoryInfo
-- |
-- typedef struct VkBindSparseInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t waitSemaphoreCount;
-- const VkSemaphore* pWaitSemaphores;
-- uint32_t bufferBindCount;
-- const VkSparseBufferMemoryBindInfo* pBufferBinds;
-- uint32_t imageOpaqueBindCount;
-- const VkSparseImageOpaqueMemoryBindInfo* pImageOpaqueBinds;
-- uint32_t imageBindCount;
-- const VkSparseImageMemoryBindInfo* pImageBinds;
-- uint32_t signalSemaphoreCount;
-- const VkSemaphore* pSignalSemaphores;
-- } VkBindSparseInfo;
--
--
-- VkBindSparseInfo registry at www.khronos.org
type VkBindSparseInfo = VkStruct VkBindSparseInfo'
-- |
-- typedef struct VkOffset2D {
-- int32_t x;
-- int32_t y;
-- } VkOffset2D;
--
--
-- VkOffset2D registry at www.khronos.org
type VkOffset2D = VkStruct VkOffset2D'
-- |
-- typedef struct VkOffset3D {
-- int32_t x;
-- int32_t y;
-- int32_t z;
-- } VkOffset3D;
--
--
-- VkOffset3D registry at www.khronos.org
type VkOffset3D = VkStruct VkOffset3D'
-- |
-- typedef struct VkSparseBufferMemoryBindInfo {
-- VkBuffer buffer;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseBufferMemoryBindInfo;
--
--
-- VkSparseBufferMemoryBindInfo registry at www.khronos.org
type VkSparseBufferMemoryBindInfo = VkStruct VkSparseBufferMemoryBindInfo'
-- |
-- typedef struct VkSparseImageFormatProperties {
-- VkImageAspectFlags aspectMask;
-- VkExtent3D imageGranularity;
-- VkSparseImageFormatFlags flags;
-- } VkSparseImageFormatProperties;
--
--
-- VkSparseImageFormatProperties registry at www.khronos.org
type VkSparseImageFormatProperties = VkStruct VkSparseImageFormatProperties'
-- |
-- typedef struct VkSparseImageFormatProperties2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageFormatProperties properties;
-- } VkSparseImageFormatProperties2;
--
--
-- VkSparseImageFormatProperties2 registry at www.khronos.org
type VkSparseImageFormatProperties2 = VkStruct VkSparseImageFormatProperties2'
-- | Alias for VkSparseImageFormatProperties2
type VkSparseImageFormatProperties2KHR = VkSparseImageFormatProperties2
-- |
-- typedef struct VkSparseImageMemoryBind {
-- VkImageSubresource subresource;
-- VkOffset3D offset;
-- VkExtent3D extent;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseImageMemoryBind;
--
--
-- VkSparseImageMemoryBind registry at www.khronos.org
type VkSparseImageMemoryBind = VkStruct VkSparseImageMemoryBind'
-- |
-- typedef struct VkSparseImageMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseImageMemoryBind* pBinds;
-- } VkSparseImageMemoryBindInfo;
--
--
-- VkSparseImageMemoryBindInfo registry at www.khronos.org
type VkSparseImageMemoryBindInfo = VkStruct VkSparseImageMemoryBindInfo'
-- |
-- typedef struct VkSparseImageMemoryRequirements {
-- VkSparseImageFormatProperties formatProperties;
-- uint32_t imageMipTailFirstLod;
-- VkDeviceSize imageMipTailSize;
-- VkDeviceSize imageMipTailOffset;
-- VkDeviceSize imageMipTailStride;
-- } VkSparseImageMemoryRequirements;
--
--
-- VkSparseImageMemoryRequirements registry at www.khronos.org
type VkSparseImageMemoryRequirements = VkStruct VkSparseImageMemoryRequirements'
-- |
-- typedef struct VkSparseImageMemoryRequirements2 {
-- VkStructureType sType;
-- void* pNext;
-- VkSparseImageMemoryRequirements memoryRequirements;
-- } VkSparseImageMemoryRequirements2;
--
--
-- VkSparseImageMemoryRequirements2 registry at www.khronos.org
type VkSparseImageMemoryRequirements2 = VkStruct VkSparseImageMemoryRequirements2'
-- | Alias for VkSparseImageMemoryRequirements2
type VkSparseImageMemoryRequirements2KHR = VkSparseImageMemoryRequirements2
-- |
-- typedef struct VkSparseImageOpaqueMemoryBindInfo {
-- VkImage image;
-- uint32_t bindCount;
-- const VkSparseMemoryBind* pBinds;
-- } VkSparseImageOpaqueMemoryBindInfo;
--
--
-- VkSparseImageOpaqueMemoryBindInfo registry at www.khronos.org
type VkSparseImageOpaqueMemoryBindInfo = VkStruct VkSparseImageOpaqueMemoryBindInfo'
-- |
-- typedef struct VkSparseMemoryBind {
-- VkDeviceSize resourceOffset;
-- VkDeviceSize size;
-- VkDeviceMemory memory;
-- VkDeviceSize memoryOffset;
-- VkSparseMemoryBindFlagsflags;
-- } VkSparseMemoryBind;
--
--
-- VkSparseMemoryBind registry at www.khronos.org
type VkSparseMemoryBind = VkStruct VkSparseMemoryBind'
type VkCreateFence = "vkCreateFence"
pattern VkCreateFence :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateFence -- ( VkDevice device -- , const VkFenceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkCreateFence registry at www.khronos.org type HS_vkCreateFence = VkDevice " device" -> Ptr VkFenceCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkFence " pFence" -> IO VkResult type PFN_vkCreateFence = FunPtr HS_vkCreateFence -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFence -- ( VkDevice device -- , const VkFenceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkCreateFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFence <- vkGetDeviceProc @VkCreateFence vkDevice ---- -- or less efficient: -- --
-- myCreateFence <- vkGetProc @VkCreateFence ---- -- Note: vkCreateFenceUnsafe and -- vkCreateFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateFence is -- an alias of vkCreateFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFenceSafe. vkCreateFence :: VkDevice -> Ptr VkFenceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFence -- ( VkDevice device -- , const VkFenceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkCreateFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFence <- vkGetDeviceProc @VkCreateFence vkDevice ---- -- or less efficient: -- --
-- myCreateFence <- vkGetProc @VkCreateFence ---- -- Note: vkCreateFenceUnsafe and -- vkCreateFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateFence is -- an alias of vkCreateFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFenceSafe. vkCreateFenceUnsafe :: VkDevice -> Ptr VkFenceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFence -- ( VkDevice device -- , const VkFenceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFence* pFence -- ) ---- -- vkCreateFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFence <- vkGetDeviceProc @VkCreateFence vkDevice ---- -- or less efficient: -- --
-- myCreateFence <- vkGetProc @VkCreateFence ---- -- Note: vkCreateFenceUnsafe and -- vkCreateFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateFence is -- an alias of vkCreateFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFenceSafe. vkCreateFenceSafe :: VkDevice -> Ptr VkFenceCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFence -> IO VkResult type VkDestroyFence = "vkDestroyFence" pattern VkDestroyFence :: CString -- |
-- void vkDestroyFence -- ( VkDevice device -- , VkFence fence -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFence registry at www.khronos.org type HS_vkDestroyFence = VkDevice " device" -> VkFence " fence" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyFence = FunPtr HS_vkDestroyFence -- |
-- void vkDestroyFence -- ( VkDevice device -- , VkFence fence -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFence <- vkGetDeviceProc @VkDestroyFence vkDevice ---- -- or less efficient: -- --
-- myDestroyFence <- vkGetProc @VkDestroyFence ---- -- Note: vkDestroyFenceUnsafe and -- vkDestroyFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyFence is -- an alias of vkDestroyFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFenceSafe. vkDestroyFence :: VkDevice -> VkFence -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyFence -- ( VkDevice device -- , VkFence fence -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFence <- vkGetDeviceProc @VkDestroyFence vkDevice ---- -- or less efficient: -- --
-- myDestroyFence <- vkGetProc @VkDestroyFence ---- -- Note: vkDestroyFenceUnsafe and -- vkDestroyFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyFence is -- an alias of vkDestroyFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFenceSafe. vkDestroyFenceUnsafe :: VkDevice -> VkFence -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyFence -- ( VkDevice device -- , VkFence fence -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFence registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFence <- vkGetDeviceProc @VkDestroyFence vkDevice ---- -- or less efficient: -- --
-- myDestroyFence <- vkGetProc @VkDestroyFence ---- -- Note: vkDestroyFenceUnsafe and -- vkDestroyFenceSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyFence is -- an alias of vkDestroyFenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFenceSafe. vkDestroyFenceSafe :: VkDevice -> VkFence -> Ptr VkAllocationCallbacks -> IO () type VkResetFences = "vkResetFences" pattern VkResetFences :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- ) ---- -- vkResetFences registry at www.khronos.org type HS_vkResetFences = VkDevice " device" -> Word32 " fenceCount" -> Ptr VkFence " pFences" -> IO VkResult type PFN_vkResetFences = FunPtr HS_vkResetFences -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- ) ---- -- vkResetFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetFences <- vkGetDeviceProc @VkResetFences vkDevice ---- -- or less efficient: -- --
-- myResetFences <- vkGetProc @VkResetFences ---- -- Note: vkResetFencesUnsafe and -- vkResetFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkResetFences is -- an alias of vkResetFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetFencesSafe. vkResetFences :: VkDevice -> Word32 -> Ptr VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- ) ---- -- vkResetFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetFences <- vkGetDeviceProc @VkResetFences vkDevice ---- -- or less efficient: -- --
-- myResetFences <- vkGetProc @VkResetFences ---- -- Note: vkResetFencesUnsafe and -- vkResetFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkResetFences is -- an alias of vkResetFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetFencesSafe. vkResetFencesUnsafe :: VkDevice -> Word32 -> Ptr VkFence -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- ) ---- -- vkResetFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetFences <- vkGetDeviceProc @VkResetFences vkDevice ---- -- or less efficient: -- --
-- myResetFences <- vkGetProc @VkResetFences ---- -- Note: vkResetFencesUnsafe and -- vkResetFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkResetFences is -- an alias of vkResetFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetFencesSafe. vkResetFencesSafe :: VkDevice -> Word32 -> Ptr VkFence -> IO VkResult type VkGetFenceStatus = "vkGetFenceStatus" pattern VkGetFenceStatus :: CString -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetFenceStatus -- ( VkDevice device -- , VkFence fence -- ) ---- -- vkGetFenceStatus registry at www.khronos.org type HS_vkGetFenceStatus = VkDevice " device" -> VkFence " fence" -> IO VkResult type PFN_vkGetFenceStatus = FunPtr HS_vkGetFenceStatus -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetFenceStatus -- ( VkDevice device -- , VkFence fence -- ) ---- -- vkGetFenceStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetFenceStatus <- vkGetDeviceProc @VkGetFenceStatus vkDevice ---- -- or less efficient: -- --
-- myGetFenceStatus <- vkGetProc @VkGetFenceStatus ---- -- Note: vkGetFenceStatusUnsafe and -- vkGetFenceStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetFenceStatus is an alias of -- vkGetFenceStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetFenceStatusSafe. vkGetFenceStatus :: VkDevice -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetFenceStatus -- ( VkDevice device -- , VkFence fence -- ) ---- -- vkGetFenceStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetFenceStatus <- vkGetDeviceProc @VkGetFenceStatus vkDevice ---- -- or less efficient: -- --
-- myGetFenceStatus <- vkGetProc @VkGetFenceStatus ---- -- Note: vkGetFenceStatusUnsafe and -- vkGetFenceStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetFenceStatus is an alias of -- vkGetFenceStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetFenceStatusSafe. vkGetFenceStatusUnsafe :: VkDevice -> VkFence -> IO VkResult -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetFenceStatus -- ( VkDevice device -- , VkFence fence -- ) ---- -- vkGetFenceStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetFenceStatus <- vkGetDeviceProc @VkGetFenceStatus vkDevice ---- -- or less efficient: -- --
-- myGetFenceStatus <- vkGetProc @VkGetFenceStatus ---- -- Note: vkGetFenceStatusUnsafe and -- vkGetFenceStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetFenceStatus is an alias of -- vkGetFenceStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetFenceStatusSafe. vkGetFenceStatusSafe :: VkDevice -> VkFence -> IO VkResult type VkWaitForFences = "vkWaitForFences" pattern VkWaitForFences :: CString -- | Success codes: VK_SUCCESS, VK_TIMEOUT. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkWaitForFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- , VkBool32 waitAll -- , uint64_t timeout -- ) ---- -- vkWaitForFences registry at www.khronos.org type HS_vkWaitForFences = VkDevice " device" -> Word32 " fenceCount" -> Ptr VkFence " pFences" -> VkBool32 " waitAll" -> Word64 " timeout" -> IO VkResult type PFN_vkWaitForFences = FunPtr HS_vkWaitForFences -- | Success codes: VK_SUCCESS, VK_TIMEOUT. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkWaitForFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- , VkBool32 waitAll -- , uint64_t timeout -- ) ---- -- vkWaitForFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myWaitForFences <- vkGetDeviceProc @VkWaitForFences vkDevice ---- -- or less efficient: -- --
-- myWaitForFences <- vkGetProc @VkWaitForFences ---- -- Note: vkWaitForFencesUnsafe and -- vkWaitForFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkWaitForFences -- is an alias of vkWaitForFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkWaitForFencesSafe. vkWaitForFences :: VkDevice -> Word32 -> Ptr VkFence -> VkBool32 -> Word64 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkWaitForFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- , VkBool32 waitAll -- , uint64_t timeout -- ) ---- -- vkWaitForFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myWaitForFences <- vkGetDeviceProc @VkWaitForFences vkDevice ---- -- or less efficient: -- --
-- myWaitForFences <- vkGetProc @VkWaitForFences ---- -- Note: vkWaitForFencesUnsafe and -- vkWaitForFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkWaitForFences -- is an alias of vkWaitForFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkWaitForFencesSafe. vkWaitForFencesUnsafe :: VkDevice -> Word32 -> Ptr VkFence -> VkBool32 -> Word64 -> IO VkResult -- | Success codes: VK_SUCCESS, VK_TIMEOUT. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkWaitForFences -- ( VkDevice device -- , uint32_t fenceCount -- , const VkFence* pFences -- , VkBool32 waitAll -- , uint64_t timeout -- ) ---- -- vkWaitForFences registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myWaitForFences <- vkGetDeviceProc @VkWaitForFences vkDevice ---- -- or less efficient: -- --
-- myWaitForFences <- vkGetProc @VkWaitForFences ---- -- Note: vkWaitForFencesUnsafe and -- vkWaitForFencesSafe are the unsafe and safe -- FFI imports of this function, respectively. vkWaitForFences -- is an alias of vkWaitForFencesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkWaitForFencesSafe. vkWaitForFencesSafe :: VkDevice -> Word32 -> Ptr VkFence -> VkBool32 -> Word64 -> IO VkResult newtype VkFenceCreateBitmask (a :: FlagType) VkFenceCreateBitmask :: VkFlags -> VkFenceCreateBitmask pattern VkFenceCreateFlagBits :: VkFlags -> VkFenceCreateBitmask FlagBit pattern VkFenceCreateFlags :: VkFlags -> VkFenceCreateBitmask FlagMask -- | bitpos = 0 pattern VK_FENCE_CREATE_SIGNALED_BIT :: VkFenceCreateBitmask a newtype VkFenceImportBitmask (a :: FlagType) VkFenceImportBitmask :: VkFlags -> VkFenceImportBitmask pattern VkFenceImportFlagBits :: VkFlags -> VkFenceImportBitmask FlagBit pattern VkFenceImportFlags :: VkFlags -> VkFenceImportBitmask FlagMask -- | bitpos = 0 pattern VK_FENCE_IMPORT_TEMPORARY_BIT :: VkFenceImportBitmask a type VkFenceCreateFlagBits = VkFenceCreateBitmask FlagBit type VkFenceCreateFlags = VkFenceCreateBitmask FlagMask type VkFenceImportFlagBits = VkFenceImportBitmask FlagBit newtype VkFenceImportFlagBitsKHR VkFenceImportFlagBitsKHR :: VkFlags -> VkFenceImportFlagBitsKHR type VkFenceImportFlags = VkFenceImportBitmask FlagMask -- |
-- typedef struct VkFenceCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFenceCreateFlags flags;
-- } VkFenceCreateInfo;
--
--
-- VkFenceCreateInfo registry at www.khronos.org
type VkFenceCreateInfo = VkStruct VkFenceCreateInfo'
-- |
-- typedef struct VkFenceGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkFence fence;
-- VkExternalFenceHandleTypeFlagBits handleType;
-- } VkFenceGetFdInfoKHR;
--
--
-- VkFenceGetFdInfoKHR registry at www.khronos.org
type VkFenceGetFdInfoKHR = VkStruct VkFenceGetFdInfoKHR'
type VkCreateSemaphore = "vkCreateSemaphore"
pattern VkCreateSemaphore :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateSemaphore -- ( VkDevice device -- , const VkSemaphoreCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSemaphore* pSemaphore -- ) ---- -- vkCreateSemaphore registry at www.khronos.org type HS_vkCreateSemaphore = VkDevice " device" -> Ptr VkSemaphoreCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSemaphore " pSemaphore" -> IO VkResult type PFN_vkCreateSemaphore = FunPtr HS_vkCreateSemaphore -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSemaphore -- ( VkDevice device -- , const VkSemaphoreCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSemaphore* pSemaphore -- ) ---- -- vkCreateSemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSemaphore <- vkGetDeviceProc @VkCreateSemaphore vkDevice ---- -- or less efficient: -- --
-- myCreateSemaphore <- vkGetProc @VkCreateSemaphore ---- -- Note: vkCreateSemaphoreUnsafe and -- vkCreateSemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSemaphore is an alias of -- vkCreateSemaphoreUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateSemaphoreSafe. vkCreateSemaphore :: VkDevice -> Ptr VkSemaphoreCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSemaphore -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSemaphore -- ( VkDevice device -- , const VkSemaphoreCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSemaphore* pSemaphore -- ) ---- -- vkCreateSemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSemaphore <- vkGetDeviceProc @VkCreateSemaphore vkDevice ---- -- or less efficient: -- --
-- myCreateSemaphore <- vkGetProc @VkCreateSemaphore ---- -- Note: vkCreateSemaphoreUnsafe and -- vkCreateSemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSemaphore is an alias of -- vkCreateSemaphoreUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateSemaphoreSafe. vkCreateSemaphoreUnsafe :: VkDevice -> Ptr VkSemaphoreCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSemaphore -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateSemaphore -- ( VkDevice device -- , const VkSemaphoreCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSemaphore* pSemaphore -- ) ---- -- vkCreateSemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSemaphore <- vkGetDeviceProc @VkCreateSemaphore vkDevice ---- -- or less efficient: -- --
-- myCreateSemaphore <- vkGetProc @VkCreateSemaphore ---- -- Note: vkCreateSemaphoreUnsafe and -- vkCreateSemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateSemaphore is an alias of -- vkCreateSemaphoreUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateSemaphoreSafe. vkCreateSemaphoreSafe :: VkDevice -> Ptr VkSemaphoreCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSemaphore -> IO VkResult type VkDestroySemaphore = "vkDestroySemaphore" pattern VkDestroySemaphore :: CString -- |
-- void vkDestroySemaphore -- ( VkDevice device -- , VkSemaphore semaphore -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySemaphore registry at www.khronos.org type HS_vkDestroySemaphore = VkDevice " device" -> VkSemaphore " semaphore" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySemaphore = FunPtr HS_vkDestroySemaphore -- |
-- void vkDestroySemaphore -- ( VkDevice device -- , VkSemaphore semaphore -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySemaphore <- vkGetDeviceProc @VkDestroySemaphore vkDevice ---- -- or less efficient: -- --
-- myDestroySemaphore <- vkGetProc @VkDestroySemaphore ---- -- Note: vkDestroySemaphoreUnsafe and -- vkDestroySemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySemaphore is an alias of -- vkDestroySemaphoreUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySemaphoreSafe. vkDestroySemaphore :: VkDevice -> VkSemaphore -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySemaphore -- ( VkDevice device -- , VkSemaphore semaphore -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySemaphore <- vkGetDeviceProc @VkDestroySemaphore vkDevice ---- -- or less efficient: -- --
-- myDestroySemaphore <- vkGetProc @VkDestroySemaphore ---- -- Note: vkDestroySemaphoreUnsafe and -- vkDestroySemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySemaphore is an alias of -- vkDestroySemaphoreUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySemaphoreSafe. vkDestroySemaphoreUnsafe :: VkDevice -> VkSemaphore -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySemaphore -- ( VkDevice device -- , VkSemaphore semaphore -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySemaphore registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySemaphore <- vkGetDeviceProc @VkDestroySemaphore vkDevice ---- -- or less efficient: -- --
-- myDestroySemaphore <- vkGetProc @VkDestroySemaphore ---- -- Note: vkDestroySemaphoreUnsafe and -- vkDestroySemaphoreSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySemaphore is an alias of -- vkDestroySemaphoreUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroySemaphoreSafe. vkDestroySemaphoreSafe :: VkDevice -> VkSemaphore -> Ptr VkAllocationCallbacks -> IO () -- |
-- typedef struct VkSemaphoreCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphoreCreateFlags flags;
-- } VkSemaphoreCreateInfo;
--
--
-- VkSemaphoreCreateInfo registry at www.khronos.org
type VkSemaphoreCreateInfo = VkStruct VkSemaphoreCreateInfo'
-- |
-- typedef struct VkSemaphoreGetFdInfoKHR {
-- VkStructureType sType;
-- const void* pNext;
-- VkSemaphore semaphore;
-- VkExternalSemaphoreHandleTypeFlagBits handleType;
-- } VkSemaphoreGetFdInfoKHR;
--
--
-- VkSemaphoreGetFdInfoKHR registry at www.khronos.org
type VkSemaphoreGetFdInfoKHR = VkStruct VkSemaphoreGetFdInfoKHR'
type VkCreateEvent = "vkCreateEvent"
pattern VkCreateEvent :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateEvent -- ( VkDevice device -- , const VkEventCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkEvent* pEvent -- ) ---- -- vkCreateEvent registry at www.khronos.org type HS_vkCreateEvent = VkDevice " device" -> Ptr VkEventCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkEvent " pEvent" -> IO VkResult type PFN_vkCreateEvent = FunPtr HS_vkCreateEvent -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateEvent -- ( VkDevice device -- , const VkEventCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkEvent* pEvent -- ) ---- -- vkCreateEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateEvent <- vkGetDeviceProc @VkCreateEvent vkDevice ---- -- or less efficient: -- --
-- myCreateEvent <- vkGetProc @VkCreateEvent ---- -- Note: vkCreateEventUnsafe and -- vkCreateEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateEvent is -- an alias of vkCreateEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateEventSafe. vkCreateEvent :: VkDevice -> Ptr VkEventCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateEvent -- ( VkDevice device -- , const VkEventCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkEvent* pEvent -- ) ---- -- vkCreateEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateEvent <- vkGetDeviceProc @VkCreateEvent vkDevice ---- -- or less efficient: -- --
-- myCreateEvent <- vkGetProc @VkCreateEvent ---- -- Note: vkCreateEventUnsafe and -- vkCreateEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateEvent is -- an alias of vkCreateEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateEventSafe. vkCreateEventUnsafe :: VkDevice -> Ptr VkEventCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateEvent -- ( VkDevice device -- , const VkEventCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkEvent* pEvent -- ) ---- -- vkCreateEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateEvent <- vkGetDeviceProc @VkCreateEvent vkDevice ---- -- or less efficient: -- --
-- myCreateEvent <- vkGetProc @VkCreateEvent ---- -- Note: vkCreateEventUnsafe and -- vkCreateEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateEvent is -- an alias of vkCreateEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateEventSafe. vkCreateEventSafe :: VkDevice -> Ptr VkEventCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkEvent -> IO VkResult type VkDestroyEvent = "vkDestroyEvent" pattern VkDestroyEvent :: CString -- |
-- void vkDestroyEvent -- ( VkDevice device -- , VkEvent event -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyEvent registry at www.khronos.org type HS_vkDestroyEvent = VkDevice " device" -> VkEvent " event" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyEvent = FunPtr HS_vkDestroyEvent -- |
-- void vkDestroyEvent -- ( VkDevice device -- , VkEvent event -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyEvent <- vkGetDeviceProc @VkDestroyEvent vkDevice ---- -- or less efficient: -- --
-- myDestroyEvent <- vkGetProc @VkDestroyEvent ---- -- Note: vkDestroyEventUnsafe and -- vkDestroyEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyEvent is -- an alias of vkDestroyEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyEventSafe. vkDestroyEvent :: VkDevice -> VkEvent -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyEvent -- ( VkDevice device -- , VkEvent event -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyEvent <- vkGetDeviceProc @VkDestroyEvent vkDevice ---- -- or less efficient: -- --
-- myDestroyEvent <- vkGetProc @VkDestroyEvent ---- -- Note: vkDestroyEventUnsafe and -- vkDestroyEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyEvent is -- an alias of vkDestroyEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyEventSafe. vkDestroyEventUnsafe :: VkDevice -> VkEvent -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyEvent -- ( VkDevice device -- , VkEvent event -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyEvent <- vkGetDeviceProc @VkDestroyEvent vkDevice ---- -- or less efficient: -- --
-- myDestroyEvent <- vkGetProc @VkDestroyEvent ---- -- Note: vkDestroyEventUnsafe and -- vkDestroyEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyEvent is -- an alias of vkDestroyEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyEventSafe. vkDestroyEventSafe :: VkDevice -> VkEvent -> Ptr VkAllocationCallbacks -> IO () type VkGetEventStatus = "vkGetEventStatus" pattern VkGetEventStatus :: CString -- | Success codes: VK_EVENT_SET, VK_EVENT_RESET. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetEventStatus -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkGetEventStatus registry at www.khronos.org type HS_vkGetEventStatus = VkDevice " device" -> VkEvent " event" -> IO VkResult type PFN_vkGetEventStatus = FunPtr HS_vkGetEventStatus -- | Success codes: VK_EVENT_SET, VK_EVENT_RESET. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetEventStatus -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkGetEventStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetEventStatus <- vkGetDeviceProc @VkGetEventStatus vkDevice ---- -- or less efficient: -- --
-- myGetEventStatus <- vkGetProc @VkGetEventStatus ---- -- Note: vkGetEventStatusUnsafe and -- vkGetEventStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetEventStatus is an alias of -- vkGetEventStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetEventStatusSafe. vkGetEventStatus :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_EVENT_SET, VK_EVENT_RESET. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetEventStatus -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkGetEventStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetEventStatus <- vkGetDeviceProc @VkGetEventStatus vkDevice ---- -- or less efficient: -- --
-- myGetEventStatus <- vkGetProc @VkGetEventStatus ---- -- Note: vkGetEventStatusUnsafe and -- vkGetEventStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetEventStatus is an alias of -- vkGetEventStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetEventStatusSafe. vkGetEventStatusUnsafe :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_EVENT_SET, VK_EVENT_RESET. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetEventStatus -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkGetEventStatus registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetEventStatus <- vkGetDeviceProc @VkGetEventStatus vkDevice ---- -- or less efficient: -- --
-- myGetEventStatus <- vkGetProc @VkGetEventStatus ---- -- Note: vkGetEventStatusUnsafe and -- vkGetEventStatusSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetEventStatus is an alias of -- vkGetEventStatusUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkGetEventStatusSafe. vkGetEventStatusSafe :: VkDevice -> VkEvent -> IO VkResult type VkSetEvent = "vkSetEvent" pattern VkSetEvent :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkSetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkSetEvent registry at www.khronos.org type HS_vkSetEvent = VkDevice " device" -> VkEvent " event" -> IO VkResult type PFN_vkSetEvent = FunPtr HS_vkSetEvent -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkSetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- mySetEvent <- vkGetDeviceProc @VkSetEvent vkDevice ---- -- or less efficient: -- --
-- mySetEvent <- vkGetProc @VkSetEvent ---- -- Note: vkSetEventUnsafe and vkSetEventSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkSetEvent is an alias of -- vkSetEventUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkSetEventSafe. vkSetEvent :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkSetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- mySetEvent <- vkGetDeviceProc @VkSetEvent vkDevice ---- -- or less efficient: -- --
-- mySetEvent <- vkGetProc @VkSetEvent ---- -- Note: vkSetEventUnsafe and vkSetEventSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkSetEvent is an alias of -- vkSetEventUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkSetEventSafe. vkSetEventUnsafe :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkSetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- mySetEvent <- vkGetDeviceProc @VkSetEvent vkDevice ---- -- or less efficient: -- --
-- mySetEvent <- vkGetProc @VkSetEvent ---- -- Note: vkSetEventUnsafe and vkSetEventSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkSetEvent is an alias of -- vkSetEventUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkSetEventSafe. vkSetEventSafe :: VkDevice -> VkEvent -> IO VkResult type VkResetEvent = "vkResetEvent" pattern VkResetEvent :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkResetEvent registry at www.khronos.org type HS_vkResetEvent = VkDevice " device" -> VkEvent " event" -> IO VkResult type PFN_vkResetEvent = FunPtr HS_vkResetEvent -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetEvent <- vkGetDeviceProc @VkResetEvent vkDevice ---- -- or less efficient: -- --
-- myResetEvent <- vkGetProc @VkResetEvent ---- -- Note: vkResetEventUnsafe and vkResetEventSafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkResetEvent is an alias of -- vkResetEventUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkResetEventSafe. vkResetEvent :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetEvent <- vkGetDeviceProc @VkResetEvent vkDevice ---- -- or less efficient: -- --
-- myResetEvent <- vkGetProc @VkResetEvent ---- -- Note: vkResetEventUnsafe and vkResetEventSafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkResetEvent is an alias of -- vkResetEventUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkResetEventSafe. vkResetEventUnsafe :: VkDevice -> VkEvent -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetEvent -- ( VkDevice device -- , VkEvent event -- ) ---- -- vkResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetEvent <- vkGetDeviceProc @VkResetEvent vkDevice ---- -- or less efficient: -- --
-- myResetEvent <- vkGetProc @VkResetEvent ---- -- Note: vkResetEventUnsafe and vkResetEventSafe -- are the unsafe and safe FFI imports of this -- function, respectively. vkResetEvent is an alias of -- vkResetEventUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkResetEventSafe. vkResetEventSafe :: VkDevice -> VkEvent -> IO VkResult -- |
-- typedef struct VkEventCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkEventCreateFlags flags;
-- } VkEventCreateInfo;
--
--
-- VkEventCreateInfo registry at www.khronos.org
type VkEventCreateInfo = VkStruct VkEventCreateInfo'
type VkCreateQueryPool = "vkCreateQueryPool"
pattern VkCreateQueryPool :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateQueryPool -- ( VkDevice device -- , const VkQueryPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkQueryPool* pQueryPool -- ) ---- -- vkCreateQueryPool registry at www.khronos.org type HS_vkCreateQueryPool = VkDevice " device" -> Ptr VkQueryPoolCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkQueryPool " pQueryPool" -> IO VkResult type PFN_vkCreateQueryPool = FunPtr HS_vkCreateQueryPool -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateQueryPool -- ( VkDevice device -- , const VkQueryPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkQueryPool* pQueryPool -- ) ---- -- vkCreateQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateQueryPool <- vkGetDeviceProc @VkCreateQueryPool vkDevice ---- -- or less efficient: -- --
-- myCreateQueryPool <- vkGetProc @VkCreateQueryPool ---- -- Note: vkCreateQueryPoolUnsafe and -- vkCreateQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateQueryPool is an alias of -- vkCreateQueryPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateQueryPoolSafe. vkCreateQueryPool :: VkDevice -> Ptr VkQueryPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkQueryPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateQueryPool -- ( VkDevice device -- , const VkQueryPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkQueryPool* pQueryPool -- ) ---- -- vkCreateQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateQueryPool <- vkGetDeviceProc @VkCreateQueryPool vkDevice ---- -- or less efficient: -- --
-- myCreateQueryPool <- vkGetProc @VkCreateQueryPool ---- -- Note: vkCreateQueryPoolUnsafe and -- vkCreateQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateQueryPool is an alias of -- vkCreateQueryPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateQueryPoolSafe. vkCreateQueryPoolUnsafe :: VkDevice -> Ptr VkQueryPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkQueryPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateQueryPool -- ( VkDevice device -- , const VkQueryPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkQueryPool* pQueryPool -- ) ---- -- vkCreateQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateQueryPool <- vkGetDeviceProc @VkCreateQueryPool vkDevice ---- -- or less efficient: -- --
-- myCreateQueryPool <- vkGetProc @VkCreateQueryPool ---- -- Note: vkCreateQueryPoolUnsafe and -- vkCreateQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateQueryPool is an alias of -- vkCreateQueryPoolUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateQueryPoolSafe. vkCreateQueryPoolSafe :: VkDevice -> Ptr VkQueryPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkQueryPool -> IO VkResult type VkDestroyQueryPool = "vkDestroyQueryPool" pattern VkDestroyQueryPool :: CString -- |
-- void vkDestroyQueryPool -- ( VkDevice device -- , VkQueryPool queryPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyQueryPool registry at www.khronos.org type HS_vkDestroyQueryPool = VkDevice " device" -> VkQueryPool " queryPool" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyQueryPool = FunPtr HS_vkDestroyQueryPool -- |
-- void vkDestroyQueryPool -- ( VkDevice device -- , VkQueryPool queryPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyQueryPool <- vkGetDeviceProc @VkDestroyQueryPool vkDevice ---- -- or less efficient: -- --
-- myDestroyQueryPool <- vkGetProc @VkDestroyQueryPool ---- -- Note: vkDestroyQueryPoolUnsafe and -- vkDestroyQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyQueryPool is an alias of -- vkDestroyQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyQueryPoolSafe. vkDestroyQueryPool :: VkDevice -> VkQueryPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyQueryPool -- ( VkDevice device -- , VkQueryPool queryPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyQueryPool <- vkGetDeviceProc @VkDestroyQueryPool vkDevice ---- -- or less efficient: -- --
-- myDestroyQueryPool <- vkGetProc @VkDestroyQueryPool ---- -- Note: vkDestroyQueryPoolUnsafe and -- vkDestroyQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyQueryPool is an alias of -- vkDestroyQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyQueryPoolSafe. vkDestroyQueryPoolUnsafe :: VkDevice -> VkQueryPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyQueryPool -- ( VkDevice device -- , VkQueryPool queryPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyQueryPool <- vkGetDeviceProc @VkDestroyQueryPool vkDevice ---- -- or less efficient: -- --
-- myDestroyQueryPool <- vkGetProc @VkDestroyQueryPool ---- -- Note: vkDestroyQueryPoolUnsafe and -- vkDestroyQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyQueryPool is an alias of -- vkDestroyQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyQueryPoolSafe. vkDestroyQueryPoolSafe :: VkDevice -> VkQueryPool -> Ptr VkAllocationCallbacks -> IO () type VkGetQueryPoolResults = "vkGetQueryPoolResults" pattern VkGetQueryPoolResults :: CString -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetQueryPoolResults -- ( VkDevice device -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , size_t dataSize -- , void* pData -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkGetQueryPoolResults registry at www.khronos.org type HS_vkGetQueryPoolResults = VkDevice " device" -> VkQueryPool " queryPool" -> Word32 " firstQuery" -> Word32 " queryCount" -> CSize " dataSize" -> Ptr Void " pData" -> VkDeviceSize " stride" -> VkQueryResultFlags " flags" -> IO VkResult type PFN_vkGetQueryPoolResults = FunPtr HS_vkGetQueryPoolResults -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetQueryPoolResults -- ( VkDevice device -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , size_t dataSize -- , void* pData -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkGetQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetQueryPoolResults <- vkGetDeviceProc @VkGetQueryPoolResults vkDevice ---- -- or less efficient: -- --
-- myGetQueryPoolResults <- vkGetProc @VkGetQueryPoolResults ---- -- Note: vkGetQueryPoolResultsUnsafe and -- vkGetQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetQueryPoolResults is an alias of -- vkGetQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetQueryPoolResultsSafe. vkGetQueryPoolResults :: VkDevice -> VkQueryPool -> Word32 -> Word32 -> CSize -> Ptr Void -> VkDeviceSize -> VkQueryResultFlags -> IO VkResult -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetQueryPoolResults -- ( VkDevice device -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , size_t dataSize -- , void* pData -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkGetQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetQueryPoolResults <- vkGetDeviceProc @VkGetQueryPoolResults vkDevice ---- -- or less efficient: -- --
-- myGetQueryPoolResults <- vkGetProc @VkGetQueryPoolResults ---- -- Note: vkGetQueryPoolResultsUnsafe and -- vkGetQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetQueryPoolResults is an alias of -- vkGetQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetQueryPoolResultsSafe. vkGetQueryPoolResultsUnsafe :: VkDevice -> VkQueryPool -> Word32 -> Word32 -> CSize -> Ptr Void -> VkDeviceSize -> VkQueryResultFlags -> IO VkResult -- | Success codes: VK_SUCCESS, VK_NOT_READY. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_DEVICE_LOST. -- --
-- VkResult vkGetQueryPoolResults -- ( VkDevice device -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , size_t dataSize -- , void* pData -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkGetQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetQueryPoolResults <- vkGetDeviceProc @VkGetQueryPoolResults vkDevice ---- -- or less efficient: -- --
-- myGetQueryPoolResults <- vkGetProc @VkGetQueryPoolResults ---- -- Note: vkGetQueryPoolResultsUnsafe and -- vkGetQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetQueryPoolResults is an alias of -- vkGetQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetQueryPoolResultsSafe. vkGetQueryPoolResultsSafe :: VkDevice -> VkQueryPool -> Word32 -> Word32 -> CSize -> Ptr Void -> VkDeviceSize -> VkQueryResultFlags -> IO VkResult newtype VkQueryControlBitmask (a :: FlagType) VkQueryControlBitmask :: VkFlags -> VkQueryControlBitmask pattern VkQueryControlFlagBits :: VkFlags -> VkQueryControlBitmask FlagBit pattern VkQueryControlFlags :: VkFlags -> VkQueryControlBitmask FlagMask -- | Require precise results to be collected by the query -- -- bitpos = 0 pattern VK_QUERY_CONTROL_PRECISE_BIT :: VkQueryControlBitmask a newtype VkQueryPipelineStatisticBitmask (a :: FlagType) VkQueryPipelineStatisticBitmask :: VkFlags -> VkQueryPipelineStatisticBitmask pattern VkQueryPipelineStatisticFlagBits :: VkFlags -> VkQueryPipelineStatisticBitmask FlagBit pattern VkQueryPipelineStatisticFlags :: VkFlags -> VkQueryPipelineStatisticBitmask FlagMask -- | Optional -- -- bitpos = 0 pattern VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 1 pattern VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 2 pattern VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 3 pattern VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 4 pattern VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 5 pattern VK_QUERY_PIPELINE_STATISTIC_CLIPPING_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 6 pattern VK_QUERY_PIPELINE_STATISTIC_CLIPPING_PRIMITIVES_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 7 pattern VK_QUERY_PIPELINE_STATISTIC_FRAGMENT_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 8 pattern VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_CONTROL_SHADER_PATCHES_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 9 pattern VK_QUERY_PIPELINE_STATISTIC_TESSELLATION_EVALUATION_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a -- | Optional -- -- bitpos = 10 pattern VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT :: VkQueryPipelineStatisticBitmask a newtype VkQueryResultBitmask (a :: FlagType) VkQueryResultBitmask :: VkFlags -> VkQueryResultBitmask pattern VkQueryResultFlagBits :: VkFlags -> VkQueryResultBitmask FlagBit pattern VkQueryResultFlags :: VkFlags -> VkQueryResultBitmask FlagMask -- | Results of the queries are written to the destination buffer as 64-bit -- values -- -- bitpos = 0 pattern VK_QUERY_RESULT_64_BIT :: VkQueryResultBitmask a -- | Results of the queries are waited on before proceeding with the result -- copy -- -- bitpos = 1 pattern VK_QUERY_RESULT_WAIT_BIT :: VkQueryResultBitmask a -- | Besides the results of the query, the availability of the results is -- also written -- -- bitpos = 2 pattern VK_QUERY_RESULT_WITH_AVAILABILITY_BIT :: VkQueryResultBitmask a -- | Copy the partial results of the query even if the final results are -- not available -- -- bitpos = 3 pattern VK_QUERY_RESULT_PARTIAL_BIT :: VkQueryResultBitmask a -- | type = enum -- -- VkQueryType registry at www.khronos.org newtype VkQueryType VkQueryType :: Int32 -> VkQueryType pattern VK_QUERY_TYPE_OCCLUSION :: VkQueryType -- | Optional pattern VK_QUERY_TYPE_PIPELINE_STATISTICS :: VkQueryType pattern VK_QUERY_TYPE_TIMESTAMP :: VkQueryType type VkQueryControlFlagBits = VkQueryControlBitmask FlagBit type VkQueryControlFlags = VkQueryControlBitmask FlagMask type VkQueryPipelineStatisticFlagBits = VkQueryPipelineStatisticBitmask FlagBit type VkQueryPipelineStatisticFlags = VkQueryPipelineStatisticBitmask FlagMask newtype VkQueryPoolCreateFlagBits VkQueryPoolCreateFlagBits :: VkFlags -> VkQueryPoolCreateFlagBits type VkQueryResultFlagBits = VkQueryResultBitmask FlagBit type VkQueryResultFlags = VkQueryResultBitmask FlagMask -- |
-- typedef struct VkQueryPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkQueryPoolCreateFlags flags;
-- VkQueryType queryType;
-- uint32_t queryCount;
-- VkQueryPipelineStatisticFlags pipelineStatistics;
-- } VkQueryPoolCreateInfo;
--
--
-- VkQueryPoolCreateInfo registry at www.khronos.org
type VkQueryPoolCreateInfo = VkStruct VkQueryPoolCreateInfo'
type VkCreateBuffer = "vkCreateBuffer"
pattern VkCreateBuffer :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateBuffer -- ( VkDevice device -- , const VkBufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBuffer* pBuffer -- ) ---- -- vkCreateBuffer registry at www.khronos.org type HS_vkCreateBuffer = VkDevice " device" -> Ptr VkBufferCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkBuffer " pBuffer" -> IO VkResult type PFN_vkCreateBuffer = FunPtr HS_vkCreateBuffer -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBuffer -- ( VkDevice device -- , const VkBufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBuffer* pBuffer -- ) ---- -- vkCreateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBuffer <- vkGetDeviceProc @VkCreateBuffer vkDevice ---- -- or less efficient: -- --
-- myCreateBuffer <- vkGetProc @VkCreateBuffer ---- -- Note: vkCreateBufferUnsafe and -- vkCreateBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateBuffer is -- an alias of vkCreateBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferSafe. vkCreateBuffer :: VkDevice -> Ptr VkBufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBuffer -- ( VkDevice device -- , const VkBufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBuffer* pBuffer -- ) ---- -- vkCreateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBuffer <- vkGetDeviceProc @VkCreateBuffer vkDevice ---- -- or less efficient: -- --
-- myCreateBuffer <- vkGetProc @VkCreateBuffer ---- -- Note: vkCreateBufferUnsafe and -- vkCreateBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateBuffer is -- an alias of vkCreateBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferSafe. vkCreateBufferUnsafe :: VkDevice -> Ptr VkBufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBuffer -- ( VkDevice device -- , const VkBufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBuffer* pBuffer -- ) ---- -- vkCreateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBuffer <- vkGetDeviceProc @VkCreateBuffer vkDevice ---- -- or less efficient: -- --
-- myCreateBuffer <- vkGetProc @VkCreateBuffer ---- -- Note: vkCreateBufferUnsafe and -- vkCreateBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateBuffer is -- an alias of vkCreateBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferSafe. vkCreateBufferSafe :: VkDevice -> Ptr VkBufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBuffer -> IO VkResult type VkDestroyBuffer = "vkDestroyBuffer" pattern VkDestroyBuffer :: CString -- |
-- void vkDestroyBuffer -- ( VkDevice device -- , VkBuffer buffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBuffer registry at www.khronos.org type HS_vkDestroyBuffer = VkDevice " device" -> VkBuffer " buffer" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyBuffer = FunPtr HS_vkDestroyBuffer -- |
-- void vkDestroyBuffer -- ( VkDevice device -- , VkBuffer buffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBuffer <- vkGetDeviceProc @VkDestroyBuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyBuffer <- vkGetProc @VkDestroyBuffer ---- -- Note: vkDestroyBufferUnsafe and -- vkDestroyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyBuffer -- is an alias of vkDestroyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferSafe. vkDestroyBuffer :: VkDevice -> VkBuffer -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyBuffer -- ( VkDevice device -- , VkBuffer buffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBuffer <- vkGetDeviceProc @VkDestroyBuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyBuffer <- vkGetProc @VkDestroyBuffer ---- -- Note: vkDestroyBufferUnsafe and -- vkDestroyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyBuffer -- is an alias of vkDestroyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferSafe. vkDestroyBufferUnsafe :: VkDevice -> VkBuffer -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyBuffer -- ( VkDevice device -- , VkBuffer buffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBuffer <- vkGetDeviceProc @VkDestroyBuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyBuffer <- vkGetProc @VkDestroyBuffer ---- -- Note: vkDestroyBufferUnsafe and -- vkDestroyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyBuffer -- is an alias of vkDestroyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferSafe. vkDestroyBufferSafe :: VkDevice -> VkBuffer -> Ptr VkAllocationCallbacks -> IO () newtype VkBufferCreateBitmask (a :: FlagType) VkBufferCreateBitmask :: VkFlags -> VkBufferCreateBitmask pattern VkBufferCreateFlagBits :: VkFlags -> VkBufferCreateBitmask FlagBit pattern VkBufferCreateFlags :: VkFlags -> VkBufferCreateBitmask FlagMask -- | Buffer should support sparse backing -- -- bitpos = 0 pattern VK_BUFFER_CREATE_SPARSE_BINDING_BIT :: VkBufferCreateBitmask a -- | Buffer should support sparse backing with partial residency -- -- bitpos = 1 pattern VK_BUFFER_CREATE_SPARSE_RESIDENCY_BIT :: VkBufferCreateBitmask a -- | Buffer should support constent data access to physical memory ranges -- mapped into multiple locations of sparse buffers -- -- bitpos = 2 pattern VK_BUFFER_CREATE_SPARSE_ALIASED_BIT :: VkBufferCreateBitmask a newtype VkBufferUsageBitmask (a :: FlagType) VkBufferUsageBitmask :: VkFlags -> VkBufferUsageBitmask pattern VkBufferUsageFlagBits :: VkFlags -> VkBufferUsageBitmask FlagBit pattern VkBufferUsageFlags :: VkFlags -> VkBufferUsageBitmask FlagMask -- | Can be used as a source of transfer operations -- -- bitpos = 0 pattern VK_BUFFER_USAGE_TRANSFER_SRC_BIT :: VkBufferUsageBitmask a -- | Can be used as a destination of transfer operations -- -- bitpos = 1 pattern VK_BUFFER_USAGE_TRANSFER_DST_BIT :: VkBufferUsageBitmask a -- | Can be used as TBO -- -- bitpos = 2 pattern VK_BUFFER_USAGE_UNIFORM_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as IBO -- -- bitpos = 3 pattern VK_BUFFER_USAGE_STORAGE_TEXEL_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as UBO -- -- bitpos = 4 pattern VK_BUFFER_USAGE_UNIFORM_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as SSBO -- -- bitpos = 5 pattern VK_BUFFER_USAGE_STORAGE_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as source of fixed-function index fetch (index buffer) -- -- bitpos = 6 pattern VK_BUFFER_USAGE_INDEX_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be used as source of fixed-function vertex fetch (VBO) -- -- bitpos = 7 pattern VK_BUFFER_USAGE_VERTEX_BUFFER_BIT :: VkBufferUsageBitmask a -- | Can be the source of indirect parameters (e.g. indirect buffer, -- parameter buffer) -- -- bitpos = 8 pattern VK_BUFFER_USAGE_INDIRECT_BUFFER_BIT :: VkBufferUsageBitmask a type VkBufferCreateFlagBits = VkBufferCreateBitmask FlagBit type VkBufferCreateFlags = VkBufferCreateBitmask FlagMask type VkBufferUsageFlagBits = VkBufferUsageBitmask FlagBit type VkBufferUsageFlags = VkBufferUsageBitmask FlagMask newtype VkBufferViewCreateFlagBits VkBufferViewCreateFlagBits :: VkFlags -> VkBufferViewCreateFlagBits -- | type = enum -- -- VkSharingMode registry at www.khronos.org newtype VkSharingMode VkSharingMode :: Int32 -> VkSharingMode pattern VK_SHARING_MODE_EXCLUSIVE :: VkSharingMode pattern VK_SHARING_MODE_CONCURRENT :: VkSharingMode -- |
-- typedef struct VkBufferCopy {
-- VkDeviceSize srcOffset;
-- VkDeviceSize dstOffset;
-- VkDeviceSize size;
-- } VkBufferCopy;
--
--
-- VkBufferCopy registry at www.khronos.org
type VkBufferCopy = VkStruct VkBufferCopy'
-- |
-- typedef struct VkBufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferCreateFlags flags;
-- VkDeviceSize size;
-- VkBufferUsageFlags usage;
-- VkSharingMode sharingMode;
-- uint32_t queueFamilyIndexCount;
-- const uint32_t* pQueueFamilyIndices;
-- } VkBufferCreateInfo;
--
--
-- VkBufferCreateInfo registry at www.khronos.org
type VkBufferCreateInfo = VkStruct VkBufferCreateInfo'
-- |
-- typedef struct VkBufferImageCopy {
-- VkDeviceSize bufferOffset;
-- uint32_t bufferRowLength;
-- uint32_t bufferImageHeight;
-- VkImageSubresourceLayers imageSubresource;
-- VkOffset3D imageOffset;
-- VkExtent3D imageExtent;
-- } VkBufferImageCopy;
--
--
-- VkBufferImageCopy registry at www.khronos.org
type VkBufferImageCopy = VkStruct VkBufferImageCopy'
-- |
-- typedef struct VkBufferMemoryBarrier {
-- VkStructureType sType;
-- const void* pNext;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- uint32_t srcQueueFamilyIndex;
-- uint32_t dstQueueFamilyIndex;
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize size;
-- } VkBufferMemoryBarrier;
--
--
-- VkBufferMemoryBarrier registry at www.khronos.org
type VkBufferMemoryBarrier = VkStruct VkBufferMemoryBarrier'
-- |
-- typedef struct VkBufferMemoryRequirementsInfo2 {
-- VkStructureType sType;
-- const void* pNext;
-- VkBuffer buffer;
-- } VkBufferMemoryRequirementsInfo2;
--
--
-- VkBufferMemoryRequirementsInfo2 registry at www.khronos.org
type VkBufferMemoryRequirementsInfo2 = VkStruct VkBufferMemoryRequirementsInfo2'
-- | Alias for VkBufferMemoryRequirementsInfo2
type VkBufferMemoryRequirementsInfo2KHR = VkBufferMemoryRequirementsInfo2
-- |
-- typedef struct VkBufferViewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkBufferViewCreateFlagsflags;
-- VkBuffer buffer;
-- VkFormat format;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkBufferViewCreateInfo;
--
--
-- VkBufferViewCreateInfo registry at www.khronos.org
type VkBufferViewCreateInfo = VkStruct VkBufferViewCreateInfo'
type VkCreateBufferView = "vkCreateBufferView"
pattern VkCreateBufferView :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateBufferView -- ( VkDevice device -- , const VkBufferViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBufferView* pView -- ) ---- -- vkCreateBufferView registry at www.khronos.org type HS_vkCreateBufferView = VkDevice " device" -> Ptr VkBufferViewCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkBufferView " pView" -> IO VkResult type PFN_vkCreateBufferView = FunPtr HS_vkCreateBufferView -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBufferView -- ( VkDevice device -- , const VkBufferViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBufferView* pView -- ) ---- -- vkCreateBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBufferView <- vkGetDeviceProc @VkCreateBufferView vkDevice ---- -- or less efficient: -- --
-- myCreateBufferView <- vkGetProc @VkCreateBufferView ---- -- Note: vkCreateBufferViewUnsafe and -- vkCreateBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateBufferView is an alias of -- vkCreateBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferViewSafe. vkCreateBufferView :: VkDevice -> Ptr VkBufferViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBufferView -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBufferView -- ( VkDevice device -- , const VkBufferViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBufferView* pView -- ) ---- -- vkCreateBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBufferView <- vkGetDeviceProc @VkCreateBufferView vkDevice ---- -- or less efficient: -- --
-- myCreateBufferView <- vkGetProc @VkCreateBufferView ---- -- Note: vkCreateBufferViewUnsafe and -- vkCreateBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateBufferView is an alias of -- vkCreateBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferViewSafe. vkCreateBufferViewUnsafe :: VkDevice -> Ptr VkBufferViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBufferView -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateBufferView -- ( VkDevice device -- , const VkBufferViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkBufferView* pView -- ) ---- -- vkCreateBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateBufferView <- vkGetDeviceProc @VkCreateBufferView vkDevice ---- -- or less efficient: -- --
-- myCreateBufferView <- vkGetProc @VkCreateBufferView ---- -- Note: vkCreateBufferViewUnsafe and -- vkCreateBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateBufferView is an alias of -- vkCreateBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateBufferViewSafe. vkCreateBufferViewSafe :: VkDevice -> Ptr VkBufferViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkBufferView -> IO VkResult type VkDestroyBufferView = "vkDestroyBufferView" pattern VkDestroyBufferView :: CString -- |
-- void vkDestroyBufferView -- ( VkDevice device -- , VkBufferView bufferView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBufferView registry at www.khronos.org type HS_vkDestroyBufferView = VkDevice " device" -> VkBufferView " bufferView" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyBufferView = FunPtr HS_vkDestroyBufferView -- |
-- void vkDestroyBufferView -- ( VkDevice device -- , VkBufferView bufferView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBufferView <- vkGetDeviceProc @VkDestroyBufferView vkDevice ---- -- or less efficient: -- --
-- myDestroyBufferView <- vkGetProc @VkDestroyBufferView ---- -- Note: vkDestroyBufferViewUnsafe and -- vkDestroyBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyBufferView is an alias of -- vkDestroyBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferViewSafe. vkDestroyBufferView :: VkDevice -> VkBufferView -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyBufferView -- ( VkDevice device -- , VkBufferView bufferView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBufferView <- vkGetDeviceProc @VkDestroyBufferView vkDevice ---- -- or less efficient: -- --
-- myDestroyBufferView <- vkGetProc @VkDestroyBufferView ---- -- Note: vkDestroyBufferViewUnsafe and -- vkDestroyBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyBufferView is an alias of -- vkDestroyBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferViewSafe. vkDestroyBufferViewUnsafe :: VkDevice -> VkBufferView -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyBufferView -- ( VkDevice device -- , VkBufferView bufferView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyBufferView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyBufferView <- vkGetDeviceProc @VkDestroyBufferView vkDevice ---- -- or less efficient: -- --
-- myDestroyBufferView <- vkGetProc @VkDestroyBufferView ---- -- Note: vkDestroyBufferViewUnsafe and -- vkDestroyBufferViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyBufferView is an alias of -- vkDestroyBufferViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyBufferViewSafe. vkDestroyBufferViewSafe :: VkDevice -> VkBufferView -> Ptr VkAllocationCallbacks -> IO () type VkCreateImage = "vkCreateImage" pattern VkCreateImage :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImage -- ( VkDevice device -- , const VkImageCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImage* pImage -- ) ---- -- vkCreateImage registry at www.khronos.org type HS_vkCreateImage = VkDevice " device" -> Ptr VkImageCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkImage " pImage" -> IO VkResult type PFN_vkCreateImage = FunPtr HS_vkCreateImage -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImage -- ( VkDevice device -- , const VkImageCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImage* pImage -- ) ---- -- vkCreateImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImage <- vkGetDeviceProc @VkCreateImage vkDevice ---- -- or less efficient: -- --
-- myCreateImage <- vkGetProc @VkCreateImage ---- -- Note: vkCreateImageUnsafe and -- vkCreateImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateImage is -- an alias of vkCreateImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateImageSafe. vkCreateImage :: VkDevice -> Ptr VkImageCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImage -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImage -- ( VkDevice device -- , const VkImageCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImage* pImage -- ) ---- -- vkCreateImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImage <- vkGetDeviceProc @VkCreateImage vkDevice ---- -- or less efficient: -- --
-- myCreateImage <- vkGetProc @VkCreateImage ---- -- Note: vkCreateImageUnsafe and -- vkCreateImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateImage is -- an alias of vkCreateImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateImageSafe. vkCreateImageUnsafe :: VkDevice -> Ptr VkImageCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImage -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImage -- ( VkDevice device -- , const VkImageCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImage* pImage -- ) ---- -- vkCreateImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImage <- vkGetDeviceProc @VkCreateImage vkDevice ---- -- or less efficient: -- --
-- myCreateImage <- vkGetProc @VkCreateImage ---- -- Note: vkCreateImageUnsafe and -- vkCreateImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateImage is -- an alias of vkCreateImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateImageSafe. vkCreateImageSafe :: VkDevice -> Ptr VkImageCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImage -> IO VkResult type VkDestroyImage = "vkDestroyImage" pattern VkDestroyImage :: CString -- |
-- void vkDestroyImage -- ( VkDevice device -- , VkImage image -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImage registry at www.khronos.org type HS_vkDestroyImage = VkDevice " device" -> VkImage " image" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyImage = FunPtr HS_vkDestroyImage -- |
-- void vkDestroyImage -- ( VkDevice device -- , VkImage image -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImage <- vkGetDeviceProc @VkDestroyImage vkDevice ---- -- or less efficient: -- --
-- myDestroyImage <- vkGetProc @VkDestroyImage ---- -- Note: vkDestroyImageUnsafe and -- vkDestroyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyImage is -- an alias of vkDestroyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageSafe. vkDestroyImage :: VkDevice -> VkImage -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyImage -- ( VkDevice device -- , VkImage image -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImage <- vkGetDeviceProc @VkDestroyImage vkDevice ---- -- or less efficient: -- --
-- myDestroyImage <- vkGetProc @VkDestroyImage ---- -- Note: vkDestroyImageUnsafe and -- vkDestroyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyImage is -- an alias of vkDestroyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageSafe. vkDestroyImageUnsafe :: VkDevice -> VkImage -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyImage -- ( VkDevice device -- , VkImage image -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImage <- vkGetDeviceProc @VkDestroyImage vkDevice ---- -- or less efficient: -- --
-- myDestroyImage <- vkGetProc @VkDestroyImage ---- -- Note: vkDestroyImageUnsafe and -- vkDestroyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkDestroyImage is -- an alias of vkDestroyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageSafe. vkDestroyImageSafe :: VkDevice -> VkImage -> Ptr VkAllocationCallbacks -> IO () type VkGetImageSubresourceLayout = "vkGetImageSubresourceLayout" pattern VkGetImageSubresourceLayout :: CString -- |
-- void vkGetImageSubresourceLayout -- ( VkDevice device -- , VkImage image -- , const VkImageSubresource* pSubresource -- , VkSubresourceLayout* pLayout -- ) ---- -- vkGetImageSubresourceLayout registry at www.khronos.org type HS_vkGetImageSubresourceLayout = VkDevice " device" -> VkImage " image" -> Ptr VkImageSubresource " pSubresource" -> Ptr VkSubresourceLayout " pLayout" -> IO () type PFN_vkGetImageSubresourceLayout = FunPtr HS_vkGetImageSubresourceLayout -- |
-- void vkGetImageSubresourceLayout -- ( VkDevice device -- , VkImage image -- , const VkImageSubresource* pSubresource -- , VkSubresourceLayout* pLayout -- ) ---- -- vkGetImageSubresourceLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSubresourceLayout <- vkGetDeviceProc @VkGetImageSubresourceLayout vkDevice ---- -- or less efficient: -- --
-- myGetImageSubresourceLayout <- vkGetProc @VkGetImageSubresourceLayout ---- -- Note: vkGetImageSubresourceLayoutUnsafe and -- vkGetImageSubresourceLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageSubresourceLayout is an alias of -- vkGetImageSubresourceLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSubresourceLayoutSafe. vkGetImageSubresourceLayout :: VkDevice -> VkImage -> Ptr VkImageSubresource -> Ptr VkSubresourceLayout -> IO () -- |
-- void vkGetImageSubresourceLayout -- ( VkDevice device -- , VkImage image -- , const VkImageSubresource* pSubresource -- , VkSubresourceLayout* pLayout -- ) ---- -- vkGetImageSubresourceLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSubresourceLayout <- vkGetDeviceProc @VkGetImageSubresourceLayout vkDevice ---- -- or less efficient: -- --
-- myGetImageSubresourceLayout <- vkGetProc @VkGetImageSubresourceLayout ---- -- Note: vkGetImageSubresourceLayoutUnsafe and -- vkGetImageSubresourceLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageSubresourceLayout is an alias of -- vkGetImageSubresourceLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSubresourceLayoutSafe. vkGetImageSubresourceLayoutUnsafe :: VkDevice -> VkImage -> Ptr VkImageSubresource -> Ptr VkSubresourceLayout -> IO () -- |
-- void vkGetImageSubresourceLayout -- ( VkDevice device -- , VkImage image -- , const VkImageSubresource* pSubresource -- , VkSubresourceLayout* pLayout -- ) ---- -- vkGetImageSubresourceLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetImageSubresourceLayout <- vkGetDeviceProc @VkGetImageSubresourceLayout vkDevice ---- -- or less efficient: -- --
-- myGetImageSubresourceLayout <- vkGetProc @VkGetImageSubresourceLayout ---- -- Note: vkGetImageSubresourceLayoutUnsafe and -- vkGetImageSubresourceLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetImageSubresourceLayout is an alias of -- vkGetImageSubresourceLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetImageSubresourceLayoutSafe. vkGetImageSubresourceLayoutSafe :: VkDevice -> VkImage -> Ptr VkImageSubresource -> Ptr VkSubresourceLayout -> IO () -- |
-- typedef struct VkSubresourceLayout {
-- VkDeviceSize offset;
-- VkDeviceSize size;
-- VkDeviceSize rowPitch;
-- VkDeviceSize arrayPitch;
-- VkDeviceSize depthPitch;
-- } VkSubresourceLayout;
--
--
-- VkSubresourceLayout registry at www.khronos.org
type VkSubresourceLayout = VkStruct VkSubresourceLayout'
type VkCreateImageView = "vkCreateImageView"
pattern VkCreateImageView :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateImageView -- ( VkDevice device -- , const VkImageViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImageView* pView -- ) ---- -- vkCreateImageView registry at www.khronos.org type HS_vkCreateImageView = VkDevice " device" -> Ptr VkImageViewCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkImageView " pView" -> IO VkResult type PFN_vkCreateImageView = FunPtr HS_vkCreateImageView -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImageView -- ( VkDevice device -- , const VkImageViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImageView* pView -- ) ---- -- vkCreateImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImageView <- vkGetDeviceProc @VkCreateImageView vkDevice ---- -- or less efficient: -- --
-- myCreateImageView <- vkGetProc @VkCreateImageView ---- -- Note: vkCreateImageViewUnsafe and -- vkCreateImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateImageView is an alias of -- vkCreateImageViewUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateImageViewSafe. vkCreateImageView :: VkDevice -> Ptr VkImageViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImageView -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImageView -- ( VkDevice device -- , const VkImageViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImageView* pView -- ) ---- -- vkCreateImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImageView <- vkGetDeviceProc @VkCreateImageView vkDevice ---- -- or less efficient: -- --
-- myCreateImageView <- vkGetProc @VkCreateImageView ---- -- Note: vkCreateImageViewUnsafe and -- vkCreateImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateImageView is an alias of -- vkCreateImageViewUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateImageViewSafe. vkCreateImageViewUnsafe :: VkDevice -> Ptr VkImageViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImageView -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateImageView -- ( VkDevice device -- , const VkImageViewCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkImageView* pView -- ) ---- -- vkCreateImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateImageView <- vkGetDeviceProc @VkCreateImageView vkDevice ---- -- or less efficient: -- --
-- myCreateImageView <- vkGetProc @VkCreateImageView ---- -- Note: vkCreateImageViewUnsafe and -- vkCreateImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateImageView is an alias of -- vkCreateImageViewUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateImageViewSafe. vkCreateImageViewSafe :: VkDevice -> Ptr VkImageViewCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkImageView -> IO VkResult type VkDestroyImageView = "vkDestroyImageView" pattern VkDestroyImageView :: CString -- |
-- void vkDestroyImageView -- ( VkDevice device -- , VkImageView imageView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImageView registry at www.khronos.org type HS_vkDestroyImageView = VkDevice " device" -> VkImageView " imageView" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyImageView = FunPtr HS_vkDestroyImageView -- |
-- void vkDestroyImageView -- ( VkDevice device -- , VkImageView imageView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImageView <- vkGetDeviceProc @VkDestroyImageView vkDevice ---- -- or less efficient: -- --
-- myDestroyImageView <- vkGetProc @VkDestroyImageView ---- -- Note: vkDestroyImageViewUnsafe and -- vkDestroyImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyImageView is an alias of -- vkDestroyImageViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageViewSafe. vkDestroyImageView :: VkDevice -> VkImageView -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyImageView -- ( VkDevice device -- , VkImageView imageView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImageView <- vkGetDeviceProc @VkDestroyImageView vkDevice ---- -- or less efficient: -- --
-- myDestroyImageView <- vkGetProc @VkDestroyImageView ---- -- Note: vkDestroyImageViewUnsafe and -- vkDestroyImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyImageView is an alias of -- vkDestroyImageViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageViewSafe. vkDestroyImageViewUnsafe :: VkDevice -> VkImageView -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyImageView -- ( VkDevice device -- , VkImageView imageView -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyImageView registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyImageView <- vkGetDeviceProc @VkDestroyImageView vkDevice ---- -- or less efficient: -- --
-- myDestroyImageView <- vkGetProc @VkDestroyImageView ---- -- Note: vkDestroyImageViewUnsafe and -- vkDestroyImageViewSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyImageView is an alias of -- vkDestroyImageViewUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyImageViewSafe. vkDestroyImageViewSafe :: VkDevice -> VkImageView -> Ptr VkAllocationCallbacks -> IO () -- | type = enum -- -- VkComponentSwizzle registry at www.khronos.org newtype VkComponentSwizzle VkComponentSwizzle :: Int32 -> VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_IDENTITY :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_ZERO :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_ONE :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_R :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_G :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_B :: VkComponentSwizzle pattern VK_COMPONENT_SWIZZLE_A :: VkComponentSwizzle -- |
-- typedef struct VkComponentMapping {
-- VkComponentSwizzle r;
-- VkComponentSwizzle g;
-- VkComponentSwizzle b;
-- VkComponentSwizzle a;
-- } VkComponentMapping;
--
--
-- VkComponentMapping registry at www.khronos.org
type VkComponentMapping = VkStruct VkComponentMapping'
type VkCreateShaderModule = "vkCreateShaderModule"
pattern VkCreateShaderModule :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INVALID_SHADER_NV.
--
-- -- VkResult vkCreateShaderModule -- ( VkDevice device -- , const VkShaderModuleCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkShaderModule* pShaderModule -- ) ---- -- vkCreateShaderModule registry at www.khronos.org type HS_vkCreateShaderModule = VkDevice " device" -> Ptr VkShaderModuleCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkShaderModule " pShaderModule" -> IO VkResult type PFN_vkCreateShaderModule = FunPtr HS_vkCreateShaderModule -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateShaderModule -- ( VkDevice device -- , const VkShaderModuleCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkShaderModule* pShaderModule -- ) ---- -- vkCreateShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateShaderModule <- vkGetDeviceProc @VkCreateShaderModule vkDevice ---- -- or less efficient: -- --
-- myCreateShaderModule <- vkGetProc @VkCreateShaderModule ---- -- Note: vkCreateShaderModuleUnsafe and -- vkCreateShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateShaderModule is an alias of -- vkCreateShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateShaderModuleSafe. vkCreateShaderModule :: VkDevice -> Ptr VkShaderModuleCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkShaderModule -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateShaderModule -- ( VkDevice device -- , const VkShaderModuleCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkShaderModule* pShaderModule -- ) ---- -- vkCreateShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateShaderModule <- vkGetDeviceProc @VkCreateShaderModule vkDevice ---- -- or less efficient: -- --
-- myCreateShaderModule <- vkGetProc @VkCreateShaderModule ---- -- Note: vkCreateShaderModuleUnsafe and -- vkCreateShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateShaderModule is an alias of -- vkCreateShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateShaderModuleSafe. vkCreateShaderModuleUnsafe :: VkDevice -> Ptr VkShaderModuleCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkShaderModule -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateShaderModule -- ( VkDevice device -- , const VkShaderModuleCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkShaderModule* pShaderModule -- ) ---- -- vkCreateShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateShaderModule <- vkGetDeviceProc @VkCreateShaderModule vkDevice ---- -- or less efficient: -- --
-- myCreateShaderModule <- vkGetProc @VkCreateShaderModule ---- -- Note: vkCreateShaderModuleUnsafe and -- vkCreateShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateShaderModule is an alias of -- vkCreateShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateShaderModuleSafe. vkCreateShaderModuleSafe :: VkDevice -> Ptr VkShaderModuleCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkShaderModule -> IO VkResult type VkDestroyShaderModule = "vkDestroyShaderModule" pattern VkDestroyShaderModule :: CString -- |
-- void vkDestroyShaderModule -- ( VkDevice device -- , VkShaderModule shaderModule -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyShaderModule registry at www.khronos.org type HS_vkDestroyShaderModule = VkDevice " device" -> VkShaderModule " shaderModule" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyShaderModule = FunPtr HS_vkDestroyShaderModule -- |
-- void vkDestroyShaderModule -- ( VkDevice device -- , VkShaderModule shaderModule -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyShaderModule <- vkGetDeviceProc @VkDestroyShaderModule vkDevice ---- -- or less efficient: -- --
-- myDestroyShaderModule <- vkGetProc @VkDestroyShaderModule ---- -- Note: vkDestroyShaderModuleUnsafe and -- vkDestroyShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyShaderModule is an alias of -- vkDestroyShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyShaderModuleSafe. vkDestroyShaderModule :: VkDevice -> VkShaderModule -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyShaderModule -- ( VkDevice device -- , VkShaderModule shaderModule -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyShaderModule <- vkGetDeviceProc @VkDestroyShaderModule vkDevice ---- -- or less efficient: -- --
-- myDestroyShaderModule <- vkGetProc @VkDestroyShaderModule ---- -- Note: vkDestroyShaderModuleUnsafe and -- vkDestroyShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyShaderModule is an alias of -- vkDestroyShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyShaderModuleSafe. vkDestroyShaderModuleUnsafe :: VkDevice -> VkShaderModule -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyShaderModule -- ( VkDevice device -- , VkShaderModule shaderModule -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyShaderModule registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyShaderModule <- vkGetDeviceProc @VkDestroyShaderModule vkDevice ---- -- or less efficient: -- --
-- myDestroyShaderModule <- vkGetProc @VkDestroyShaderModule ---- -- Note: vkDestroyShaderModuleUnsafe and -- vkDestroyShaderModuleSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyShaderModule is an alias of -- vkDestroyShaderModuleUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyShaderModuleSafe. vkDestroyShaderModuleSafe :: VkDevice -> VkShaderModule -> Ptr VkAllocationCallbacks -> IO () -- |
-- typedef struct VkShaderModuleCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkShaderModuleCreateFlags flags;
-- size_t codeSize;
-- const uint32_t* pCode;
-- } VkShaderModuleCreateInfo;
--
--
-- VkShaderModuleCreateInfo registry at www.khronos.org
type VkShaderModuleCreateInfo = VkStruct VkShaderModuleCreateInfo'
-- |
-- typedef struct VkShaderModuleValidationCacheCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkValidationCacheEXT validationCache;
-- } VkShaderModuleValidationCacheCreateInfoEXT;
--
--
-- VkShaderModuleValidationCacheCreateInfoEXT registry at
-- www.khronos.org
type VkShaderModuleValidationCacheCreateInfoEXT = VkStruct VkShaderModuleValidationCacheCreateInfoEXT'
-- |
-- typedef struct VkShaderResourceUsageAMD {
-- uint32_t numUsedVgprs;
-- uint32_t numUsedSgprs;
-- uint32_t ldsSizePerLocalWorkGroup;
-- size_t ldsUsageSizeInBytes;
-- size_t scratchMemUsageInBytes;
-- } VkShaderResourceUsageAMD;
--
--
-- VkShaderResourceUsageAMD registry at www.khronos.org
type VkShaderResourceUsageAMD = VkStruct VkShaderResourceUsageAMD'
-- |
-- typedef struct VkShaderStatisticsInfoAMD {
-- VkShaderStageFlags shaderStageMask;
-- VkShaderResourceUsageAMD resourceUsage;
-- uint32_t numPhysicalVgprs;
-- uint32_t numPhysicalSgprs;
-- uint32_t numAvailableVgprs;
-- uint32_t numAvailableSgprs;
-- uint32_t computeWorkGroupSize[3];
-- } VkShaderStatisticsInfoAMD;
--
--
-- VkShaderStatisticsInfoAMD registry at www.khronos.org
type VkShaderStatisticsInfoAMD = VkStruct VkShaderStatisticsInfoAMD'
type VkCreatePipelineCache = "vkCreatePipelineCache"
pattern VkCreatePipelineCache :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreatePipelineCache -- ( VkDevice device -- , const VkPipelineCacheCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineCache* pPipelineCache -- ) ---- -- vkCreatePipelineCache registry at www.khronos.org type HS_vkCreatePipelineCache = VkDevice " device" -> Ptr VkPipelineCacheCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkPipelineCache " pPipelineCache" -> IO VkResult type PFN_vkCreatePipelineCache = FunPtr HS_vkCreatePipelineCache -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineCache -- ( VkDevice device -- , const VkPipelineCacheCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineCache* pPipelineCache -- ) ---- -- vkCreatePipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineCache <- vkGetDeviceProc @VkCreatePipelineCache vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineCache <- vkGetProc @VkCreatePipelineCache ---- -- Note: vkCreatePipelineCacheUnsafe and -- vkCreatePipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineCache is an alias of -- vkCreatePipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineCacheSafe. vkCreatePipelineCache :: VkDevice -> Ptr VkPipelineCacheCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineCache -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineCache -- ( VkDevice device -- , const VkPipelineCacheCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineCache* pPipelineCache -- ) ---- -- vkCreatePipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineCache <- vkGetDeviceProc @VkCreatePipelineCache vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineCache <- vkGetProc @VkCreatePipelineCache ---- -- Note: vkCreatePipelineCacheUnsafe and -- vkCreatePipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineCache is an alias of -- vkCreatePipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineCacheSafe. vkCreatePipelineCacheUnsafe :: VkDevice -> Ptr VkPipelineCacheCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineCache -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineCache -- ( VkDevice device -- , const VkPipelineCacheCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineCache* pPipelineCache -- ) ---- -- vkCreatePipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineCache <- vkGetDeviceProc @VkCreatePipelineCache vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineCache <- vkGetProc @VkCreatePipelineCache ---- -- Note: vkCreatePipelineCacheUnsafe and -- vkCreatePipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineCache is an alias of -- vkCreatePipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineCacheSafe. vkCreatePipelineCacheSafe :: VkDevice -> Ptr VkPipelineCacheCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineCache -> IO VkResult type VkDestroyPipelineCache = "vkDestroyPipelineCache" pattern VkDestroyPipelineCache :: CString -- |
-- void vkDestroyPipelineCache -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineCache registry at www.khronos.org type HS_vkDestroyPipelineCache = VkDevice " device" -> VkPipelineCache " pipelineCache" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyPipelineCache = FunPtr HS_vkDestroyPipelineCache -- |
-- void vkDestroyPipelineCache -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineCache <- vkGetDeviceProc @VkDestroyPipelineCache vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineCache <- vkGetProc @VkDestroyPipelineCache ---- -- Note: vkDestroyPipelineCacheUnsafe and -- vkDestroyPipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineCache is an alias of -- vkDestroyPipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineCacheSafe. vkDestroyPipelineCache :: VkDevice -> VkPipelineCache -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipelineCache -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineCache <- vkGetDeviceProc @VkDestroyPipelineCache vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineCache <- vkGetProc @VkDestroyPipelineCache ---- -- Note: vkDestroyPipelineCacheUnsafe and -- vkDestroyPipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineCache is an alias of -- vkDestroyPipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineCacheSafe. vkDestroyPipelineCacheUnsafe :: VkDevice -> VkPipelineCache -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipelineCache -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineCache registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineCache <- vkGetDeviceProc @VkDestroyPipelineCache vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineCache <- vkGetProc @VkDestroyPipelineCache ---- -- Note: vkDestroyPipelineCacheUnsafe and -- vkDestroyPipelineCacheSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineCache is an alias of -- vkDestroyPipelineCacheUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineCacheSafe. vkDestroyPipelineCacheSafe :: VkDevice -> VkPipelineCache -> Ptr VkAllocationCallbacks -> IO () type VkGetPipelineCacheData = "vkGetPipelineCacheData" pattern VkGetPipelineCacheData :: CString -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPipelineCacheData -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , size_t* pDataSize -- , void* pData -- ) ---- -- vkGetPipelineCacheData registry at www.khronos.org type HS_vkGetPipelineCacheData = VkDevice " device" -> VkPipelineCache " pipelineCache" -> Ptr CSize " pDataSize" -> Ptr Void " pData" -> IO VkResult type PFN_vkGetPipelineCacheData = FunPtr HS_vkGetPipelineCacheData -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPipelineCacheData -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , size_t* pDataSize -- , void* pData -- ) ---- -- vkGetPipelineCacheData registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPipelineCacheData <- vkGetDeviceProc @VkGetPipelineCacheData vkDevice ---- -- or less efficient: -- --
-- myGetPipelineCacheData <- vkGetProc @VkGetPipelineCacheData ---- -- Note: vkGetPipelineCacheDataUnsafe and -- vkGetPipelineCacheDataSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPipelineCacheData is an alias of -- vkGetPipelineCacheDataUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPipelineCacheDataSafe. vkGetPipelineCacheData :: VkDevice -> VkPipelineCache -> Ptr CSize -> Ptr Void -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPipelineCacheData -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , size_t* pDataSize -- , void* pData -- ) ---- -- vkGetPipelineCacheData registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPipelineCacheData <- vkGetDeviceProc @VkGetPipelineCacheData vkDevice ---- -- or less efficient: -- --
-- myGetPipelineCacheData <- vkGetProc @VkGetPipelineCacheData ---- -- Note: vkGetPipelineCacheDataUnsafe and -- vkGetPipelineCacheDataSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPipelineCacheData is an alias of -- vkGetPipelineCacheDataUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPipelineCacheDataSafe. vkGetPipelineCacheDataUnsafe :: VkDevice -> VkPipelineCache -> Ptr CSize -> Ptr Void -> IO VkResult -- | Success codes: VK_SUCCESS, VK_INCOMPLETE. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkGetPipelineCacheData -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , size_t* pDataSize -- , void* pData -- ) ---- -- vkGetPipelineCacheData registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetPipelineCacheData <- vkGetDeviceProc @VkGetPipelineCacheData vkDevice ---- -- or less efficient: -- --
-- myGetPipelineCacheData <- vkGetProc @VkGetPipelineCacheData ---- -- Note: vkGetPipelineCacheDataUnsafe and -- vkGetPipelineCacheDataSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetPipelineCacheData is an alias of -- vkGetPipelineCacheDataUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetPipelineCacheDataSafe. vkGetPipelineCacheDataSafe :: VkDevice -> VkPipelineCache -> Ptr CSize -> Ptr Void -> IO VkResult type VkMergePipelineCaches = "vkMergePipelineCaches" pattern VkMergePipelineCaches :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkMergePipelineCaches -- ( VkDevice device -- , VkPipelineCache dstCache -- , uint32_t srcCacheCount -- , const VkPipelineCache* pSrcCaches -- ) ---- -- vkMergePipelineCaches registry at www.khronos.org type HS_vkMergePipelineCaches = VkDevice " device" -> VkPipelineCache " dstCache" -> Word32 " srcCacheCount" -> Ptr VkPipelineCache " pSrcCaches" -> IO VkResult type PFN_vkMergePipelineCaches = FunPtr HS_vkMergePipelineCaches -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkMergePipelineCaches -- ( VkDevice device -- , VkPipelineCache dstCache -- , uint32_t srcCacheCount -- , const VkPipelineCache* pSrcCaches -- ) ---- -- vkMergePipelineCaches registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMergePipelineCaches <- vkGetDeviceProc @VkMergePipelineCaches vkDevice ---- -- or less efficient: -- --
-- myMergePipelineCaches <- vkGetProc @VkMergePipelineCaches ---- -- Note: vkMergePipelineCachesUnsafe and -- vkMergePipelineCachesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkMergePipelineCaches is an alias of -- vkMergePipelineCachesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkMergePipelineCachesSafe. vkMergePipelineCaches :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkPipelineCache -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkMergePipelineCaches -- ( VkDevice device -- , VkPipelineCache dstCache -- , uint32_t srcCacheCount -- , const VkPipelineCache* pSrcCaches -- ) ---- -- vkMergePipelineCaches registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMergePipelineCaches <- vkGetDeviceProc @VkMergePipelineCaches vkDevice ---- -- or less efficient: -- --
-- myMergePipelineCaches <- vkGetProc @VkMergePipelineCaches ---- -- Note: vkMergePipelineCachesUnsafe and -- vkMergePipelineCachesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkMergePipelineCaches is an alias of -- vkMergePipelineCachesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkMergePipelineCachesSafe. vkMergePipelineCachesUnsafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkPipelineCache -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkMergePipelineCaches -- ( VkDevice device -- , VkPipelineCache dstCache -- , uint32_t srcCacheCount -- , const VkPipelineCache* pSrcCaches -- ) ---- -- vkMergePipelineCaches registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myMergePipelineCaches <- vkGetDeviceProc @VkMergePipelineCaches vkDevice ---- -- or less efficient: -- --
-- myMergePipelineCaches <- vkGetProc @VkMergePipelineCaches ---- -- Note: vkMergePipelineCachesUnsafe and -- vkMergePipelineCachesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkMergePipelineCaches is an alias of -- vkMergePipelineCachesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkMergePipelineCachesSafe. vkMergePipelineCachesSafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkPipelineCache -> IO VkResult -- |
-- typedef struct VkGraphicsPipelineCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCreateFlags flags;
-- uint32_t stageCount;
-- const VkPipelineShaderStageCreateInfo* pStages;
-- const VkPipelineVertexInputStateCreateInfo* pVertexInputState;
-- const VkPipelineInputAssemblyStateCreateInfo* pInputAssemblyState;
-- const VkPipelineTessellationStateCreateInfo* pTessellationState;
-- const VkPipelineViewportStateCreateInfo* pViewportState;
-- const VkPipelineRasterizationStateCreateInfo* pRasterizationState;
-- const VkPipelineMultisampleStateCreateInfo* pMultisampleState;
-- const VkPipelineDepthStencilStateCreateInfo* pDepthStencilState;
-- const VkPipelineColorBlendStateCreateInfo* pColorBlendState;
-- const VkPipelineDynamicStateCreateInfo* pDynamicState;
-- VkPipelineLayout layout;
-- VkRenderPass renderPass;
-- uint32_t subpass;
-- VkPipeline basePipelineHandle;
-- int32_t basePipelineIndex;
-- } VkGraphicsPipelineCreateInfo;
--
--
-- VkGraphicsPipelineCreateInfo registry at www.khronos.org
type VkGraphicsPipelineCreateInfo = VkStruct VkGraphicsPipelineCreateInfo'
-- |
-- typedef struct VkPipelineCacheCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCacheCreateFlags flags;
-- size_t initialDataSize;
-- const void* pInitialData;
-- } VkPipelineCacheCreateInfo;
--
--
-- VkPipelineCacheCreateInfo registry at www.khronos.org
type VkPipelineCacheCreateInfo = VkStruct VkPipelineCacheCreateInfo'
-- |
-- typedef struct VkPipelineColorBlendAdvancedStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 srcPremultiplied;
-- VkBool32 dstPremultiplied;
-- VkBlendOverlapEXT blendOverlap;
-- } VkPipelineColorBlendAdvancedStateCreateInfoEXT;
--
--
-- VkPipelineColorBlendAdvancedStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineColorBlendAdvancedStateCreateInfoEXT = VkStruct VkPipelineColorBlendAdvancedStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineColorBlendAttachmentState {
-- VkBool32 blendEnable;
-- VkBlendFactor srcColorBlendFactor;
-- VkBlendFactor dstColorBlendFactor;
-- VkBlendOp colorBlendOp;
-- VkBlendFactor srcAlphaBlendFactor;
-- VkBlendFactor dstAlphaBlendFactor;
-- VkBlendOp alphaBlendOp;
-- VkColorComponentFlags colorWriteMask;
-- } VkPipelineColorBlendAttachmentState;
--
--
-- VkPipelineColorBlendAttachmentState registry at www.khronos.org
type VkPipelineColorBlendAttachmentState = VkStruct VkPipelineColorBlendAttachmentState'
-- |
-- typedef struct VkPipelineColorBlendStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineColorBlendStateCreateFlags flags;
-- VkBool32 logicOpEnable;
-- VkLogicOp logicOp;
-- uint32_t attachmentCount;
-- const VkPipelineColorBlendAttachmentState* pAttachments;
-- float blendConstants[4];
-- } VkPipelineColorBlendStateCreateInfo;
--
--
-- VkPipelineColorBlendStateCreateInfo registry at www.khronos.org
type VkPipelineColorBlendStateCreateInfo = VkStruct VkPipelineColorBlendStateCreateInfo'
-- |
-- typedef struct VkPipelineCoverageModulationStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCoverageModulationStateCreateFlagsNV flags;
-- VkCoverageModulationModeNV coverageModulationMode;
-- VkBool32 coverageModulationTableEnable;
-- uint32_t coverageModulationTableCount;
-- const float* pCoverageModulationTable;
-- } VkPipelineCoverageModulationStateCreateInfoNV;
--
--
-- VkPipelineCoverageModulationStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineCoverageModulationStateCreateInfoNV = VkStruct VkPipelineCoverageModulationStateCreateInfoNV'
-- |
-- typedef struct VkPipelineCoverageToColorStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCoverageToColorStateCreateFlagsNV flags;
-- VkBool32 coverageToColorEnable;
-- uint32_t coverageToColorLocation;
-- } VkPipelineCoverageToColorStateCreateInfoNV;
--
--
-- VkPipelineCoverageToColorStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineCoverageToColorStateCreateInfoNV = VkStruct VkPipelineCoverageToColorStateCreateInfoNV'
-- |
-- typedef struct VkPipelineDepthStencilStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDepthStencilStateCreateFlags flags;
-- VkBool32 depthTestEnable;
-- VkBool32 depthWriteEnable;
-- VkCompareOp depthCompareOp;
-- VkBool32 depthBoundsTestEnable;
-- VkBool32 stencilTestEnable;
-- VkStencilOpState front;
-- VkStencilOpState back;
-- float minDepthBounds;
-- float maxDepthBounds;
-- } VkPipelineDepthStencilStateCreateInfo;
--
--
-- VkPipelineDepthStencilStateCreateInfo registry at
-- www.khronos.org
type VkPipelineDepthStencilStateCreateInfo = VkStruct VkPipelineDepthStencilStateCreateInfo'
-- |
-- typedef struct VkPipelineDiscardRectangleStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDiscardRectangleStateCreateFlagsEXT flags;
-- VkDiscardRectangleModeEXT discardRectangleMode;
-- uint32_t discardRectangleCount;
-- const VkRect2D* pDiscardRectangles;
-- } VkPipelineDiscardRectangleStateCreateInfoEXT;
--
--
-- VkPipelineDiscardRectangleStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineDiscardRectangleStateCreateInfoEXT = VkStruct VkPipelineDiscardRectangleStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineDynamicStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineDynamicStateCreateFlags flags;
-- uint32_t dynamicStateCount;
-- const VkDynamicState* pDynamicStates;
-- } VkPipelineDynamicStateCreateInfo;
--
--
-- VkPipelineDynamicStateCreateInfo registry at www.khronos.org
type VkPipelineDynamicStateCreateInfo = VkStruct VkPipelineDynamicStateCreateInfo'
-- |
-- typedef struct VkPipelineInputAssemblyStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineInputAssemblyStateCreateFlags flags;
-- VkPrimitiveTopology topology;
-- VkBool32 primitiveRestartEnable;
-- } VkPipelineInputAssemblyStateCreateInfo;
--
--
-- VkPipelineInputAssemblyStateCreateInfo registry at
-- www.khronos.org
type VkPipelineInputAssemblyStateCreateInfo = VkStruct VkPipelineInputAssemblyStateCreateInfo'
-- |
-- typedef struct VkPipelineLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineLayoutCreateFlags flags;
-- uint32_t setLayoutCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- uint32_t pushConstantRangeCount;
-- const VkPushConstantRange* pPushConstantRanges;
-- } VkPipelineLayoutCreateInfo;
--
--
-- VkPipelineLayoutCreateInfo registry at www.khronos.org
type VkPipelineLayoutCreateInfo = VkStruct VkPipelineLayoutCreateInfo'
-- |
-- typedef struct VkPipelineMultisampleStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineMultisampleStateCreateFlags flags;
-- VkSampleCountFlagBits rasterizationSamples;
-- VkBool32 sampleShadingEnable;
-- float minSampleShading;
-- const VkSampleMask* pSampleMask;
-- VkBool32 alphaToCoverageEnable;
-- VkBool32 alphaToOneEnable;
-- } VkPipelineMultisampleStateCreateInfo;
--
--
-- VkPipelineMultisampleStateCreateInfo registry at
-- www.khronos.org
type VkPipelineMultisampleStateCreateInfo = VkStruct VkPipelineMultisampleStateCreateInfo'
-- |
-- typedef struct VkPipelineRasterizationConservativeStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationConservativeStateCreateFlagsEXT flags;
-- VkConservativeRasterizationModeEXT conservativeRasterizationMode;
-- float extraPrimitiveOverestimationSize;
-- } VkPipelineRasterizationConservativeStateCreateInfoEXT;
--
--
-- VkPipelineRasterizationConservativeStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineRasterizationConservativeStateCreateInfoEXT = VkStruct VkPipelineRasterizationConservativeStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineRasterizationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineRasterizationStateCreateFlags flags;
-- VkBool32 depthClampEnable;
-- VkBool32 rasterizerDiscardEnable;
-- VkPolygonMode polygonMode;
-- VkCullModeFlags cullMode;
-- VkFrontFace frontFace;
-- VkBool32 depthBiasEnable;
-- float depthBiasConstantFactor;
-- float depthBiasClamp;
-- float depthBiasSlopeFactor;
-- float lineWidth;
-- } VkPipelineRasterizationStateCreateInfo;
--
--
-- VkPipelineRasterizationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineRasterizationStateCreateInfo = VkStruct VkPipelineRasterizationStateCreateInfo'
-- |
-- typedef struct VkPipelineRasterizationStateRasterizationOrderAMD {
-- VkStructureType sType;
-- const void* pNext;
-- VkRasterizationOrderAMD rasterizationOrder;
-- } VkPipelineRasterizationStateRasterizationOrderAMD;
--
--
-- VkPipelineRasterizationStateRasterizationOrderAMD registry at
-- www.khronos.org
type VkPipelineRasterizationStateRasterizationOrderAMD = VkStruct VkPipelineRasterizationStateRasterizationOrderAMD'
-- |
-- typedef struct VkPipelineSampleLocationsStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 sampleLocationsEnable;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkPipelineSampleLocationsStateCreateInfoEXT;
--
--
-- VkPipelineSampleLocationsStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineSampleLocationsStateCreateInfoEXT = VkStruct VkPipelineSampleLocationsStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineShaderStageCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineShaderStageCreateFlags flags;
-- VkShaderStageFlagBits stage;
-- VkShaderModule module;
-- const char* pName;
-- const VkSpecializationInfo* pSpecializationInfo;
-- } VkPipelineShaderStageCreateInfo;
--
--
-- VkPipelineShaderStageCreateInfo registry at www.khronos.org
type VkPipelineShaderStageCreateInfo = VkStruct VkPipelineShaderStageCreateInfo'
-- |
-- typedef struct VkPipelineTessellationDomainOriginStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkTessellationDomainOrigin domainOrigin;
-- } VkPipelineTessellationDomainOriginStateCreateInfo;
--
--
-- VkPipelineTessellationDomainOriginStateCreateInfo registry at
-- www.khronos.org
type VkPipelineTessellationDomainOriginStateCreateInfo = VkStruct VkPipelineTessellationDomainOriginStateCreateInfo'
-- | Alias for VkPipelineTessellationDomainOriginStateCreateInfo
type VkPipelineTessellationDomainOriginStateCreateInfoKHR = VkPipelineTessellationDomainOriginStateCreateInfo
-- |
-- typedef struct VkPipelineTessellationStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineTessellationStateCreateFlags flags;
-- uint32_t patchControlPoints;
-- } VkPipelineTessellationStateCreateInfo;
--
--
-- VkPipelineTessellationStateCreateInfo registry at
-- www.khronos.org
type VkPipelineTessellationStateCreateInfo = VkStruct VkPipelineTessellationStateCreateInfo'
-- |
-- typedef struct VkPipelineVertexInputDivisorStateCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t vertexBindingDivisorCount;
-- const VkVertexInputBindingDivisorDescriptionEXT* pVertexBindingDivisors;
-- } VkPipelineVertexInputDivisorStateCreateInfoEXT;
--
--
-- VkPipelineVertexInputDivisorStateCreateInfoEXT registry at
-- www.khronos.org
type VkPipelineVertexInputDivisorStateCreateInfoEXT = VkStruct VkPipelineVertexInputDivisorStateCreateInfoEXT'
-- |
-- typedef struct VkPipelineVertexInputStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineVertexInputStateCreateFlags flags;
-- uint32_t vertexBindingDescriptionCount;
-- const VkVertexInputBindingDescription* pVertexBindingDescriptions;
-- uint32_t vertexAttributeDescriptionCount;
-- const VkVertexInputAttributeDescription* pVertexAttributeDescriptions;
-- } VkPipelineVertexInputStateCreateInfo;
--
--
-- VkPipelineVertexInputStateCreateInfo registry at
-- www.khronos.org
type VkPipelineVertexInputStateCreateInfo = VkStruct VkPipelineVertexInputStateCreateInfo'
-- |
-- typedef struct VkPipelineViewportStateCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportStateCreateFlags flags;
-- uint32_t viewportCount;
-- const VkViewport* pViewports;
-- uint32_t scissorCount;
-- const VkRect2D* pScissors;
-- } VkPipelineViewportStateCreateInfo;
--
--
-- VkPipelineViewportStateCreateInfo registry at www.khronos.org
type VkPipelineViewportStateCreateInfo = VkStruct VkPipelineViewportStateCreateInfo'
-- |
-- typedef struct VkPipelineViewportSwizzleStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineViewportSwizzleStateCreateFlagsNV flags;
-- uint32_t viewportCount;
-- const VkViewportSwizzleNV* pViewportSwizzles;
-- } VkPipelineViewportSwizzleStateCreateInfoNV;
--
--
-- VkPipelineViewportSwizzleStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineViewportSwizzleStateCreateInfoNV = VkStruct VkPipelineViewportSwizzleStateCreateInfoNV'
-- |
-- typedef struct VkPipelineViewportWScalingStateCreateInfoNV {
-- VkStructureType sType;
-- const void* pNext;
-- VkBool32 viewportWScalingEnable;
-- uint32_t viewportCount;
-- const VkViewportWScalingNV* pViewportWScalings;
-- } VkPipelineViewportWScalingStateCreateInfoNV;
--
--
-- VkPipelineViewportWScalingStateCreateInfoNV registry at
-- www.khronos.org
type VkPipelineViewportWScalingStateCreateInfoNV = VkStruct VkPipelineViewportWScalingStateCreateInfoNV'
type VkCreateGraphicsPipelines = "vkCreateGraphicsPipelines"
pattern VkCreateGraphicsPipelines :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_INVALID_SHADER_NV.
--
-- -- VkResult vkCreateGraphicsPipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkGraphicsPipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateGraphicsPipelines registry at www.khronos.org type HS_vkCreateGraphicsPipelines = VkDevice " device" -> VkPipelineCache " pipelineCache" -> Word32 " createInfoCount" -> Ptr VkGraphicsPipelineCreateInfo " pCreateInfos" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkPipeline " pPipelines" -> IO VkResult type PFN_vkCreateGraphicsPipelines = FunPtr HS_vkCreateGraphicsPipelines -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateGraphicsPipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkGraphicsPipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateGraphicsPipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateGraphicsPipelines <- vkGetDeviceProc @VkCreateGraphicsPipelines vkDevice ---- -- or less efficient: -- --
-- myCreateGraphicsPipelines <- vkGetProc @VkCreateGraphicsPipelines ---- -- Note: vkCreateGraphicsPipelinesUnsafe and -- vkCreateGraphicsPipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateGraphicsPipelines is an alias of -- vkCreateGraphicsPipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateGraphicsPipelinesSafe. vkCreateGraphicsPipelines :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkGraphicsPipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateGraphicsPipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkGraphicsPipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateGraphicsPipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateGraphicsPipelines <- vkGetDeviceProc @VkCreateGraphicsPipelines vkDevice ---- -- or less efficient: -- --
-- myCreateGraphicsPipelines <- vkGetProc @VkCreateGraphicsPipelines ---- -- Note: vkCreateGraphicsPipelinesUnsafe and -- vkCreateGraphicsPipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateGraphicsPipelines is an alias of -- vkCreateGraphicsPipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateGraphicsPipelinesSafe. vkCreateGraphicsPipelinesUnsafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkGraphicsPipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateGraphicsPipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkGraphicsPipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateGraphicsPipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateGraphicsPipelines <- vkGetDeviceProc @VkCreateGraphicsPipelines vkDevice ---- -- or less efficient: -- --
-- myCreateGraphicsPipelines <- vkGetProc @VkCreateGraphicsPipelines ---- -- Note: vkCreateGraphicsPipelinesUnsafe and -- vkCreateGraphicsPipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateGraphicsPipelines is an alias of -- vkCreateGraphicsPipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateGraphicsPipelinesSafe. vkCreateGraphicsPipelinesSafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkGraphicsPipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult type VkCreateComputePipelines = "vkCreateComputePipelines" pattern VkCreateComputePipelines :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateComputePipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkComputePipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateComputePipelines registry at www.khronos.org type HS_vkCreateComputePipelines = VkDevice " device" -> VkPipelineCache " pipelineCache" -> Word32 " createInfoCount" -> Ptr VkComputePipelineCreateInfo " pCreateInfos" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkPipeline " pPipelines" -> IO VkResult type PFN_vkCreateComputePipelines = FunPtr HS_vkCreateComputePipelines -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateComputePipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkComputePipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateComputePipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateComputePipelines <- vkGetDeviceProc @VkCreateComputePipelines vkDevice ---- -- or less efficient: -- --
-- myCreateComputePipelines <- vkGetProc @VkCreateComputePipelines ---- -- Note: vkCreateComputePipelinesUnsafe and -- vkCreateComputePipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateComputePipelines is an alias of -- vkCreateComputePipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateComputePipelinesSafe. vkCreateComputePipelines :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkComputePipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateComputePipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkComputePipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateComputePipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateComputePipelines <- vkGetDeviceProc @VkCreateComputePipelines vkDevice ---- -- or less efficient: -- --
-- myCreateComputePipelines <- vkGetProc @VkCreateComputePipelines ---- -- Note: vkCreateComputePipelinesUnsafe and -- vkCreateComputePipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateComputePipelines is an alias of -- vkCreateComputePipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateComputePipelinesSafe. vkCreateComputePipelinesUnsafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkComputePipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INVALID_SHADER_NV. -- --
-- VkResult vkCreateComputePipelines -- ( VkDevice device -- , VkPipelineCache pipelineCache -- , uint32_t createInfoCount -- , const VkComputePipelineCreateInfo* pCreateInfos -- , const VkAllocationCallbacks* pAllocator -- , VkPipeline* pPipelines -- ) ---- -- vkCreateComputePipelines registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateComputePipelines <- vkGetDeviceProc @VkCreateComputePipelines vkDevice ---- -- or less efficient: -- --
-- myCreateComputePipelines <- vkGetProc @VkCreateComputePipelines ---- -- Note: vkCreateComputePipelinesUnsafe and -- vkCreateComputePipelinesSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateComputePipelines is an alias of -- vkCreateComputePipelinesUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateComputePipelinesSafe. vkCreateComputePipelinesSafe :: VkDevice -> VkPipelineCache -> Word32 -> Ptr VkComputePipelineCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipeline -> IO VkResult type VkDestroyPipeline = "vkDestroyPipeline" pattern VkDestroyPipeline :: CString -- |
-- void vkDestroyPipeline -- ( VkDevice device -- , VkPipeline pipeline -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipeline registry at www.khronos.org type HS_vkDestroyPipeline = VkDevice " device" -> VkPipeline " pipeline" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyPipeline = FunPtr HS_vkDestroyPipeline -- |
-- void vkDestroyPipeline -- ( VkDevice device -- , VkPipeline pipeline -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipeline <- vkGetDeviceProc @VkDestroyPipeline vkDevice ---- -- or less efficient: -- --
-- myDestroyPipeline <- vkGetProc @VkDestroyPipeline ---- -- Note: vkDestroyPipelineUnsafe and -- vkDestroyPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipeline is an alias of -- vkDestroyPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyPipelineSafe. vkDestroyPipeline :: VkDevice -> VkPipeline -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipeline -- ( VkDevice device -- , VkPipeline pipeline -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipeline <- vkGetDeviceProc @VkDestroyPipeline vkDevice ---- -- or less efficient: -- --
-- myDestroyPipeline <- vkGetProc @VkDestroyPipeline ---- -- Note: vkDestroyPipelineUnsafe and -- vkDestroyPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipeline is an alias of -- vkDestroyPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyPipelineSafe. vkDestroyPipelineUnsafe :: VkDevice -> VkPipeline -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipeline -- ( VkDevice device -- , VkPipeline pipeline -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipeline <- vkGetDeviceProc @VkDestroyPipeline vkDevice ---- -- or less efficient: -- --
-- myDestroyPipeline <- vkGetProc @VkDestroyPipeline ---- -- Note: vkDestroyPipelineUnsafe and -- vkDestroyPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipeline is an alias of -- vkDestroyPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroyPipelineSafe. vkDestroyPipelineSafe :: VkDevice -> VkPipeline -> Ptr VkAllocationCallbacks -> IO () -- | type = enum -- -- VkBlendFactor registry at www.khronos.org newtype VkBlendFactor VkBlendFactor :: Int32 -> VkBlendFactor pattern VK_BLEND_FACTOR_ZERO :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE :: VkBlendFactor pattern VK_BLEND_FACTOR_SRC_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_DST_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_DST_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_SRC_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_SRC_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_DST_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_DST_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_CONSTANT_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_CONSTANT_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_SRC_ALPHA_SATURATE :: VkBlendFactor pattern VK_BLEND_FACTOR_SRC1_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_COLOR :: VkBlendFactor pattern VK_BLEND_FACTOR_SRC1_ALPHA :: VkBlendFactor pattern VK_BLEND_FACTOR_ONE_MINUS_SRC1_ALPHA :: VkBlendFactor -- | type = enum -- -- VkBlendOp registry at www.khronos.org newtype VkBlendOp VkBlendOp :: Int32 -> VkBlendOp pattern VK_BLEND_OP_ADD :: VkBlendOp pattern VK_BLEND_OP_SUBTRACT :: VkBlendOp pattern VK_BLEND_OP_REVERSE_SUBTRACT :: VkBlendOp pattern VK_BLEND_OP_MIN :: VkBlendOp pattern VK_BLEND_OP_MAX :: VkBlendOp -- | type = enum -- -- VkBlendOverlapEXT registry at www.khronos.org newtype VkBlendOverlapEXT VkBlendOverlapEXT :: Int32 -> VkBlendOverlapEXT pattern VK_BLEND_OVERLAP_UNCORRELATED_EXT :: VkBlendOverlapEXT pattern VK_BLEND_OVERLAP_DISJOINT_EXT :: VkBlendOverlapEXT pattern VK_BLEND_OVERLAP_CONJOINT_EXT :: VkBlendOverlapEXT newtype VkColorComponentBitmask (a :: FlagType) VkColorComponentBitmask :: VkFlags -> VkColorComponentBitmask pattern VkColorComponentFlagBits :: VkFlags -> VkColorComponentBitmask FlagBit pattern VkColorComponentFlags :: VkFlags -> VkColorComponentBitmask FlagMask -- | bitpos = 0 pattern VK_COLOR_COMPONENT_R_BIT :: VkColorComponentBitmask a -- | bitpos = 1 pattern VK_COLOR_COMPONENT_G_BIT :: VkColorComponentBitmask a -- | bitpos = 2 pattern VK_COLOR_COMPONENT_B_BIT :: VkColorComponentBitmask a -- | bitpos = 3 pattern VK_COLOR_COMPONENT_A_BIT :: VkColorComponentBitmask a -- | type = enum -- -- VkColorSpaceKHR registry at www.khronos.org newtype VkColorSpaceKHR VkColorSpaceKHR :: Int32 -> VkColorSpaceKHR pattern VK_COLOR_SPACE_SRGB_NONLINEAR_KHR :: VkColorSpaceKHR type VkColorComponentFlagBits = VkColorComponentBitmask FlagBit type VkColorComponentFlags = VkColorComponentBitmask FlagMask -- | type = enum -- -- VkCompareOp registry at www.khronos.org newtype VkCompareOp VkCompareOp :: Int32 -> VkCompareOp pattern VK_COMPARE_OP_NEVER :: VkCompareOp pattern VK_COMPARE_OP_LESS :: VkCompareOp pattern VK_COMPARE_OP_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_LESS_OR_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_GREATER :: VkCompareOp pattern VK_COMPARE_OP_NOT_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_GREATER_OR_EQUAL :: VkCompareOp pattern VK_COMPARE_OP_ALWAYS :: VkCompareOp newtype VkCullModeBitmask (a :: FlagType) VkCullModeBitmask :: VkFlags -> VkCullModeBitmask pattern VkCullModeFlagBits :: VkFlags -> VkCullModeBitmask FlagBit pattern VkCullModeFlags :: VkFlags -> VkCullModeBitmask FlagMask pattern VK_CULL_MODE_NONE :: VkCullModeBitmask a -- | bitpos = 0 pattern VK_CULL_MODE_FRONT_BIT :: VkCullModeBitmask a -- | bitpos = 1 pattern VK_CULL_MODE_BACK_BIT :: VkCullModeBitmask a pattern VK_CULL_MODE_FRONT_AND_BACK :: VkCullModeBitmask a type VkCullModeFlagBits = VkCullModeBitmask FlagBit type VkCullModeFlags = VkCullModeBitmask FlagMask -- | type = enum -- -- VkDynamicState registry at www.khronos.org newtype VkDynamicState VkDynamicState :: Int32 -> VkDynamicState pattern VK_DYNAMIC_STATE_VIEWPORT :: VkDynamicState pattern VK_DYNAMIC_STATE_SCISSOR :: VkDynamicState pattern VK_DYNAMIC_STATE_LINE_WIDTH :: VkDynamicState pattern VK_DYNAMIC_STATE_DEPTH_BIAS :: VkDynamicState pattern VK_DYNAMIC_STATE_BLEND_CONSTANTS :: VkDynamicState pattern VK_DYNAMIC_STATE_DEPTH_BOUNDS :: VkDynamicState pattern VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK :: VkDynamicState pattern VK_DYNAMIC_STATE_STENCIL_WRITE_MASK :: VkDynamicState pattern VK_DYNAMIC_STATE_STENCIL_REFERENCE :: VkDynamicState -- | type = enum -- -- VkFrontFace registry at www.khronos.org newtype VkFrontFace VkFrontFace :: Int32 -> VkFrontFace pattern VK_FRONT_FACE_COUNTER_CLOCKWISE :: VkFrontFace pattern VK_FRONT_FACE_CLOCKWISE :: VkFrontFace -- | type = enum -- -- VkLogicOp registry at www.khronos.org newtype VkLogicOp VkLogicOp :: Int32 -> VkLogicOp pattern VK_LOGIC_OP_CLEAR :: VkLogicOp pattern VK_LOGIC_OP_AND :: VkLogicOp pattern VK_LOGIC_OP_AND_REVERSE :: VkLogicOp pattern VK_LOGIC_OP_COPY :: VkLogicOp pattern VK_LOGIC_OP_AND_INVERTED :: VkLogicOp pattern VK_LOGIC_OP_NO_OP :: VkLogicOp pattern VK_LOGIC_OP_XOR :: VkLogicOp pattern VK_LOGIC_OP_OR :: VkLogicOp pattern VK_LOGIC_OP_NOR :: VkLogicOp pattern VK_LOGIC_OP_EQUIVALENT :: VkLogicOp pattern VK_LOGIC_OP_INVERT :: VkLogicOp pattern VK_LOGIC_OP_OR_REVERSE :: VkLogicOp pattern VK_LOGIC_OP_COPY_INVERTED :: VkLogicOp pattern VK_LOGIC_OP_OR_INVERTED :: VkLogicOp pattern VK_LOGIC_OP_NAND :: VkLogicOp pattern VK_LOGIC_OP_SET :: VkLogicOp -- | type = enum -- -- VkPolygonMode registry at www.khronos.org newtype VkPolygonMode VkPolygonMode :: Int32 -> VkPolygonMode pattern VK_POLYGON_MODE_FILL :: VkPolygonMode pattern VK_POLYGON_MODE_LINE :: VkPolygonMode pattern VK_POLYGON_MODE_POINT :: VkPolygonMode -- | type = enum -- -- VkPrimitiveTopology registry at www.khronos.org newtype VkPrimitiveTopology VkPrimitiveTopology :: Int32 -> VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_POINT_LIST :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_LINE_LIST :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_LINE_STRIP :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_LINE_LIST_WITH_ADJACENCY :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_LINE_STRIP_WITH_ADJACENCY :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_LIST_WITH_ADJACENCY :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP_WITH_ADJACENCY :: VkPrimitiveTopology pattern VK_PRIMITIVE_TOPOLOGY_PATCH_LIST :: VkPrimitiveTopology -- | type = enum -- -- VkShaderInfoTypeAMD registry at www.khronos.org newtype VkShaderInfoTypeAMD VkShaderInfoTypeAMD :: Int32 -> VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_STATISTICS_AMD :: VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_BINARY_AMD :: VkShaderInfoTypeAMD pattern VK_SHADER_INFO_TYPE_DISASSEMBLY_AMD :: VkShaderInfoTypeAMD newtype VkShaderStageBitmask (a :: FlagType) VkShaderStageBitmask :: VkFlags -> VkShaderStageBitmask pattern VkShaderStageFlagBits :: VkFlags -> VkShaderStageBitmask FlagBit pattern VkShaderStageFlags :: VkFlags -> VkShaderStageBitmask FlagMask -- | bitpos = 0 pattern VK_SHADER_STAGE_VERTEX_BIT :: VkShaderStageBitmask a -- | bitpos = 1 pattern VK_SHADER_STAGE_TESSELLATION_CONTROL_BIT :: VkShaderStageBitmask a -- | bitpos = 2 pattern VK_SHADER_STAGE_TESSELLATION_EVALUATION_BIT :: VkShaderStageBitmask a -- | bitpos = 3 pattern VK_SHADER_STAGE_GEOMETRY_BIT :: VkShaderStageBitmask a -- | bitpos = 4 pattern VK_SHADER_STAGE_FRAGMENT_BIT :: VkShaderStageBitmask a -- | bitpos = 5 pattern VK_SHADER_STAGE_COMPUTE_BIT :: VkShaderStageBitmask a pattern VK_SHADER_STAGE_ALL_GRAPHICS :: VkShaderStageBitmask a pattern VK_SHADER_STAGE_ALL :: VkShaderStageBitmask a type VkShaderStageFlagBits = VkShaderStageBitmask FlagBit type VkShaderStageFlags = VkShaderStageBitmask FlagMask newtype VkStencilFaceBitmask (a :: FlagType) VkStencilFaceBitmask :: VkFlags -> VkStencilFaceBitmask pattern VkStencilFaceFlagBits :: VkFlags -> VkStencilFaceBitmask FlagBit pattern VkStencilFaceFlags :: VkFlags -> VkStencilFaceBitmask FlagMask -- | Front face -- -- bitpos = 0 pattern VK_STENCIL_FACE_FRONT_BIT :: VkStencilFaceBitmask a -- | Back face -- -- bitpos = 1 pattern VK_STENCIL_FACE_BACK_BIT :: VkStencilFaceBitmask a -- | Front and back faces pattern VK_STENCIL_FRONT_AND_BACK :: VkStencilFaceBitmask a -- | type = enum -- -- VkStencilOp registry at www.khronos.org newtype VkStencilOp VkStencilOp :: Int32 -> VkStencilOp pattern VK_STENCIL_OP_KEEP :: VkStencilOp pattern VK_STENCIL_OP_ZERO :: VkStencilOp pattern VK_STENCIL_OP_REPLACE :: VkStencilOp pattern VK_STENCIL_OP_INCREMENT_AND_CLAMP :: VkStencilOp pattern VK_STENCIL_OP_DECREMENT_AND_CLAMP :: VkStencilOp pattern VK_STENCIL_OP_INVERT :: VkStencilOp pattern VK_STENCIL_OP_INCREMENT_AND_WRAP :: VkStencilOp pattern VK_STENCIL_OP_DECREMENT_AND_WRAP :: VkStencilOp type VkStencilFaceFlagBits = VkStencilFaceBitmask FlagBit type VkStencilFaceFlags = VkStencilFaceBitmask FlagMask -- | type = enum -- -- VkVertexInputRate registry at www.khronos.org newtype VkVertexInputRate VkVertexInputRate :: Int32 -> VkVertexInputRate pattern VK_VERTEX_INPUT_RATE_VERTEX :: VkVertexInputRate pattern VK_VERTEX_INPUT_RATE_INSTANCE :: VkVertexInputRate -- |
-- typedef struct VkComputePipelineCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkPipelineCreateFlags flags;
-- VkPipelineShaderStageCreateInfo stage;
-- VkPipelineLayout layout;
-- VkPipeline basePipelineHandle;
-- int32_t basePipelineIndex;
-- } VkComputePipelineCreateInfo;
--
--
-- VkComputePipelineCreateInfo registry at www.khronos.org
type VkComputePipelineCreateInfo = VkStruct VkComputePipelineCreateInfo'
-- |
-- typedef struct VkRect2D {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- } VkRect2D;
--
--
-- VkRect2D registry at www.khronos.org
type VkRect2D = VkStruct VkRect2D'
-- |
-- typedef struct VkRectLayerKHR {
-- VkOffset2D offset;
-- VkExtent2D extent;
-- uint32_t layer;
-- } VkRectLayerKHR;
--
--
-- VkRectLayerKHR registry at www.khronos.org
type VkRectLayerKHR = VkStruct VkRectLayerKHR'
-- |
-- typedef struct VkSpecializationInfo {
-- uint32_t mapEntryCount;
-- const VkSpecializationMapEntry* pMapEntries;
-- size_t dataSize;
-- const void* pData;
-- } VkSpecializationInfo;
--
--
-- VkSpecializationInfo registry at www.khronos.org
type VkSpecializationInfo = VkStruct VkSpecializationInfo'
-- |
-- typedef struct VkSpecializationMapEntry {
-- uint32_t constantID;
-- uint32_t offset;
-- size_t size;
-- } VkSpecializationMapEntry;
--
--
-- VkSpecializationMapEntry registry at www.khronos.org
type VkSpecializationMapEntry = VkStruct VkSpecializationMapEntry'
-- |
-- typedef struct VkStencilOpState {
-- VkStencilOp failOp;
-- VkStencilOp passOp;
-- VkStencilOp depthFailOp;
-- VkCompareOp compareOp;
-- uint32_t compareMask;
-- uint32_t writeMask;
-- uint32_t reference;
-- } VkStencilOpState;
--
--
-- VkStencilOpState registry at www.khronos.org
type VkStencilOpState = VkStruct VkStencilOpState'
-- |
-- typedef struct VkVertexInputAttributeDescription {
-- uint32_t location;
-- uint32_t binding;
-- VkFormat format;
-- uint32_t offset;
-- } VkVertexInputAttributeDescription;
--
--
-- VkVertexInputAttributeDescription registry at www.khronos.org
type VkVertexInputAttributeDescription = VkStruct VkVertexInputAttributeDescription'
-- |
-- typedef struct VkVertexInputBindingDescription {
-- uint32_t binding;
-- uint32_t stride;
-- VkVertexInputRate inputRate;
-- } VkVertexInputBindingDescription;
--
--
-- VkVertexInputBindingDescription registry at www.khronos.org
type VkVertexInputBindingDescription = VkStruct VkVertexInputBindingDescription'
-- |
-- typedef struct VkVertexInputBindingDivisorDescriptionEXT {
-- uint32_t binding;
-- uint32_t divisor;
-- } VkVertexInputBindingDivisorDescriptionEXT;
--
--
-- VkVertexInputBindingDivisorDescriptionEXT registry at
-- www.khronos.org
type VkVertexInputBindingDivisorDescriptionEXT = VkStruct VkVertexInputBindingDivisorDescriptionEXT'
-- |
-- typedef struct VkViewport {
-- float x;
-- float y;
-- float width;
-- float height;
-- float minDepth;
-- float maxDepth;
-- } VkViewport;
--
--
-- VkViewport registry at www.khronos.org
type VkViewport = VkStruct VkViewport'
-- |
-- typedef struct VkViewportSwizzleNV {
-- VkViewportCoordinateSwizzleNV x;
-- VkViewportCoordinateSwizzleNV y;
-- VkViewportCoordinateSwizzleNV z;
-- VkViewportCoordinateSwizzleNV w;
-- } VkViewportSwizzleNV;
--
--
-- VkViewportSwizzleNV registry at www.khronos.org
type VkViewportSwizzleNV = VkStruct VkViewportSwizzleNV'
-- |
-- typedef struct VkViewportWScalingNV {
-- float xcoeff;
-- float ycoeff;
-- } VkViewportWScalingNV;
--
--
-- VkViewportWScalingNV registry at www.khronos.org
type VkViewportWScalingNV = VkStruct VkViewportWScalingNV'
type VkCreatePipelineLayout = "vkCreatePipelineLayout"
pattern VkCreatePipelineLayout :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreatePipelineLayout -- ( VkDevice device -- , const VkPipelineLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineLayout* pPipelineLayout -- ) ---- -- vkCreatePipelineLayout registry at www.khronos.org type HS_vkCreatePipelineLayout = VkDevice " device" -> Ptr VkPipelineLayoutCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkPipelineLayout " pPipelineLayout" -> IO VkResult type PFN_vkCreatePipelineLayout = FunPtr HS_vkCreatePipelineLayout -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineLayout -- ( VkDevice device -- , const VkPipelineLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineLayout* pPipelineLayout -- ) ---- -- vkCreatePipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineLayout <- vkGetDeviceProc @VkCreatePipelineLayout vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineLayout <- vkGetProc @VkCreatePipelineLayout ---- -- Note: vkCreatePipelineLayoutUnsafe and -- vkCreatePipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineLayout is an alias of -- vkCreatePipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineLayoutSafe. vkCreatePipelineLayout :: VkDevice -> Ptr VkPipelineLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineLayout -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineLayout -- ( VkDevice device -- , const VkPipelineLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineLayout* pPipelineLayout -- ) ---- -- vkCreatePipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineLayout <- vkGetDeviceProc @VkCreatePipelineLayout vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineLayout <- vkGetProc @VkCreatePipelineLayout ---- -- Note: vkCreatePipelineLayoutUnsafe and -- vkCreatePipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineLayout is an alias of -- vkCreatePipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineLayoutSafe. vkCreatePipelineLayoutUnsafe :: VkDevice -> Ptr VkPipelineLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineLayout -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreatePipelineLayout -- ( VkDevice device -- , const VkPipelineLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkPipelineLayout* pPipelineLayout -- ) ---- -- vkCreatePipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreatePipelineLayout <- vkGetDeviceProc @VkCreatePipelineLayout vkDevice ---- -- or less efficient: -- --
-- myCreatePipelineLayout <- vkGetProc @VkCreatePipelineLayout ---- -- Note: vkCreatePipelineLayoutUnsafe and -- vkCreatePipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreatePipelineLayout is an alias of -- vkCreatePipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreatePipelineLayoutSafe. vkCreatePipelineLayoutSafe :: VkDevice -> Ptr VkPipelineLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkPipelineLayout -> IO VkResult type VkDestroyPipelineLayout = "vkDestroyPipelineLayout" pattern VkDestroyPipelineLayout :: CString -- |
-- void vkDestroyPipelineLayout -- ( VkDevice device -- , VkPipelineLayout pipelineLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineLayout registry at www.khronos.org type HS_vkDestroyPipelineLayout = VkDevice " device" -> VkPipelineLayout " pipelineLayout" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyPipelineLayout = FunPtr HS_vkDestroyPipelineLayout -- |
-- void vkDestroyPipelineLayout -- ( VkDevice device -- , VkPipelineLayout pipelineLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineLayout <- vkGetDeviceProc @VkDestroyPipelineLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineLayout <- vkGetProc @VkDestroyPipelineLayout ---- -- Note: vkDestroyPipelineLayoutUnsafe and -- vkDestroyPipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineLayout is an alias of -- vkDestroyPipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineLayoutSafe. vkDestroyPipelineLayout :: VkDevice -> VkPipelineLayout -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipelineLayout -- ( VkDevice device -- , VkPipelineLayout pipelineLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineLayout <- vkGetDeviceProc @VkDestroyPipelineLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineLayout <- vkGetProc @VkDestroyPipelineLayout ---- -- Note: vkDestroyPipelineLayoutUnsafe and -- vkDestroyPipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineLayout is an alias of -- vkDestroyPipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineLayoutSafe. vkDestroyPipelineLayoutUnsafe :: VkDevice -> VkPipelineLayout -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyPipelineLayout -- ( VkDevice device -- , VkPipelineLayout pipelineLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyPipelineLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyPipelineLayout <- vkGetDeviceProc @VkDestroyPipelineLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyPipelineLayout <- vkGetProc @VkDestroyPipelineLayout ---- -- Note: vkDestroyPipelineLayoutUnsafe and -- vkDestroyPipelineLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyPipelineLayout is an alias of -- vkDestroyPipelineLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyPipelineLayoutSafe. vkDestroyPipelineLayoutSafe :: VkDevice -> VkPipelineLayout -> Ptr VkAllocationCallbacks -> IO () -- |
-- typedef struct VkPushConstantRange {
-- VkShaderStageFlags stageFlags;
-- uint32_t offset;
-- uint32_t size;
-- } VkPushConstantRange;
--
--
-- VkPushConstantRange registry at www.khronos.org
type VkPushConstantRange = VkStruct VkPushConstantRange'
type VkCreateSampler = "vkCreateSampler"
pattern VkCreateSampler :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY,
-- VK_ERROR_TOO_MANY_OBJECTS.
--
-- -- VkResult vkCreateSampler -- ( VkDevice device -- , const VkSamplerCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSampler* pSampler -- ) ---- -- vkCreateSampler registry at www.khronos.org type HS_vkCreateSampler = VkDevice " device" -> Ptr VkSamplerCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkSampler " pSampler" -> IO VkResult type PFN_vkCreateSampler = FunPtr HS_vkCreateSampler -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS. -- --
-- VkResult vkCreateSampler -- ( VkDevice device -- , const VkSamplerCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSampler* pSampler -- ) ---- -- vkCreateSampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSampler <- vkGetDeviceProc @VkCreateSampler vkDevice ---- -- or less efficient: -- --
-- myCreateSampler <- vkGetProc @VkCreateSampler ---- -- Note: vkCreateSamplerUnsafe and -- vkCreateSamplerSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateSampler -- is an alias of vkCreateSamplerUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerSafe. vkCreateSampler :: VkDevice -> Ptr VkSamplerCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSampler -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS. -- --
-- VkResult vkCreateSampler -- ( VkDevice device -- , const VkSamplerCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSampler* pSampler -- ) ---- -- vkCreateSampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSampler <- vkGetDeviceProc @VkCreateSampler vkDevice ---- -- or less efficient: -- --
-- myCreateSampler <- vkGetProc @VkCreateSampler ---- -- Note: vkCreateSamplerUnsafe and -- vkCreateSamplerSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateSampler -- is an alias of vkCreateSamplerUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerSafe. vkCreateSamplerUnsafe :: VkDevice -> Ptr VkSamplerCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSampler -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_TOO_MANY_OBJECTS. -- --
-- VkResult vkCreateSampler -- ( VkDevice device -- , const VkSamplerCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkSampler* pSampler -- ) ---- -- vkCreateSampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateSampler <- vkGetDeviceProc @VkCreateSampler vkDevice ---- -- or less efficient: -- --
-- myCreateSampler <- vkGetProc @VkCreateSampler ---- -- Note: vkCreateSamplerUnsafe and -- vkCreateSamplerSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCreateSampler -- is an alias of vkCreateSamplerUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateSamplerSafe. vkCreateSamplerSafe :: VkDevice -> Ptr VkSamplerCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkSampler -> IO VkResult type VkDestroySampler = "vkDestroySampler" pattern VkDestroySampler :: CString -- |
-- void vkDestroySampler -- ( VkDevice device -- , VkSampler sampler -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySampler registry at www.khronos.org type HS_vkDestroySampler = VkDevice " device" -> VkSampler " sampler" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroySampler = FunPtr HS_vkDestroySampler -- |
-- void vkDestroySampler -- ( VkDevice device -- , VkSampler sampler -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySampler <- vkGetDeviceProc @VkDestroySampler vkDevice ---- -- or less efficient: -- --
-- myDestroySampler <- vkGetProc @VkDestroySampler ---- -- Note: vkDestroySamplerUnsafe and -- vkDestroySamplerSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySampler is an alias of -- vkDestroySamplerUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroySamplerSafe. vkDestroySampler :: VkDevice -> VkSampler -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySampler -- ( VkDevice device -- , VkSampler sampler -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySampler <- vkGetDeviceProc @VkDestroySampler vkDevice ---- -- or less efficient: -- --
-- myDestroySampler <- vkGetProc @VkDestroySampler ---- -- Note: vkDestroySamplerUnsafe and -- vkDestroySamplerSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySampler is an alias of -- vkDestroySamplerUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroySamplerSafe. vkDestroySamplerUnsafe :: VkDevice -> VkSampler -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroySampler -- ( VkDevice device -- , VkSampler sampler -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroySampler registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroySampler <- vkGetDeviceProc @VkDestroySampler vkDevice ---- -- or less efficient: -- --
-- myDestroySampler <- vkGetProc @VkDestroySampler ---- -- Note: vkDestroySamplerUnsafe and -- vkDestroySamplerSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroySampler is an alias of -- vkDestroySamplerUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkDestroySamplerSafe. vkDestroySamplerSafe :: VkDevice -> VkSampler -> Ptr VkAllocationCallbacks -> IO () -- | type = enum -- -- VkBorderColor registry at www.khronos.org newtype VkBorderColor VkBorderColor :: Int32 -> VkBorderColor pattern VK_BORDER_COLOR_FLOAT_TRANSPARENT_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_INT_TRANSPARENT_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_FLOAT_OPAQUE_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_INT_OPAQUE_BLACK :: VkBorderColor pattern VK_BORDER_COLOR_FLOAT_OPAQUE_WHITE :: VkBorderColor pattern VK_BORDER_COLOR_INT_OPAQUE_WHITE :: VkBorderColor -- | type = enum -- -- VkFilter registry at www.khronos.org newtype VkFilter VkFilter :: Int32 -> VkFilter pattern VK_FILTER_NEAREST :: VkFilter pattern VK_FILTER_LINEAR :: VkFilter -- | type = enum -- -- VkSamplerAddressMode registry at www.khronos.org newtype VkSamplerAddressMode VkSamplerAddressMode :: Int32 -> VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE :: VkSamplerAddressMode pattern VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER :: VkSamplerAddressMode -- | type = enum -- -- VkSamplerMipmapMode registry at www.khronos.org newtype VkSamplerMipmapMode VkSamplerMipmapMode :: Int32 -> VkSamplerMipmapMode -- | Choose nearest mip level pattern VK_SAMPLER_MIPMAP_MODE_NEAREST :: VkSamplerMipmapMode -- | Linear filter between mip levels pattern VK_SAMPLER_MIPMAP_MODE_LINEAR :: VkSamplerMipmapMode -- | type = enum -- -- VkSamplerReductionModeEXT registry at www.khronos.org newtype VkSamplerReductionModeEXT VkSamplerReductionModeEXT :: Int32 -> VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_WEIGHTED_AVERAGE_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MIN_EXT :: VkSamplerReductionModeEXT pattern VK_SAMPLER_REDUCTION_MODE_MAX_EXT :: VkSamplerReductionModeEXT -- | type = enum -- -- VkSamplerYcbcrModelConversion registry at www.khronos.org newtype VkSamplerYcbcrModelConversion VkSamplerYcbcrModelConversion :: Int32 -> VkSamplerYcbcrModelConversion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_RGB_IDENTITY :: VkSamplerYcbcrModelConversion -- | just range expansion pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_IDENTITY :: VkSamplerYcbcrModelConversion -- | aka HD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_709 :: VkSamplerYcbcrModelConversion -- | aka SD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_601 :: VkSamplerYcbcrModelConversion -- | aka UHD YUV pattern VK_SAMPLER_YCBCR_MODEL_CONVERSION_YCBCR_2020 :: VkSamplerYcbcrModelConversion -- | type = enum -- -- VkSamplerYcbcrRange registry at www.khronos.org newtype VkSamplerYcbcrRange VkSamplerYcbcrRange :: Int32 -> VkSamplerYcbcrRange -- | Luma 0..1 maps to 0..255, chroma -0.5..0.5 to 1..255 (clamped) pattern VK_SAMPLER_YCBCR_RANGE_ITU_FULL :: VkSamplerYcbcrRange -- | Luma 0..1 maps to 16..235, chroma -0.5..0.5 to 16..240 pattern VK_SAMPLER_YCBCR_RANGE_ITU_NARROW :: VkSamplerYcbcrRange newtype VkSamplerCreateFlagBits VkSamplerCreateFlagBits :: VkFlags -> VkSamplerCreateFlagBits newtype VkSamplerYcbcrModelConversionKHR VkSamplerYcbcrModelConversionKHR :: VkFlags -> VkSamplerYcbcrModelConversionKHR newtype VkSamplerYcbcrRangeKHR VkSamplerYcbcrRangeKHR :: VkFlags -> VkSamplerYcbcrRangeKHR -- |
-- typedef struct VkSamplerCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerCreateFlags flags;
-- VkFilter magFilter;
-- VkFilter minFilter;
-- VkSamplerMipmapMode mipmapMode;
-- VkSamplerAddressMode addressModeU;
-- VkSamplerAddressMode addressModeV;
-- VkSamplerAddressMode addressModeW;
-- float mipLodBias;
-- VkBool32 anisotropyEnable;
-- float maxAnisotropy;
-- VkBool32 compareEnable;
-- VkCompareOp compareOp;
-- float minLod;
-- float maxLod;
-- VkBorderColor borderColor;
-- VkBool32 unnormalizedCoordinates;
-- } VkSamplerCreateInfo;
--
--
-- VkSamplerCreateInfo registry at www.khronos.org
type VkSamplerCreateInfo = VkStruct VkSamplerCreateInfo'
-- |
-- typedef struct VkSamplerReductionModeCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerReductionModeEXT reductionMode;
-- } VkSamplerReductionModeCreateInfoEXT;
--
--
-- VkSamplerReductionModeCreateInfoEXT registry at www.khronos.org
type VkSamplerReductionModeCreateInfoEXT = VkStruct VkSamplerReductionModeCreateInfoEXT'
-- |
-- typedef struct VkSamplerYcbcrConversionCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFormat format;
-- VkSamplerYcbcrModelConversion ycbcrModel;
-- VkSamplerYcbcrRange ycbcrRange;
-- VkComponentMapping components;
-- VkChromaLocation xChromaOffset;
-- VkChromaLocation yChromaOffset;
-- VkFilter chromaFilter;
-- VkBool32 forceExplicitReconstruction;
-- } VkSamplerYcbcrConversionCreateInfo;
--
--
-- VkSamplerYcbcrConversionCreateInfo registry at www.khronos.org
type VkSamplerYcbcrConversionCreateInfo = VkStruct VkSamplerYcbcrConversionCreateInfo'
-- | Alias for VkSamplerYcbcrConversionCreateInfo
type VkSamplerYcbcrConversionCreateInfoKHR = VkSamplerYcbcrConversionCreateInfo
-- |
-- typedef struct VkSamplerYcbcrConversionImageFormatProperties {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t combinedImageSamplerDescriptorCount;
-- } VkSamplerYcbcrConversionImageFormatProperties;
--
--
-- VkSamplerYcbcrConversionImageFormatProperties registry at
-- www.khronos.org
type VkSamplerYcbcrConversionImageFormatProperties = VkStruct VkSamplerYcbcrConversionImageFormatProperties'
-- | Alias for VkSamplerYcbcrConversionImageFormatProperties
type VkSamplerYcbcrConversionImageFormatPropertiesKHR = VkSamplerYcbcrConversionImageFormatProperties
-- |
-- typedef struct VkSamplerYcbcrConversionInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkSamplerYcbcrConversion conversion;
-- } VkSamplerYcbcrConversionInfo;
--
--
-- VkSamplerYcbcrConversionInfo registry at www.khronos.org
type VkSamplerYcbcrConversionInfo = VkStruct VkSamplerYcbcrConversionInfo'
-- | Alias for VkSamplerYcbcrConversionInfo
type VkSamplerYcbcrConversionInfoKHR = VkSamplerYcbcrConversionInfo
type VkCreateDescriptorSetLayout = "vkCreateDescriptorSetLayout"
pattern VkCreateDescriptorSetLayout :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateDescriptorSetLayout -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorSetLayout* pSetLayout -- ) ---- -- vkCreateDescriptorSetLayout registry at www.khronos.org type HS_vkCreateDescriptorSetLayout = VkDevice " device" -> Ptr VkDescriptorSetLayoutCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDescriptorSetLayout " pSetLayout" -> IO VkResult type PFN_vkCreateDescriptorSetLayout = FunPtr HS_vkCreateDescriptorSetLayout -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorSetLayout -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorSetLayout* pSetLayout -- ) ---- -- vkCreateDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorSetLayout <- vkGetDeviceProc @VkCreateDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorSetLayout <- vkGetProc @VkCreateDescriptorSetLayout ---- -- Note: vkCreateDescriptorSetLayoutUnsafe and -- vkCreateDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorSetLayout is an alias of -- vkCreateDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorSetLayoutSafe. vkCreateDescriptorSetLayout :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorSetLayout -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorSetLayout -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorSetLayout* pSetLayout -- ) ---- -- vkCreateDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorSetLayout <- vkGetDeviceProc @VkCreateDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorSetLayout <- vkGetProc @VkCreateDescriptorSetLayout ---- -- Note: vkCreateDescriptorSetLayoutUnsafe and -- vkCreateDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorSetLayout is an alias of -- vkCreateDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorSetLayoutSafe. vkCreateDescriptorSetLayoutUnsafe :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorSetLayout -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateDescriptorSetLayout -- ( VkDevice device -- , const VkDescriptorSetLayoutCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorSetLayout* pSetLayout -- ) ---- -- vkCreateDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorSetLayout <- vkGetDeviceProc @VkCreateDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorSetLayout <- vkGetProc @VkCreateDescriptorSetLayout ---- -- Note: vkCreateDescriptorSetLayoutUnsafe and -- vkCreateDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorSetLayout is an alias of -- vkCreateDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorSetLayoutSafe. vkCreateDescriptorSetLayoutSafe :: VkDevice -> Ptr VkDescriptorSetLayoutCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorSetLayout -> IO VkResult type VkDestroyDescriptorSetLayout = "vkDestroyDescriptorSetLayout" pattern VkDestroyDescriptorSetLayout :: CString -- |
-- void vkDestroyDescriptorSetLayout -- ( VkDevice device -- , VkDescriptorSetLayout descriptorSetLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorSetLayout registry at www.khronos.org type HS_vkDestroyDescriptorSetLayout = VkDevice " device" -> VkDescriptorSetLayout " descriptorSetLayout" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDescriptorSetLayout = FunPtr HS_vkDestroyDescriptorSetLayout -- |
-- void vkDestroyDescriptorSetLayout -- ( VkDevice device -- , VkDescriptorSetLayout descriptorSetLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorSetLayout <- vkGetDeviceProc @VkDestroyDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorSetLayout <- vkGetProc @VkDestroyDescriptorSetLayout ---- -- Note: vkDestroyDescriptorSetLayoutUnsafe and -- vkDestroyDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorSetLayout is an alias of -- vkDestroyDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorSetLayoutSafe. vkDestroyDescriptorSetLayout :: VkDevice -> VkDescriptorSetLayout -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorSetLayout -- ( VkDevice device -- , VkDescriptorSetLayout descriptorSetLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorSetLayout <- vkGetDeviceProc @VkDestroyDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorSetLayout <- vkGetProc @VkDestroyDescriptorSetLayout ---- -- Note: vkDestroyDescriptorSetLayoutUnsafe and -- vkDestroyDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorSetLayout is an alias of -- vkDestroyDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorSetLayoutSafe. vkDestroyDescriptorSetLayoutUnsafe :: VkDevice -> VkDescriptorSetLayout -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorSetLayout -- ( VkDevice device -- , VkDescriptorSetLayout descriptorSetLayout -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorSetLayout registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorSetLayout <- vkGetDeviceProc @VkDestroyDescriptorSetLayout vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorSetLayout <- vkGetProc @VkDestroyDescriptorSetLayout ---- -- Note: vkDestroyDescriptorSetLayoutUnsafe and -- vkDestroyDescriptorSetLayoutSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorSetLayout is an alias of -- vkDestroyDescriptorSetLayoutUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorSetLayoutSafe. vkDestroyDescriptorSetLayoutSafe :: VkDevice -> VkDescriptorSetLayout -> Ptr VkAllocationCallbacks -> IO () type VkCreateDescriptorPool = "vkCreateDescriptorPool" pattern VkCreateDescriptorPool :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FRAGMENTATION_EXT. -- --
-- VkResult vkCreateDescriptorPool -- ( VkDevice device -- , const VkDescriptorPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorPool* pDescriptorPool -- ) ---- -- vkCreateDescriptorPool registry at www.khronos.org type HS_vkCreateDescriptorPool = VkDevice " device" -> Ptr VkDescriptorPoolCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkDescriptorPool " pDescriptorPool" -> IO VkResult type PFN_vkCreateDescriptorPool = FunPtr HS_vkCreateDescriptorPool -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FRAGMENTATION_EXT. -- --
-- VkResult vkCreateDescriptorPool -- ( VkDevice device -- , const VkDescriptorPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorPool* pDescriptorPool -- ) ---- -- vkCreateDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorPool <- vkGetDeviceProc @VkCreateDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorPool <- vkGetProc @VkCreateDescriptorPool ---- -- Note: vkCreateDescriptorPoolUnsafe and -- vkCreateDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorPool is an alias of -- vkCreateDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorPoolSafe. vkCreateDescriptorPool :: VkDevice -> Ptr VkDescriptorPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FRAGMENTATION_EXT. -- --
-- VkResult vkCreateDescriptorPool -- ( VkDevice device -- , const VkDescriptorPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorPool* pDescriptorPool -- ) ---- -- vkCreateDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorPool <- vkGetDeviceProc @VkCreateDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorPool <- vkGetProc @VkCreateDescriptorPool ---- -- Note: vkCreateDescriptorPoolUnsafe and -- vkCreateDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorPool is an alias of -- vkCreateDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorPoolSafe. vkCreateDescriptorPoolUnsafe :: VkDevice -> Ptr VkDescriptorPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_FRAGMENTATION_EXT. -- --
-- VkResult vkCreateDescriptorPool -- ( VkDevice device -- , const VkDescriptorPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkDescriptorPool* pDescriptorPool -- ) ---- -- vkCreateDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateDescriptorPool <- vkGetDeviceProc @VkCreateDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myCreateDescriptorPool <- vkGetProc @VkCreateDescriptorPool ---- -- Note: vkCreateDescriptorPoolUnsafe and -- vkCreateDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateDescriptorPool is an alias of -- vkCreateDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateDescriptorPoolSafe. vkCreateDescriptorPoolSafe :: VkDevice -> Ptr VkDescriptorPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkDescriptorPool -> IO VkResult type VkDestroyDescriptorPool = "vkDestroyDescriptorPool" pattern VkDestroyDescriptorPool :: CString -- |
-- void vkDestroyDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorPool registry at www.khronos.org type HS_vkDestroyDescriptorPool = VkDevice " device" -> VkDescriptorPool " descriptorPool" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyDescriptorPool = FunPtr HS_vkDestroyDescriptorPool -- |
-- void vkDestroyDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorPool <- vkGetDeviceProc @VkDestroyDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorPool <- vkGetProc @VkDestroyDescriptorPool ---- -- Note: vkDestroyDescriptorPoolUnsafe and -- vkDestroyDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorPool is an alias of -- vkDestroyDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorPoolSafe. vkDestroyDescriptorPool :: VkDevice -> VkDescriptorPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorPool <- vkGetDeviceProc @VkDestroyDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorPool <- vkGetProc @VkDestroyDescriptorPool ---- -- Note: vkDestroyDescriptorPoolUnsafe and -- vkDestroyDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorPool is an alias of -- vkDestroyDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorPoolSafe. vkDestroyDescriptorPoolUnsafe :: VkDevice -> VkDescriptorPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyDescriptorPool <- vkGetDeviceProc @VkDestroyDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myDestroyDescriptorPool <- vkGetProc @VkDestroyDescriptorPool ---- -- Note: vkDestroyDescriptorPoolUnsafe and -- vkDestroyDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyDescriptorPool is an alias of -- vkDestroyDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyDescriptorPoolSafe. vkDestroyDescriptorPoolSafe :: VkDevice -> VkDescriptorPool -> Ptr VkAllocationCallbacks -> IO () type VkResetDescriptorPool = "vkResetDescriptorPool" pattern VkResetDescriptorPool :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , VkDescriptorPoolResetFlags flags -- ) ---- -- vkResetDescriptorPool registry at www.khronos.org type HS_vkResetDescriptorPool = VkDevice " device" -> VkDescriptorPool " descriptorPool" -> VkDescriptorPoolResetFlags " flags" -> IO VkResult type PFN_vkResetDescriptorPool = FunPtr HS_vkResetDescriptorPool -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , VkDescriptorPoolResetFlags flags -- ) ---- -- vkResetDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetDescriptorPool <- vkGetDeviceProc @VkResetDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myResetDescriptorPool <- vkGetProc @VkResetDescriptorPool ---- -- Note: vkResetDescriptorPoolUnsafe and -- vkResetDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetDescriptorPool is an alias of -- vkResetDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetDescriptorPoolSafe. vkResetDescriptorPool :: VkDevice -> VkDescriptorPool -> VkDescriptorPoolResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , VkDescriptorPoolResetFlags flags -- ) ---- -- vkResetDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetDescriptorPool <- vkGetDeviceProc @VkResetDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myResetDescriptorPool <- vkGetProc @VkResetDescriptorPool ---- -- Note: vkResetDescriptorPoolUnsafe and -- vkResetDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetDescriptorPool is an alias of -- vkResetDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetDescriptorPoolSafe. vkResetDescriptorPoolUnsafe :: VkDevice -> VkDescriptorPool -> VkDescriptorPoolResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetDescriptorPool -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , VkDescriptorPoolResetFlags flags -- ) ---- -- vkResetDescriptorPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetDescriptorPool <- vkGetDeviceProc @VkResetDescriptorPool vkDevice ---- -- or less efficient: -- --
-- myResetDescriptorPool <- vkGetProc @VkResetDescriptorPool ---- -- Note: vkResetDescriptorPoolUnsafe and -- vkResetDescriptorPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetDescriptorPool is an alias of -- vkResetDescriptorPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetDescriptorPoolSafe. vkResetDescriptorPoolSafe :: VkDevice -> VkDescriptorPool -> VkDescriptorPoolResetFlags -> IO VkResult type VkAllocateDescriptorSets = "vkAllocateDescriptorSets" pattern VkAllocateDescriptorSets :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_FRAGMENTED_POOL, -- VK_ERROR_OUT_OF_POOL_MEMORY. -- --
-- VkResult vkAllocateDescriptorSets -- ( VkDevice device -- , const VkDescriptorSetAllocateInfo* pAllocateInfo -- , VkDescriptorSet* pDescriptorSets -- ) ---- -- vkAllocateDescriptorSets registry at www.khronos.org type HS_vkAllocateDescriptorSets = VkDevice " device" -> Ptr VkDescriptorSetAllocateInfo " pAllocateInfo" -> Ptr VkDescriptorSet " pDescriptorSets" -> IO VkResult type PFN_vkAllocateDescriptorSets = FunPtr HS_vkAllocateDescriptorSets -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_FRAGMENTED_POOL, -- VK_ERROR_OUT_OF_POOL_MEMORY. -- --
-- VkResult vkAllocateDescriptorSets -- ( VkDevice device -- , const VkDescriptorSetAllocateInfo* pAllocateInfo -- , VkDescriptorSet* pDescriptorSets -- ) ---- -- vkAllocateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateDescriptorSets <- vkGetDeviceProc @VkAllocateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myAllocateDescriptorSets <- vkGetProc @VkAllocateDescriptorSets ---- -- Note: vkAllocateDescriptorSetsUnsafe and -- vkAllocateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateDescriptorSets is an alias of -- vkAllocateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateDescriptorSetsSafe. vkAllocateDescriptorSets :: VkDevice -> Ptr VkDescriptorSetAllocateInfo -> Ptr VkDescriptorSet -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_FRAGMENTED_POOL, -- VK_ERROR_OUT_OF_POOL_MEMORY. -- --
-- VkResult vkAllocateDescriptorSets -- ( VkDevice device -- , const VkDescriptorSetAllocateInfo* pAllocateInfo -- , VkDescriptorSet* pDescriptorSets -- ) ---- -- vkAllocateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateDescriptorSets <- vkGetDeviceProc @VkAllocateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myAllocateDescriptorSets <- vkGetProc @VkAllocateDescriptorSets ---- -- Note: vkAllocateDescriptorSetsUnsafe and -- vkAllocateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateDescriptorSets is an alias of -- vkAllocateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateDescriptorSetsSafe. vkAllocateDescriptorSetsUnsafe :: VkDevice -> Ptr VkDescriptorSetAllocateInfo -> Ptr VkDescriptorSet -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, VK_ERROR_FRAGMENTED_POOL, -- VK_ERROR_OUT_OF_POOL_MEMORY. -- --
-- VkResult vkAllocateDescriptorSets -- ( VkDevice device -- , const VkDescriptorSetAllocateInfo* pAllocateInfo -- , VkDescriptorSet* pDescriptorSets -- ) ---- -- vkAllocateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateDescriptorSets <- vkGetDeviceProc @VkAllocateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myAllocateDescriptorSets <- vkGetProc @VkAllocateDescriptorSets ---- -- Note: vkAllocateDescriptorSetsUnsafe and -- vkAllocateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateDescriptorSets is an alias of -- vkAllocateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateDescriptorSetsSafe. vkAllocateDescriptorSetsSafe :: VkDevice -> Ptr VkDescriptorSetAllocateInfo -> Ptr VkDescriptorSet -> IO VkResult type VkFreeDescriptorSets = "vkFreeDescriptorSets" pattern VkFreeDescriptorSets :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFreeDescriptorSets -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- ) ---- -- vkFreeDescriptorSets registry at www.khronos.org type HS_vkFreeDescriptorSets = VkDevice " device" -> VkDescriptorPool " descriptorPool" -> Word32 " descriptorSetCount" -> Ptr VkDescriptorSet " pDescriptorSets" -> IO VkResult type PFN_vkFreeDescriptorSets = FunPtr HS_vkFreeDescriptorSets -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFreeDescriptorSets -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- ) ---- -- vkFreeDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeDescriptorSets <- vkGetDeviceProc @VkFreeDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myFreeDescriptorSets <- vkGetProc @VkFreeDescriptorSets ---- -- Note: vkFreeDescriptorSetsUnsafe and -- vkFreeDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeDescriptorSets is an alias of -- vkFreeDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeDescriptorSetsSafe. vkFreeDescriptorSets :: VkDevice -> VkDescriptorPool -> Word32 -> Ptr VkDescriptorSet -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFreeDescriptorSets -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- ) ---- -- vkFreeDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeDescriptorSets <- vkGetDeviceProc @VkFreeDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myFreeDescriptorSets <- vkGetProc @VkFreeDescriptorSets ---- -- Note: vkFreeDescriptorSetsUnsafe and -- vkFreeDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeDescriptorSets is an alias of -- vkFreeDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeDescriptorSetsSafe. vkFreeDescriptorSetsUnsafe :: VkDevice -> VkDescriptorPool -> Word32 -> Ptr VkDescriptorSet -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkFreeDescriptorSets -- ( VkDevice device -- , VkDescriptorPool descriptorPool -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- ) ---- -- vkFreeDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeDescriptorSets <- vkGetDeviceProc @VkFreeDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myFreeDescriptorSets <- vkGetProc @VkFreeDescriptorSets ---- -- Note: vkFreeDescriptorSetsUnsafe and -- vkFreeDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeDescriptorSets is an alias of -- vkFreeDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeDescriptorSetsSafe. vkFreeDescriptorSetsSafe :: VkDevice -> VkDescriptorPool -> Word32 -> Ptr VkDescriptorSet -> IO VkResult type VkUpdateDescriptorSets = "vkUpdateDescriptorSets" pattern VkUpdateDescriptorSets :: CString -- |
-- void vkUpdateDescriptorSets -- ( VkDevice device -- , uint32_t descriptorWriteCount -- , const VkWriteDescriptorSet* pDescriptorWrites -- , uint32_t descriptorCopyCount -- , const VkCopyDescriptorSet* pDescriptorCopies -- ) ---- -- vkUpdateDescriptorSets registry at www.khronos.org type HS_vkUpdateDescriptorSets = VkDevice " device" -> Word32 " descriptorWriteCount" -> Ptr VkWriteDescriptorSet " pDescriptorWrites" -> Word32 " descriptorCopyCount" -> Ptr VkCopyDescriptorSet " pDescriptorCopies" -> IO () type PFN_vkUpdateDescriptorSets = FunPtr HS_vkUpdateDescriptorSets -- |
-- void vkUpdateDescriptorSets -- ( VkDevice device -- , uint32_t descriptorWriteCount -- , const VkWriteDescriptorSet* pDescriptorWrites -- , uint32_t descriptorCopyCount -- , const VkCopyDescriptorSet* pDescriptorCopies -- ) ---- -- vkUpdateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSets <- vkGetDeviceProc @VkUpdateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSets <- vkGetProc @VkUpdateDescriptorSets ---- -- Note: vkUpdateDescriptorSetsUnsafe and -- vkUpdateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkUpdateDescriptorSets is an alias of -- vkUpdateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetsSafe. vkUpdateDescriptorSets :: VkDevice -> Word32 -> Ptr VkWriteDescriptorSet -> Word32 -> Ptr VkCopyDescriptorSet -> IO () -- |
-- void vkUpdateDescriptorSets -- ( VkDevice device -- , uint32_t descriptorWriteCount -- , const VkWriteDescriptorSet* pDescriptorWrites -- , uint32_t descriptorCopyCount -- , const VkCopyDescriptorSet* pDescriptorCopies -- ) ---- -- vkUpdateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSets <- vkGetDeviceProc @VkUpdateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSets <- vkGetProc @VkUpdateDescriptorSets ---- -- Note: vkUpdateDescriptorSetsUnsafe and -- vkUpdateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkUpdateDescriptorSets is an alias of -- vkUpdateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetsSafe. vkUpdateDescriptorSetsUnsafe :: VkDevice -> Word32 -> Ptr VkWriteDescriptorSet -> Word32 -> Ptr VkCopyDescriptorSet -> IO () -- |
-- void vkUpdateDescriptorSets -- ( VkDevice device -- , uint32_t descriptorWriteCount -- , const VkWriteDescriptorSet* pDescriptorWrites -- , uint32_t descriptorCopyCount -- , const VkCopyDescriptorSet* pDescriptorCopies -- ) ---- -- vkUpdateDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myUpdateDescriptorSets <- vkGetDeviceProc @VkUpdateDescriptorSets vkDevice ---- -- or less efficient: -- --
-- myUpdateDescriptorSets <- vkGetProc @VkUpdateDescriptorSets ---- -- Note: vkUpdateDescriptorSetsUnsafe and -- vkUpdateDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkUpdateDescriptorSets is an alias of -- vkUpdateDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkUpdateDescriptorSetsSafe. vkUpdateDescriptorSetsSafe :: VkDevice -> Word32 -> Ptr VkWriteDescriptorSet -> Word32 -> Ptr VkCopyDescriptorSet -> IO () newtype VkDescriptorBindingBitmaskEXT (a :: FlagType) VkDescriptorBindingBitmaskEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT pattern VkDescriptorBindingFlagBitsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagBit pattern VkDescriptorBindingFlagsEXT :: VkFlags -> VkDescriptorBindingBitmaskEXT FlagMask -- | bitpos = 0 pattern VK_DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 1 pattern VK_DESCRIPTOR_BINDING_UPDATE_UNUSED_WHILE_PENDING_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 2 pattern VK_DESCRIPTOR_BINDING_PARTIALLY_BOUND_BIT_EXT :: VkDescriptorBindingBitmaskEXT a -- | bitpos = 3 pattern VK_DESCRIPTOR_BINDING_VARIABLE_DESCRIPTOR_COUNT_BIT_EXT :: VkDescriptorBindingBitmaskEXT a newtype VkDescriptorPoolCreateBitmask (a :: FlagType) VkDescriptorPoolCreateBitmask :: VkFlags -> VkDescriptorPoolCreateBitmask pattern VkDescriptorPoolCreateFlagBits :: VkFlags -> VkDescriptorPoolCreateBitmask FlagBit pattern VkDescriptorPoolCreateFlags :: VkFlags -> VkDescriptorPoolCreateBitmask FlagMask -- | Descriptor sets may be freed individually -- -- bitpos = 0 pattern VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT :: VkDescriptorPoolCreateBitmask a -- | type = enum -- -- VkDescriptorType registry at www.khronos.org newtype VkDescriptorType VkDescriptorType :: Int32 -> VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_IMAGE :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC :: VkDescriptorType pattern VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT :: VkDescriptorType -- | type = enum -- -- VkDescriptorUpdateTemplateType registry at www.khronos.org newtype VkDescriptorUpdateTemplateType VkDescriptorUpdateTemplateType :: Int32 -> VkDescriptorUpdateTemplateType -- | Create descriptor update template for descriptor set updates pattern VK_DESCRIPTOR_UPDATE_TEMPLATE_TYPE_DESCRIPTOR_SET :: VkDescriptorUpdateTemplateType type VkDescriptorBindingFlagBitsEXT = VkDescriptorBindingBitmaskEXT FlagBit type VkDescriptorBindingFlagsEXT = VkDescriptorBindingBitmaskEXT FlagMask type VkDescriptorPoolCreateFlagBits = VkDescriptorPoolCreateBitmask FlagBit type VkDescriptorPoolCreateFlags = VkDescriptorPoolCreateBitmask FlagMask newtype VkDescriptorSetLayoutCreateBitmask (a :: FlagType) VkDescriptorSetLayoutCreateBitmask :: VkFlags -> VkDescriptorSetLayoutCreateBitmask pattern VkDescriptorSetLayoutCreateFlagBits :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagBit pattern VkDescriptorSetLayoutCreateFlags :: VkFlags -> VkDescriptorSetLayoutCreateBitmask FlagMask type VkDescriptorSetLayoutCreateFlagBits = VkDescriptorSetLayoutCreateBitmask FlagBit type VkDescriptorSetLayoutCreateFlags = VkDescriptorSetLayoutCreateBitmask FlagMask newtype VkDescriptorUpdateTemplateTypeKHR VkDescriptorUpdateTemplateTypeKHR :: VkFlags -> VkDescriptorUpdateTemplateTypeKHR -- |
-- typedef struct VkCopyDescriptorSet {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSet srcSet;
-- uint32_t srcBinding;
-- uint32_t srcArrayElement;
-- VkDescriptorSet dstSet;
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- } VkCopyDescriptorSet;
--
--
-- VkCopyDescriptorSet registry at www.khronos.org
type VkCopyDescriptorSet = VkStruct VkCopyDescriptorSet'
-- |
-- typedef struct VkDescriptorBufferInfo {
-- VkBuffer buffer;
-- VkDeviceSize offset;
-- VkDeviceSize range;
-- } VkDescriptorBufferInfo;
--
--
-- VkDescriptorBufferInfo registry at www.khronos.org
type VkDescriptorBufferInfo = VkStruct VkDescriptorBufferInfo'
-- |
-- typedef struct VkDescriptorImageInfo {
-- VkSampler sampler;
-- VkImageView imageView;
-- VkImageLayout imageLayout;
-- } VkDescriptorImageInfo;
--
--
-- VkDescriptorImageInfo registry at www.khronos.org
type VkDescriptorImageInfo = VkStruct VkDescriptorImageInfo'
-- |
-- typedef struct VkDescriptorPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPoolCreateFlags flags;
-- uint32_t maxSets;
-- uint32_t poolSizeCount;
-- const VkDescriptorPoolSize* pPoolSizes;
-- } VkDescriptorPoolCreateInfo;
--
--
-- VkDescriptorPoolCreateInfo registry at www.khronos.org
type VkDescriptorPoolCreateInfo = VkStruct VkDescriptorPoolCreateInfo'
-- |
-- typedef struct VkDescriptorPoolSize {
-- VkDescriptorType type;
-- uint32_t descriptorCount;
-- } VkDescriptorPoolSize;
--
--
-- VkDescriptorPoolSize registry at www.khronos.org
type VkDescriptorPoolSize = VkStruct VkDescriptorPoolSize'
-- |
-- typedef struct VkDescriptorSetAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorPool descriptorPool;
-- uint32_t descriptorSetCount;
-- const VkDescriptorSetLayout* pSetLayouts;
-- } VkDescriptorSetAllocateInfo;
--
--
-- VkDescriptorSetAllocateInfo registry at www.khronos.org
type VkDescriptorSetAllocateInfo = VkStruct VkDescriptorSetAllocateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutBinding {
-- uint32_t binding;
-- VkDescriptorType descriptorType;
-- uint32_t descriptorCount;
-- VkShaderStageFlags stageFlags;
-- const VkSampler* pImmutableSamplers;
-- } VkDescriptorSetLayoutBinding;
--
--
-- VkDescriptorSetLayoutBinding registry at www.khronos.org
type VkDescriptorSetLayoutBinding = VkStruct VkDescriptorSetLayoutBinding'
-- |
-- typedef struct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t bindingCount;
-- const VkDescriptorBindingFlagsEXT* pBindingFlags;
-- } VkDescriptorSetLayoutBindingFlagsCreateInfoEXT;
--
--
-- VkDescriptorSetLayoutBindingFlagsCreateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetLayoutBindingFlagsCreateInfoEXT = VkStruct VkDescriptorSetLayoutBindingFlagsCreateInfoEXT'
-- |
-- typedef struct VkDescriptorSetLayoutCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSetLayoutCreateFlags flags;
-- uint32_t bindingCount;
-- const VkDescriptorSetLayoutBinding* pBindings;
-- } VkDescriptorSetLayoutCreateInfo;
--
--
-- VkDescriptorSetLayoutCreateInfo registry at www.khronos.org
type VkDescriptorSetLayoutCreateInfo = VkStruct VkDescriptorSetLayoutCreateInfo'
-- |
-- typedef struct VkDescriptorSetLayoutSupport {
-- VkStructureType sType;
-- void* pNext;
-- VkBool32 supported;
-- } VkDescriptorSetLayoutSupport;
--
--
-- VkDescriptorSetLayoutSupport registry at www.khronos.org
type VkDescriptorSetLayoutSupport = VkStruct VkDescriptorSetLayoutSupport'
-- | Alias for VkDescriptorSetLayoutSupport
type VkDescriptorSetLayoutSupportKHR = VkDescriptorSetLayoutSupport
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t descriptorSetCount;
-- const uint32_t* pDescriptorCounts;
-- } VkDescriptorSetVariableDescriptorCountAllocateInfoEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountAllocateInfoEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountAllocateInfoEXT = VkStruct VkDescriptorSetVariableDescriptorCountAllocateInfoEXT'
-- |
-- typedef struct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT {
-- VkStructureType sType;
-- void* pNext;
-- uint32_t maxVariableDescriptorCount;
-- } VkDescriptorSetVariableDescriptorCountLayoutSupportEXT;
--
--
-- VkDescriptorSetVariableDescriptorCountLayoutSupportEXT registry at
-- www.khronos.org
type VkDescriptorSetVariableDescriptorCountLayoutSupportEXT = VkStruct VkDescriptorSetVariableDescriptorCountLayoutSupportEXT'
-- |
-- typedef struct VkDescriptorUpdateTemplateCreateInfo {
-- VkStructureType sType;
-- void* pNext;
-- VkDescriptorUpdateTemplateCreateFlags flags;
-- uint32_t descriptorUpdateEntryCount;
-- const VkDescriptorUpdateTemplateEntry* pDescriptorUpdateEntries;
-- VkDescriptorUpdateTemplateType templateType;
-- VkDescriptorSetLayout descriptorSetLayout;
-- VkPipelineBindPoint pipelineBindPoint;
-- VkPipelineLayoutpipelineLayout;
-- uint32_t set;
-- } VkDescriptorUpdateTemplateCreateInfo;
--
--
-- VkDescriptorUpdateTemplateCreateInfo registry at
-- www.khronos.org
type VkDescriptorUpdateTemplateCreateInfo = VkStruct VkDescriptorUpdateTemplateCreateInfo'
-- | Alias for VkDescriptorUpdateTemplateCreateInfo
type VkDescriptorUpdateTemplateCreateInfoKHR = VkDescriptorUpdateTemplateCreateInfo
-- |
-- typedef struct VkDescriptorUpdateTemplateEntry {
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- size_t offset;
-- size_t stride;
-- } VkDescriptorUpdateTemplateEntry;
--
--
-- VkDescriptorUpdateTemplateEntry registry at www.khronos.org
type VkDescriptorUpdateTemplateEntry = VkStruct VkDescriptorUpdateTemplateEntry'
-- | Alias for VkDescriptorUpdateTemplateEntry
type VkDescriptorUpdateTemplateEntryKHR = VkDescriptorUpdateTemplateEntry
-- |
-- typedef struct VkWriteDescriptorSet {
-- VkStructureType sType;
-- const void* pNext;
-- VkDescriptorSet dstSet;
-- uint32_t dstBinding;
-- uint32_t dstArrayElement;
-- uint32_t descriptorCount;
-- VkDescriptorType descriptorType;
-- const VkDescriptorImageInfo* pImageInfo;
-- const VkDescriptorBufferInfo* pBufferInfo;
-- const VkBufferView* pTexelBufferView;
-- } VkWriteDescriptorSet;
--
--
-- VkWriteDescriptorSet registry at www.khronos.org
type VkWriteDescriptorSet = VkStruct VkWriteDescriptorSet'
type VkCreateFramebuffer = "vkCreateFramebuffer"
pattern VkCreateFramebuffer :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateFramebuffer -- ( VkDevice device -- , const VkFramebufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFramebuffer* pFramebuffer -- ) ---- -- vkCreateFramebuffer registry at www.khronos.org type HS_vkCreateFramebuffer = VkDevice " device" -> Ptr VkFramebufferCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkFramebuffer " pFramebuffer" -> IO VkResult type PFN_vkCreateFramebuffer = FunPtr HS_vkCreateFramebuffer -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFramebuffer -- ( VkDevice device -- , const VkFramebufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFramebuffer* pFramebuffer -- ) ---- -- vkCreateFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFramebuffer <- vkGetDeviceProc @VkCreateFramebuffer vkDevice ---- -- or less efficient: -- --
-- myCreateFramebuffer <- vkGetProc @VkCreateFramebuffer ---- -- Note: vkCreateFramebufferUnsafe and -- vkCreateFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateFramebuffer is an alias of -- vkCreateFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFramebufferSafe. vkCreateFramebuffer :: VkDevice -> Ptr VkFramebufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFramebuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFramebuffer -- ( VkDevice device -- , const VkFramebufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFramebuffer* pFramebuffer -- ) ---- -- vkCreateFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFramebuffer <- vkGetDeviceProc @VkCreateFramebuffer vkDevice ---- -- or less efficient: -- --
-- myCreateFramebuffer <- vkGetProc @VkCreateFramebuffer ---- -- Note: vkCreateFramebufferUnsafe and -- vkCreateFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateFramebuffer is an alias of -- vkCreateFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFramebufferSafe. vkCreateFramebufferUnsafe :: VkDevice -> Ptr VkFramebufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFramebuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateFramebuffer -- ( VkDevice device -- , const VkFramebufferCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkFramebuffer* pFramebuffer -- ) ---- -- vkCreateFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateFramebuffer <- vkGetDeviceProc @VkCreateFramebuffer vkDevice ---- -- or less efficient: -- --
-- myCreateFramebuffer <- vkGetProc @VkCreateFramebuffer ---- -- Note: vkCreateFramebufferUnsafe and -- vkCreateFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateFramebuffer is an alias of -- vkCreateFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateFramebufferSafe. vkCreateFramebufferSafe :: VkDevice -> Ptr VkFramebufferCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkFramebuffer -> IO VkResult type VkDestroyFramebuffer = "vkDestroyFramebuffer" pattern VkDestroyFramebuffer :: CString -- |
-- void vkDestroyFramebuffer -- ( VkDevice device -- , VkFramebuffer framebuffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFramebuffer registry at www.khronos.org type HS_vkDestroyFramebuffer = VkDevice " device" -> VkFramebuffer " framebuffer" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyFramebuffer = FunPtr HS_vkDestroyFramebuffer -- |
-- void vkDestroyFramebuffer -- ( VkDevice device -- , VkFramebuffer framebuffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFramebuffer <- vkGetDeviceProc @VkDestroyFramebuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyFramebuffer <- vkGetProc @VkDestroyFramebuffer ---- -- Note: vkDestroyFramebufferUnsafe and -- vkDestroyFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyFramebuffer is an alias of -- vkDestroyFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFramebufferSafe. vkDestroyFramebuffer :: VkDevice -> VkFramebuffer -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyFramebuffer -- ( VkDevice device -- , VkFramebuffer framebuffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFramebuffer <- vkGetDeviceProc @VkDestroyFramebuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyFramebuffer <- vkGetProc @VkDestroyFramebuffer ---- -- Note: vkDestroyFramebufferUnsafe and -- vkDestroyFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyFramebuffer is an alias of -- vkDestroyFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFramebufferSafe. vkDestroyFramebufferUnsafe :: VkDevice -> VkFramebuffer -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyFramebuffer -- ( VkDevice device -- , VkFramebuffer framebuffer -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyFramebuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyFramebuffer <- vkGetDeviceProc @VkDestroyFramebuffer vkDevice ---- -- or less efficient: -- --
-- myDestroyFramebuffer <- vkGetProc @VkDestroyFramebuffer ---- -- Note: vkDestroyFramebufferUnsafe and -- vkDestroyFramebufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyFramebuffer is an alias of -- vkDestroyFramebufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyFramebufferSafe. vkDestroyFramebufferSafe :: VkDevice -> VkFramebuffer -> Ptr VkAllocationCallbacks -> IO () type VkCreateRenderPass = "vkCreateRenderPass" pattern VkCreateRenderPass :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateRenderPass -- ( VkDevice device -- , const VkRenderPassCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkRenderPass* pRenderPass -- ) ---- -- vkCreateRenderPass registry at www.khronos.org type HS_vkCreateRenderPass = VkDevice " device" -> Ptr VkRenderPassCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkRenderPass " pRenderPass" -> IO VkResult type PFN_vkCreateRenderPass = FunPtr HS_vkCreateRenderPass -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateRenderPass -- ( VkDevice device -- , const VkRenderPassCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkRenderPass* pRenderPass -- ) ---- -- vkCreateRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateRenderPass <- vkGetDeviceProc @VkCreateRenderPass vkDevice ---- -- or less efficient: -- --
-- myCreateRenderPass <- vkGetProc @VkCreateRenderPass ---- -- Note: vkCreateRenderPassUnsafe and -- vkCreateRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateRenderPass is an alias of -- vkCreateRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateRenderPassSafe. vkCreateRenderPass :: VkDevice -> Ptr VkRenderPassCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkRenderPass -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateRenderPass -- ( VkDevice device -- , const VkRenderPassCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkRenderPass* pRenderPass -- ) ---- -- vkCreateRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateRenderPass <- vkGetDeviceProc @VkCreateRenderPass vkDevice ---- -- or less efficient: -- --
-- myCreateRenderPass <- vkGetProc @VkCreateRenderPass ---- -- Note: vkCreateRenderPassUnsafe and -- vkCreateRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateRenderPass is an alias of -- vkCreateRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateRenderPassSafe. vkCreateRenderPassUnsafe :: VkDevice -> Ptr VkRenderPassCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkRenderPass -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateRenderPass -- ( VkDevice device -- , const VkRenderPassCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkRenderPass* pRenderPass -- ) ---- -- vkCreateRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateRenderPass <- vkGetDeviceProc @VkCreateRenderPass vkDevice ---- -- or less efficient: -- --
-- myCreateRenderPass <- vkGetProc @VkCreateRenderPass ---- -- Note: vkCreateRenderPassUnsafe and -- vkCreateRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateRenderPass is an alias of -- vkCreateRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateRenderPassSafe. vkCreateRenderPassSafe :: VkDevice -> Ptr VkRenderPassCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkRenderPass -> IO VkResult type VkDestroyRenderPass = "vkDestroyRenderPass" pattern VkDestroyRenderPass :: CString -- |
-- void vkDestroyRenderPass -- ( VkDevice device -- , VkRenderPass renderPass -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyRenderPass registry at www.khronos.org type HS_vkDestroyRenderPass = VkDevice " device" -> VkRenderPass " renderPass" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyRenderPass = FunPtr HS_vkDestroyRenderPass -- |
-- void vkDestroyRenderPass -- ( VkDevice device -- , VkRenderPass renderPass -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyRenderPass <- vkGetDeviceProc @VkDestroyRenderPass vkDevice ---- -- or less efficient: -- --
-- myDestroyRenderPass <- vkGetProc @VkDestroyRenderPass ---- -- Note: vkDestroyRenderPassUnsafe and -- vkDestroyRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyRenderPass is an alias of -- vkDestroyRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyRenderPassSafe. vkDestroyRenderPass :: VkDevice -> VkRenderPass -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyRenderPass -- ( VkDevice device -- , VkRenderPass renderPass -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyRenderPass <- vkGetDeviceProc @VkDestroyRenderPass vkDevice ---- -- or less efficient: -- --
-- myDestroyRenderPass <- vkGetProc @VkDestroyRenderPass ---- -- Note: vkDestroyRenderPassUnsafe and -- vkDestroyRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyRenderPass is an alias of -- vkDestroyRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyRenderPassSafe. vkDestroyRenderPassUnsafe :: VkDevice -> VkRenderPass -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyRenderPass -- ( VkDevice device -- , VkRenderPass renderPass -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyRenderPass <- vkGetDeviceProc @VkDestroyRenderPass vkDevice ---- -- or less efficient: -- --
-- myDestroyRenderPass <- vkGetProc @VkDestroyRenderPass ---- -- Note: vkDestroyRenderPassUnsafe and -- vkDestroyRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyRenderPass is an alias of -- vkDestroyRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyRenderPassSafe. vkDestroyRenderPassSafe :: VkDevice -> VkRenderPass -> Ptr VkAllocationCallbacks -> IO () type VkGetRenderAreaGranularity = "vkGetRenderAreaGranularity" pattern VkGetRenderAreaGranularity :: CString -- |
-- void vkGetRenderAreaGranularity -- ( VkDevice device -- , VkRenderPass renderPass -- , VkExtent2D* pGranularity -- ) ---- -- vkGetRenderAreaGranularity registry at www.khronos.org type HS_vkGetRenderAreaGranularity = VkDevice " device" -> VkRenderPass " renderPass" -> Ptr VkExtent2D " pGranularity" -> IO () type PFN_vkGetRenderAreaGranularity = FunPtr HS_vkGetRenderAreaGranularity -- |
-- void vkGetRenderAreaGranularity -- ( VkDevice device -- , VkRenderPass renderPass -- , VkExtent2D* pGranularity -- ) ---- -- vkGetRenderAreaGranularity registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetRenderAreaGranularity <- vkGetDeviceProc @VkGetRenderAreaGranularity vkDevice ---- -- or less efficient: -- --
-- myGetRenderAreaGranularity <- vkGetProc @VkGetRenderAreaGranularity ---- -- Note: vkGetRenderAreaGranularityUnsafe and -- vkGetRenderAreaGranularitySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetRenderAreaGranularity is an alias of -- vkGetRenderAreaGranularityUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetRenderAreaGranularitySafe. vkGetRenderAreaGranularity :: VkDevice -> VkRenderPass -> Ptr VkExtent2D -> IO () -- |
-- void vkGetRenderAreaGranularity -- ( VkDevice device -- , VkRenderPass renderPass -- , VkExtent2D* pGranularity -- ) ---- -- vkGetRenderAreaGranularity registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetRenderAreaGranularity <- vkGetDeviceProc @VkGetRenderAreaGranularity vkDevice ---- -- or less efficient: -- --
-- myGetRenderAreaGranularity <- vkGetProc @VkGetRenderAreaGranularity ---- -- Note: vkGetRenderAreaGranularityUnsafe and -- vkGetRenderAreaGranularitySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetRenderAreaGranularity is an alias of -- vkGetRenderAreaGranularityUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetRenderAreaGranularitySafe. vkGetRenderAreaGranularityUnsafe :: VkDevice -> VkRenderPass -> Ptr VkExtent2D -> IO () -- |
-- void vkGetRenderAreaGranularity -- ( VkDevice device -- , VkRenderPass renderPass -- , VkExtent2D* pGranularity -- ) ---- -- vkGetRenderAreaGranularity registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myGetRenderAreaGranularity <- vkGetDeviceProc @VkGetRenderAreaGranularity vkDevice ---- -- or less efficient: -- --
-- myGetRenderAreaGranularity <- vkGetProc @VkGetRenderAreaGranularity ---- -- Note: vkGetRenderAreaGranularityUnsafe and -- vkGetRenderAreaGranularitySafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkGetRenderAreaGranularity is an alias of -- vkGetRenderAreaGranularityUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkGetRenderAreaGranularitySafe. vkGetRenderAreaGranularitySafe :: VkDevice -> VkRenderPass -> Ptr VkExtent2D -> IO () newtype VkAccessBitmask (a :: FlagType) VkAccessBitmask :: VkFlags -> VkAccessBitmask pattern VkAccessFlagBits :: VkFlags -> VkAccessBitmask FlagBit pattern VkAccessFlags :: VkFlags -> VkAccessBitmask FlagMask -- | Controls coherency of indirect command reads -- -- bitpos = 0 pattern VK_ACCESS_INDIRECT_COMMAND_READ_BIT :: VkAccessBitmask a -- | Controls coherency of index reads -- -- bitpos = 1 pattern VK_ACCESS_INDEX_READ_BIT :: VkAccessBitmask a -- | Controls coherency of vertex attribute reads -- -- bitpos = 2 pattern VK_ACCESS_VERTEX_ATTRIBUTE_READ_BIT :: VkAccessBitmask a -- | Controls coherency of uniform buffer reads -- -- bitpos = 3 pattern VK_ACCESS_UNIFORM_READ_BIT :: VkAccessBitmask a -- | Controls coherency of input attachment reads -- -- bitpos = 4 pattern VK_ACCESS_INPUT_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of shader reads -- -- bitpos = 5 pattern VK_ACCESS_SHADER_READ_BIT :: VkAccessBitmask a -- | Controls coherency of shader writes -- -- bitpos = 6 pattern VK_ACCESS_SHADER_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of color attachment reads -- -- bitpos = 7 pattern VK_ACCESS_COLOR_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of color attachment writes -- -- bitpos = 8 pattern VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of depth/stencil attachment reads -- -- bitpos = 9 pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_READ_BIT :: VkAccessBitmask a -- | Controls coherency of depth/stencil attachment writes -- -- bitpos = 10 pattern VK_ACCESS_DEPTH_STENCIL_ATTACHMENT_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of transfer reads -- -- bitpos = 11 pattern VK_ACCESS_TRANSFER_READ_BIT :: VkAccessBitmask a -- | Controls coherency of transfer writes -- -- bitpos = 12 pattern VK_ACCESS_TRANSFER_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of host reads -- -- bitpos = 13 pattern VK_ACCESS_HOST_READ_BIT :: VkAccessBitmask a -- | Controls coherency of host writes -- -- bitpos = 14 pattern VK_ACCESS_HOST_WRITE_BIT :: VkAccessBitmask a -- | Controls coherency of memory reads -- -- bitpos = 15 pattern VK_ACCESS_MEMORY_READ_BIT :: VkAccessBitmask a -- | Controls coherency of memory writes -- -- bitpos = 16 pattern VK_ACCESS_MEMORY_WRITE_BIT :: VkAccessBitmask a type VkAccessFlagBits = VkAccessBitmask FlagBit type VkAccessFlags = VkAccessBitmask FlagMask newtype VkAttachmentDescriptionBitmask (a :: FlagType) VkAttachmentDescriptionBitmask :: VkFlags -> VkAttachmentDescriptionBitmask pattern VkAttachmentDescriptionFlagBits :: VkFlags -> VkAttachmentDescriptionBitmask FlagBit pattern VkAttachmentDescriptionFlags :: VkFlags -> VkAttachmentDescriptionBitmask FlagMask -- | The attachment may alias physical memory of another attachment in the -- same render pass -- -- bitpos = 0 pattern VK_ATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT :: VkAttachmentDescriptionBitmask a -- | type = enum -- -- VkAttachmentLoadOp registry at www.khronos.org newtype VkAttachmentLoadOp VkAttachmentLoadOp :: Int32 -> VkAttachmentLoadOp pattern VK_ATTACHMENT_LOAD_OP_LOAD :: VkAttachmentLoadOp pattern VK_ATTACHMENT_LOAD_OP_CLEAR :: VkAttachmentLoadOp pattern VK_ATTACHMENT_LOAD_OP_DONT_CARE :: VkAttachmentLoadOp -- | type = enum -- -- VkAttachmentStoreOp registry at www.khronos.org newtype VkAttachmentStoreOp VkAttachmentStoreOp :: Int32 -> VkAttachmentStoreOp pattern VK_ATTACHMENT_STORE_OP_STORE :: VkAttachmentStoreOp pattern VK_ATTACHMENT_STORE_OP_DONT_CARE :: VkAttachmentStoreOp type VkAttachmentDescriptionFlagBits = VkAttachmentDescriptionBitmask FlagBit type VkAttachmentDescriptionFlags = VkAttachmentDescriptionBitmask FlagMask newtype VkDependencyBitmask (a :: FlagType) VkDependencyBitmask :: VkFlags -> VkDependencyBitmask pattern VkDependencyFlagBits :: VkFlags -> VkDependencyBitmask FlagBit pattern VkDependencyFlags :: VkFlags -> VkDependencyBitmask FlagMask -- | Dependency is per pixel region -- -- bitpos = 0 pattern VK_DEPENDENCY_BY_REGION_BIT :: VkDependencyBitmask a type VkDependencyFlagBits = VkDependencyBitmask FlagBit type VkDependencyFlags = VkDependencyBitmask FlagMask -- | type = enum -- -- VkSubpassContents registry at www.khronos.org newtype VkSubpassContents VkSubpassContents :: Int32 -> VkSubpassContents pattern VK_SUBPASS_CONTENTS_INLINE :: VkSubpassContents pattern VK_SUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS :: VkSubpassContents newtype VkSubpassDescriptionBitmask (a :: FlagType) VkSubpassDescriptionBitmask :: VkFlags -> VkSubpassDescriptionBitmask pattern VkSubpassDescriptionFlagBits :: VkFlags -> VkSubpassDescriptionBitmask FlagBit pattern VkSubpassDescriptionFlags :: VkFlags -> VkSubpassDescriptionBitmask FlagMask type VkSubpassDescriptionFlagBits = VkSubpassDescriptionBitmask FlagBit type VkSubpassDescriptionFlags = VkSubpassDescriptionBitmask FlagMask -- |
-- typedef struct VkAttachmentDescription {
-- VkAttachmentDescriptionFlags flags;
-- VkFormat format;
-- VkSampleCountFlagBits samples;
-- VkAttachmentLoadOp loadOp;
-- VkAttachmentStoreOp storeOp;
-- VkAttachmentLoadOp stencilLoadOp;
-- VkAttachmentStoreOp stencilStoreOp;
-- VkImageLayout initialLayout;
-- VkImageLayout finalLayout;
-- } VkAttachmentDescription;
--
--
-- VkAttachmentDescription registry at www.khronos.org
type VkAttachmentDescription = VkStruct VkAttachmentDescription'
-- |
-- typedef struct VkAttachmentReference {
-- uint32_t attachment;
-- VkImageLayout layout;
-- } VkAttachmentReference;
--
--
-- VkAttachmentReference registry at www.khronos.org
type VkAttachmentReference = VkStruct VkAttachmentReference'
-- |
-- typedef struct VkAttachmentSampleLocationsEXT {
-- uint32_t attachmentIndex;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkAttachmentSampleLocationsEXT;
--
--
-- VkAttachmentSampleLocationsEXT registry at www.khronos.org
type VkAttachmentSampleLocationsEXT = VkStruct VkAttachmentSampleLocationsEXT'
-- |
-- typedef struct VkFramebufferCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkFramebufferCreateFlags flags;
-- VkRenderPass renderPass;
-- uint32_t attachmentCount;
-- const VkImageView* pAttachments;
-- uint32_t width;
-- uint32_t height;
-- uint32_t layers;
-- } VkFramebufferCreateInfo;
--
--
-- VkFramebufferCreateInfo registry at www.khronos.org
type VkFramebufferCreateInfo = VkStruct VkFramebufferCreateInfo'
-- |
-- typedef struct VkRenderPassBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPass renderPass;
-- VkFramebuffer framebuffer;
-- VkRect2D renderArea;
-- uint32_t clearValueCount;
-- const VkClearValue* pClearValues;
-- } VkRenderPassBeginInfo;
--
--
-- VkRenderPassBeginInfo registry at www.khronos.org
type VkRenderPassBeginInfo = VkStruct VkRenderPassBeginInfo'
-- |
-- typedef struct VkRenderPassCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPassCreateFlags flags;
-- uint32_t attachmentCount;
-- const VkAttachmentDescription* pAttachments;
-- uint32_t subpassCount;
-- const VkSubpassDescription* pSubpasses;
-- uint32_t dependencyCount;
-- const VkSubpassDependency* pDependencies;
-- } VkRenderPassCreateInfo;
--
--
-- VkRenderPassCreateInfo registry at www.khronos.org
type VkRenderPassCreateInfo = VkStruct VkRenderPassCreateInfo'
-- |
-- typedef struct VkRenderPassInputAttachmentAspectCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t aspectReferenceCount;
-- const VkInputAttachmentAspectReference* pAspectReferences;
-- } VkRenderPassInputAttachmentAspectCreateInfo;
--
--
-- VkRenderPassInputAttachmentAspectCreateInfo registry at
-- www.khronos.org
type VkRenderPassInputAttachmentAspectCreateInfo = VkStruct VkRenderPassInputAttachmentAspectCreateInfo'
-- | Alias for VkRenderPassInputAttachmentAspectCreateInfo
type VkRenderPassInputAttachmentAspectCreateInfoKHR = VkRenderPassInputAttachmentAspectCreateInfo
-- |
-- typedef struct VkRenderPassMultiviewCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t subpassCount;
-- const uint32_t* pViewMasks;
-- uint32_t dependencyCount;
-- const int32_t* pViewOffsets;
-- uint32_t correlationMaskCount;
-- const uint32_t* pCorrelationMasks;
-- } VkRenderPassMultiviewCreateInfo;
--
--
-- VkRenderPassMultiviewCreateInfo registry at www.khronos.org
type VkRenderPassMultiviewCreateInfo = VkStruct VkRenderPassMultiviewCreateInfo'
-- | Alias for VkRenderPassMultiviewCreateInfo
type VkRenderPassMultiviewCreateInfoKHR = VkRenderPassMultiviewCreateInfo
-- |
-- typedef struct VkRenderPassSampleLocationsBeginInfoEXT {
-- VkStructureType sType;
-- const void* pNext;
-- uint32_t attachmentInitialSampleLocationsCount;
-- const VkAttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations;
-- uint32_t postSubpassSampleLocationsCount;
-- const VkSubpassSampleLocationsEXT* pPostSubpassSampleLocations;
-- } VkRenderPassSampleLocationsBeginInfoEXT;
--
--
-- VkRenderPassSampleLocationsBeginInfoEXT registry at
-- www.khronos.org
type VkRenderPassSampleLocationsBeginInfoEXT = VkStruct VkRenderPassSampleLocationsBeginInfoEXT'
-- |
-- typedef struct VkSubpassDependency {
-- uint32_t srcSubpass;
-- uint32_t dstSubpass;
-- VkPipelineStageFlags srcStageMask;
-- VkPipelineStageFlags dstStageMask;
-- VkAccessFlags srcAccessMask;
-- VkAccessFlags dstAccessMask;
-- VkDependencyFlags dependencyFlags;
-- } VkSubpassDependency;
--
--
-- VkSubpassDependency registry at www.khronos.org
type VkSubpassDependency = VkStruct VkSubpassDependency'
-- |
-- typedef struct VkSubpassDescription {
-- VkSubpassDescriptionFlags flags;
-- VkPipelineBindPoint pipelineBindPoint;
-- uint32_t inputAttachmentCount;
-- const VkAttachmentReference* pInputAttachments;
-- uint32_t colorAttachmentCount;
-- const VkAttachmentReference* pColorAttachments;
-- const VkAttachmentReference* pResolveAttachments;
-- const VkAttachmentReference* pDepthStencilAttachment;
-- uint32_t preserveAttachmentCount;
-- const uint32_t* pPreserveAttachments;
-- } VkSubpassDescription;
--
--
-- VkSubpassDescription registry at www.khronos.org
type VkSubpassDescription = VkStruct VkSubpassDescription'
-- |
-- typedef struct VkSubpassSampleLocationsEXT {
-- uint32_t subpassIndex;
-- VkSampleLocationsInfoEXT sampleLocationsInfo;
-- } VkSubpassSampleLocationsEXT;
--
--
-- VkSubpassSampleLocationsEXT registry at www.khronos.org
type VkSubpassSampleLocationsEXT = VkStruct VkSubpassSampleLocationsEXT'
type VkCreateCommandPool = "vkCreateCommandPool"
pattern VkCreateCommandPool :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkCreateCommandPool -- ( VkDevice device -- , const VkCommandPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkCommandPool* pCommandPool -- ) ---- -- vkCreateCommandPool registry at www.khronos.org type HS_vkCreateCommandPool = VkDevice " device" -> Ptr VkCommandPoolCreateInfo " pCreateInfo" -> Ptr VkAllocationCallbacks " pAllocator" -> Ptr VkCommandPool " pCommandPool" -> IO VkResult type PFN_vkCreateCommandPool = FunPtr HS_vkCreateCommandPool -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateCommandPool -- ( VkDevice device -- , const VkCommandPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkCommandPool* pCommandPool -- ) ---- -- vkCreateCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateCommandPool <- vkGetDeviceProc @VkCreateCommandPool vkDevice ---- -- or less efficient: -- --
-- myCreateCommandPool <- vkGetProc @VkCreateCommandPool ---- -- Note: vkCreateCommandPoolUnsafe and -- vkCreateCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateCommandPool is an alias of -- vkCreateCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateCommandPoolSafe. vkCreateCommandPool :: VkDevice -> Ptr VkCommandPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkCommandPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateCommandPool -- ( VkDevice device -- , const VkCommandPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkCommandPool* pCommandPool -- ) ---- -- vkCreateCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateCommandPool <- vkGetDeviceProc @VkCreateCommandPool vkDevice ---- -- or less efficient: -- --
-- myCreateCommandPool <- vkGetProc @VkCreateCommandPool ---- -- Note: vkCreateCommandPoolUnsafe and -- vkCreateCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateCommandPool is an alias of -- vkCreateCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateCommandPoolSafe. vkCreateCommandPoolUnsafe :: VkDevice -> Ptr VkCommandPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkCommandPool -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkCreateCommandPool -- ( VkDevice device -- , const VkCommandPoolCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkCommandPool* pCommandPool -- ) ---- -- vkCreateCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateCommandPool <- vkGetDeviceProc @VkCreateCommandPool vkDevice ---- -- or less efficient: -- --
-- myCreateCommandPool <- vkGetProc @VkCreateCommandPool ---- -- Note: vkCreateCommandPoolUnsafe and -- vkCreateCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateCommandPool is an alias of -- vkCreateCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCreateCommandPoolSafe. vkCreateCommandPoolSafe :: VkDevice -> Ptr VkCommandPoolCreateInfo -> Ptr VkAllocationCallbacks -> Ptr VkCommandPool -> IO VkResult type VkDestroyCommandPool = "vkDestroyCommandPool" pattern VkDestroyCommandPool :: CString -- |
-- void vkDestroyCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyCommandPool registry at www.khronos.org type HS_vkDestroyCommandPool = VkDevice " device" -> VkCommandPool " commandPool" -> Ptr VkAllocationCallbacks " pAllocator" -> IO () type PFN_vkDestroyCommandPool = FunPtr HS_vkDestroyCommandPool -- |
-- void vkDestroyCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyCommandPool <- vkGetDeviceProc @VkDestroyCommandPool vkDevice ---- -- or less efficient: -- --
-- myDestroyCommandPool <- vkGetProc @VkDestroyCommandPool ---- -- Note: vkDestroyCommandPoolUnsafe and -- vkDestroyCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyCommandPool is an alias of -- vkDestroyCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyCommandPoolSafe. vkDestroyCommandPool :: VkDevice -> VkCommandPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyCommandPool <- vkGetDeviceProc @VkDestroyCommandPool vkDevice ---- -- or less efficient: -- --
-- myDestroyCommandPool <- vkGetProc @VkDestroyCommandPool ---- -- Note: vkDestroyCommandPoolUnsafe and -- vkDestroyCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyCommandPool is an alias of -- vkDestroyCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyCommandPoolSafe. vkDestroyCommandPoolUnsafe :: VkDevice -> VkCommandPool -> Ptr VkAllocationCallbacks -> IO () -- |
-- void vkDestroyCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , const VkAllocationCallbacks* pAllocator -- ) ---- -- vkDestroyCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myDestroyCommandPool <- vkGetDeviceProc @VkDestroyCommandPool vkDevice ---- -- or less efficient: -- --
-- myDestroyCommandPool <- vkGetProc @VkDestroyCommandPool ---- -- Note: vkDestroyCommandPoolUnsafe and -- vkDestroyCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkDestroyCommandPool is an alias of -- vkDestroyCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkDestroyCommandPoolSafe. vkDestroyCommandPoolSafe :: VkDevice -> VkCommandPool -> Ptr VkAllocationCallbacks -> IO () type VkResetCommandPool = "vkResetCommandPool" pattern VkResetCommandPool :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolResetFlags flags -- ) ---- -- vkResetCommandPool registry at www.khronos.org type HS_vkResetCommandPool = VkDevice " device" -> VkCommandPool " commandPool" -> VkCommandPoolResetFlags " flags" -> IO VkResult type PFN_vkResetCommandPool = FunPtr HS_vkResetCommandPool -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolResetFlags flags -- ) ---- -- vkResetCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandPool <- vkGetDeviceProc @VkResetCommandPool vkDevice ---- -- or less efficient: -- --
-- myResetCommandPool <- vkGetProc @VkResetCommandPool ---- -- Note: vkResetCommandPoolUnsafe and -- vkResetCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandPool is an alias of -- vkResetCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandPoolSafe. vkResetCommandPool :: VkDevice -> VkCommandPool -> VkCommandPoolResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolResetFlags flags -- ) ---- -- vkResetCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandPool <- vkGetDeviceProc @VkResetCommandPool vkDevice ---- -- or less efficient: -- --
-- myResetCommandPool <- vkGetProc @VkResetCommandPool ---- -- Note: vkResetCommandPoolUnsafe and -- vkResetCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandPool is an alias of -- vkResetCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandPoolSafe. vkResetCommandPoolUnsafe :: VkDevice -> VkCommandPool -> VkCommandPoolResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandPool -- ( VkDevice device -- , VkCommandPool commandPool -- , VkCommandPoolResetFlags flags -- ) ---- -- vkResetCommandPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandPool <- vkGetDeviceProc @VkResetCommandPool vkDevice ---- -- or less efficient: -- --
-- myResetCommandPool <- vkGetProc @VkResetCommandPool ---- -- Note: vkResetCommandPoolUnsafe and -- vkResetCommandPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandPool is an alias of -- vkResetCommandPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandPoolSafe. vkResetCommandPoolSafe :: VkDevice -> VkCommandPool -> VkCommandPoolResetFlags -> IO VkResult -- | type = enum -- -- VkCommandBufferLevel registry at www.khronos.org newtype VkCommandBufferLevel VkCommandBufferLevel :: Int32 -> VkCommandBufferLevel pattern VK_COMMAND_BUFFER_LEVEL_PRIMARY :: VkCommandBufferLevel pattern VK_COMMAND_BUFFER_LEVEL_SECONDARY :: VkCommandBufferLevel newtype VkCommandBufferResetBitmask (a :: FlagType) VkCommandBufferResetBitmask :: VkFlags -> VkCommandBufferResetBitmask pattern VkCommandBufferResetFlagBits :: VkFlags -> VkCommandBufferResetBitmask FlagBit pattern VkCommandBufferResetFlags :: VkFlags -> VkCommandBufferResetBitmask FlagMask -- | Release resources owned by the buffer -- -- bitpos = 0 pattern VK_COMMAND_BUFFER_RESET_RELEASE_RESOURCES_BIT :: VkCommandBufferResetBitmask a newtype VkCommandBufferUsageBitmask (a :: FlagType) VkCommandBufferUsageBitmask :: VkFlags -> VkCommandBufferUsageBitmask pattern VkCommandBufferUsageFlagBits :: VkFlags -> VkCommandBufferUsageBitmask FlagBit pattern VkCommandBufferUsageFlags :: VkFlags -> VkCommandBufferUsageBitmask FlagMask -- | bitpos = 0 pattern VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT :: VkCommandBufferUsageBitmask a -- | bitpos = 1 pattern VK_COMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT :: VkCommandBufferUsageBitmask a -- | Command buffer may be submitted/executed more than once simultaneously -- -- bitpos = 2 pattern VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT :: VkCommandBufferUsageBitmask a newtype VkCommandPoolCreateBitmask (a :: FlagType) VkCommandPoolCreateBitmask :: VkFlags -> VkCommandPoolCreateBitmask pattern VkCommandPoolCreateFlagBits :: VkFlags -> VkCommandPoolCreateBitmask FlagBit pattern VkCommandPoolCreateFlags :: VkFlags -> VkCommandPoolCreateBitmask FlagMask -- | Command buffers have a short lifetime -- -- bitpos = 0 pattern VK_COMMAND_POOL_CREATE_TRANSIENT_BIT :: VkCommandPoolCreateBitmask a -- | Command buffers may release their memory individually -- -- bitpos = 1 pattern VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT :: VkCommandPoolCreateBitmask a newtype VkCommandPoolResetBitmask (a :: FlagType) VkCommandPoolResetBitmask :: VkFlags -> VkCommandPoolResetBitmask pattern VkCommandPoolResetFlagBits :: VkFlags -> VkCommandPoolResetBitmask FlagBit pattern VkCommandPoolResetFlags :: VkFlags -> VkCommandPoolResetBitmask FlagMask -- | Release resources owned by the pool -- -- bitpos = 0 pattern VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT :: VkCommandPoolResetBitmask a type VkCommandBufferResetFlagBits = VkCommandBufferResetBitmask FlagBit type VkCommandBufferResetFlags = VkCommandBufferResetBitmask FlagMask type VkCommandBufferUsageFlagBits = VkCommandBufferUsageBitmask FlagBit type VkCommandBufferUsageFlags = VkCommandBufferUsageBitmask FlagMask type VkCommandPoolCreateFlagBits = VkCommandPoolCreateBitmask FlagBit type VkCommandPoolCreateFlags = VkCommandPoolCreateBitmask FlagMask type VkCommandPoolResetFlagBits = VkCommandPoolResetBitmask FlagBit type VkCommandPoolResetFlags = VkCommandPoolResetBitmask FlagMask -- |
-- typedef struct VkCommandBufferAllocateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkCommandPool commandPool;
-- VkCommandBufferLevel level;
-- uint32_t commandBufferCount;
-- } VkCommandBufferAllocateInfo;
--
--
-- VkCommandBufferAllocateInfo registry at www.khronos.org
type VkCommandBufferAllocateInfo = VkStruct VkCommandBufferAllocateInfo'
-- |
-- typedef struct VkCommandBufferBeginInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkCommandBufferUsageFlags flags;
-- const VkCommandBufferInheritanceInfo* pInheritanceInfo;
-- } VkCommandBufferBeginInfo;
--
--
-- VkCommandBufferBeginInfo registry at www.khronos.org
type VkCommandBufferBeginInfo = VkStruct VkCommandBufferBeginInfo'
-- |
-- typedef struct VkCommandBufferInheritanceInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkRenderPass renderPass;
-- uint32_t subpass;
-- VkFramebuffer framebuffer;
-- VkBool32 occlusionQueryEnable;
-- VkQueryControlFlags queryFlags;
-- VkQueryPipelineStatisticFlags pipelineStatistics;
-- } VkCommandBufferInheritanceInfo;
--
--
-- VkCommandBufferInheritanceInfo registry at www.khronos.org
type VkCommandBufferInheritanceInfo = VkStruct VkCommandBufferInheritanceInfo'
-- |
-- typedef struct VkCommandPoolCreateInfo {
-- VkStructureType sType;
-- const void* pNext;
-- VkCommandPoolCreateFlags flags;
-- uint32_t queueFamilyIndex;
-- } VkCommandPoolCreateInfo;
--
--
-- VkCommandPoolCreateInfo registry at www.khronos.org
type VkCommandPoolCreateInfo = VkStruct VkCommandPoolCreateInfo'
type VkAllocateCommandBuffers = "vkAllocateCommandBuffers"
pattern VkAllocateCommandBuffers :: CString
-- | Success codes: VK_SUCCESS.
--
-- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY,
-- VK_ERROR_OUT_OF_DEVICE_MEMORY.
--
-- -- VkResult vkAllocateCommandBuffers -- ( VkDevice device -- , const VkCommandBufferAllocateInfo* pAllocateInfo -- , VkCommandBuffer* pCommandBuffers -- ) ---- -- vkAllocateCommandBuffers registry at www.khronos.org type HS_vkAllocateCommandBuffers = VkDevice " device" -> Ptr VkCommandBufferAllocateInfo " pAllocateInfo" -> Ptr VkCommandBuffer " pCommandBuffers" -> IO VkResult type PFN_vkAllocateCommandBuffers = FunPtr HS_vkAllocateCommandBuffers -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkAllocateCommandBuffers -- ( VkDevice device -- , const VkCommandBufferAllocateInfo* pAllocateInfo -- , VkCommandBuffer* pCommandBuffers -- ) ---- -- vkAllocateCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateCommandBuffers <- vkGetDeviceProc @VkAllocateCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myAllocateCommandBuffers <- vkGetProc @VkAllocateCommandBuffers ---- -- Note: vkAllocateCommandBuffersUnsafe and -- vkAllocateCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateCommandBuffers is an alias of -- vkAllocateCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateCommandBuffersSafe. vkAllocateCommandBuffers :: VkDevice -> Ptr VkCommandBufferAllocateInfo -> Ptr VkCommandBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkAllocateCommandBuffers -- ( VkDevice device -- , const VkCommandBufferAllocateInfo* pAllocateInfo -- , VkCommandBuffer* pCommandBuffers -- ) ---- -- vkAllocateCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateCommandBuffers <- vkGetDeviceProc @VkAllocateCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myAllocateCommandBuffers <- vkGetProc @VkAllocateCommandBuffers ---- -- Note: vkAllocateCommandBuffersUnsafe and -- vkAllocateCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateCommandBuffers is an alias of -- vkAllocateCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateCommandBuffersSafe. vkAllocateCommandBuffersUnsafe :: VkDevice -> Ptr VkCommandBufferAllocateInfo -> Ptr VkCommandBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkAllocateCommandBuffers -- ( VkDevice device -- , const VkCommandBufferAllocateInfo* pAllocateInfo -- , VkCommandBuffer* pCommandBuffers -- ) ---- -- vkAllocateCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myAllocateCommandBuffers <- vkGetDeviceProc @VkAllocateCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myAllocateCommandBuffers <- vkGetProc @VkAllocateCommandBuffers ---- -- Note: vkAllocateCommandBuffersUnsafe and -- vkAllocateCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkAllocateCommandBuffers is an alias of -- vkAllocateCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkAllocateCommandBuffersSafe. vkAllocateCommandBuffersSafe :: VkDevice -> Ptr VkCommandBufferAllocateInfo -> Ptr VkCommandBuffer -> IO VkResult type VkFreeCommandBuffers = "vkFreeCommandBuffers" pattern VkFreeCommandBuffers :: CString -- |
-- void vkFreeCommandBuffers -- ( VkDevice device -- , VkCommandPool commandPool -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkFreeCommandBuffers registry at www.khronos.org type HS_vkFreeCommandBuffers = VkDevice " device" -> VkCommandPool " commandPool" -> Word32 " commandBufferCount" -> Ptr VkCommandBuffer " pCommandBuffers" -> IO () type PFN_vkFreeCommandBuffers = FunPtr HS_vkFreeCommandBuffers -- |
-- void vkFreeCommandBuffers -- ( VkDevice device -- , VkCommandPool commandPool -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkFreeCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeCommandBuffers <- vkGetDeviceProc @VkFreeCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myFreeCommandBuffers <- vkGetProc @VkFreeCommandBuffers ---- -- Note: vkFreeCommandBuffersUnsafe and -- vkFreeCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeCommandBuffers is an alias of -- vkFreeCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeCommandBuffersSafe. vkFreeCommandBuffers :: VkDevice -> VkCommandPool -> Word32 -> Ptr VkCommandBuffer -> IO () -- |
-- void vkFreeCommandBuffers -- ( VkDevice device -- , VkCommandPool commandPool -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkFreeCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeCommandBuffers <- vkGetDeviceProc @VkFreeCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myFreeCommandBuffers <- vkGetProc @VkFreeCommandBuffers ---- -- Note: vkFreeCommandBuffersUnsafe and -- vkFreeCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeCommandBuffers is an alias of -- vkFreeCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeCommandBuffersSafe. vkFreeCommandBuffersUnsafe :: VkDevice -> VkCommandPool -> Word32 -> Ptr VkCommandBuffer -> IO () -- |
-- void vkFreeCommandBuffers -- ( VkDevice device -- , VkCommandPool commandPool -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkFreeCommandBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myFreeCommandBuffers <- vkGetDeviceProc @VkFreeCommandBuffers vkDevice ---- -- or less efficient: -- --
-- myFreeCommandBuffers <- vkGetProc @VkFreeCommandBuffers ---- -- Note: vkFreeCommandBuffersUnsafe and -- vkFreeCommandBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkFreeCommandBuffers is an alias of -- vkFreeCommandBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkFreeCommandBuffersSafe. vkFreeCommandBuffersSafe :: VkDevice -> VkCommandPool -> Word32 -> Ptr VkCommandBuffer -> IO () type VkBeginCommandBuffer = "vkBeginCommandBuffer" pattern VkBeginCommandBuffer :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBeginCommandBuffer -- ( VkCommandBuffer commandBuffer -- , const VkCommandBufferBeginInfo* pBeginInfo -- ) ---- -- vkBeginCommandBuffer registry at www.khronos.org type HS_vkBeginCommandBuffer = VkCommandBuffer " commandBuffer" -> Ptr VkCommandBufferBeginInfo " pBeginInfo" -> IO VkResult type PFN_vkBeginCommandBuffer = FunPtr HS_vkBeginCommandBuffer -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBeginCommandBuffer -- ( VkCommandBuffer commandBuffer -- , const VkCommandBufferBeginInfo* pBeginInfo -- ) ---- -- vkBeginCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBeginCommandBuffer <- vkGetInstanceProc @VkBeginCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myBeginCommandBuffer <- vkGetProc @VkBeginCommandBuffer ---- -- Note: vkBeginCommandBufferUnsafe and -- vkBeginCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBeginCommandBuffer is an alias of -- vkBeginCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBeginCommandBufferSafe. vkBeginCommandBuffer :: VkCommandBuffer -> Ptr VkCommandBufferBeginInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBeginCommandBuffer -- ( VkCommandBuffer commandBuffer -- , const VkCommandBufferBeginInfo* pBeginInfo -- ) ---- -- vkBeginCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBeginCommandBuffer <- vkGetInstanceProc @VkBeginCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myBeginCommandBuffer <- vkGetProc @VkBeginCommandBuffer ---- -- Note: vkBeginCommandBufferUnsafe and -- vkBeginCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBeginCommandBuffer is an alias of -- vkBeginCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBeginCommandBufferSafe. vkBeginCommandBufferUnsafe :: VkCommandBuffer -> Ptr VkCommandBufferBeginInfo -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkBeginCommandBuffer -- ( VkCommandBuffer commandBuffer -- , const VkCommandBufferBeginInfo* pBeginInfo -- ) ---- -- vkBeginCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myBeginCommandBuffer <- vkGetInstanceProc @VkBeginCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myBeginCommandBuffer <- vkGetProc @VkBeginCommandBuffer ---- -- Note: vkBeginCommandBufferUnsafe and -- vkBeginCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkBeginCommandBuffer is an alias of -- vkBeginCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkBeginCommandBufferSafe. vkBeginCommandBufferSafe :: VkCommandBuffer -> Ptr VkCommandBufferBeginInfo -> IO VkResult type VkEndCommandBuffer = "vkEndCommandBuffer" pattern VkEndCommandBuffer :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEndCommandBuffer -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkEndCommandBuffer registry at www.khronos.org type HS_vkEndCommandBuffer = VkCommandBuffer " commandBuffer" -> IO VkResult type PFN_vkEndCommandBuffer = FunPtr HS_vkEndCommandBuffer -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEndCommandBuffer -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkEndCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEndCommandBuffer <- vkGetInstanceProc @VkEndCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myEndCommandBuffer <- vkGetProc @VkEndCommandBuffer ---- -- Note: vkEndCommandBufferUnsafe and -- vkEndCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEndCommandBuffer is an alias of -- vkEndCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEndCommandBufferSafe. vkEndCommandBuffer :: VkCommandBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEndCommandBuffer -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkEndCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEndCommandBuffer <- vkGetInstanceProc @VkEndCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myEndCommandBuffer <- vkGetProc @VkEndCommandBuffer ---- -- Note: vkEndCommandBufferUnsafe and -- vkEndCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEndCommandBuffer is an alias of -- vkEndCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEndCommandBufferSafe. vkEndCommandBufferUnsafe :: VkCommandBuffer -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkEndCommandBuffer -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkEndCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myEndCommandBuffer <- vkGetInstanceProc @VkEndCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myEndCommandBuffer <- vkGetProc @VkEndCommandBuffer ---- -- Note: vkEndCommandBufferUnsafe and -- vkEndCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkEndCommandBuffer is an alias of -- vkEndCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkEndCommandBufferSafe. vkEndCommandBufferSafe :: VkCommandBuffer -> IO VkResult type VkResetCommandBuffer = "vkResetCommandBuffer" pattern VkResetCommandBuffer :: CString -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandBuffer -- ( VkCommandBuffer commandBuffer -- , VkCommandBufferResetFlags flags -- ) ---- -- vkResetCommandBuffer registry at www.khronos.org type HS_vkResetCommandBuffer = VkCommandBuffer " commandBuffer" -> VkCommandBufferResetFlags " flags" -> IO VkResult type PFN_vkResetCommandBuffer = FunPtr HS_vkResetCommandBuffer -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandBuffer -- ( VkCommandBuffer commandBuffer -- , VkCommandBufferResetFlags flags -- ) ---- -- vkResetCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandBuffer <- vkGetInstanceProc @VkResetCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myResetCommandBuffer <- vkGetProc @VkResetCommandBuffer ---- -- Note: vkResetCommandBufferUnsafe and -- vkResetCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandBuffer is an alias of -- vkResetCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandBufferSafe. vkResetCommandBuffer :: VkCommandBuffer -> VkCommandBufferResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandBuffer -- ( VkCommandBuffer commandBuffer -- , VkCommandBufferResetFlags flags -- ) ---- -- vkResetCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandBuffer <- vkGetInstanceProc @VkResetCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myResetCommandBuffer <- vkGetProc @VkResetCommandBuffer ---- -- Note: vkResetCommandBufferUnsafe and -- vkResetCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandBuffer is an alias of -- vkResetCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandBufferSafe. vkResetCommandBufferUnsafe :: VkCommandBuffer -> VkCommandBufferResetFlags -> IO VkResult -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY. -- --
-- VkResult vkResetCommandBuffer -- ( VkCommandBuffer commandBuffer -- , VkCommandBufferResetFlags flags -- ) ---- -- vkResetCommandBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myResetCommandBuffer <- vkGetInstanceProc @VkResetCommandBuffer vkInstance ---- -- or less efficient: -- --
-- myResetCommandBuffer <- vkGetProc @VkResetCommandBuffer ---- -- Note: vkResetCommandBufferUnsafe and -- vkResetCommandBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkResetCommandBuffer is an alias of -- vkResetCommandBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkResetCommandBufferSafe. vkResetCommandBufferSafe :: VkCommandBuffer -> VkCommandBufferResetFlags -> IO VkResult type VkCmdBindPipeline = "vkCmdBindPipeline" pattern VkCmdBindPipeline :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindPipeline -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipeline pipeline -- ) ---- -- vkCmdBindPipeline registry at www.khronos.org type HS_vkCmdBindPipeline = VkCommandBuffer " commandBuffer" -> VkPipelineBindPoint " pipelineBindPoint" -> VkPipeline " pipeline" -> IO () type PFN_vkCmdBindPipeline = FunPtr HS_vkCmdBindPipeline -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindPipeline -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipeline pipeline -- ) ---- -- vkCmdBindPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindPipeline <- vkGetInstanceProc @VkCmdBindPipeline vkInstance ---- -- or less efficient: -- --
-- myCmdBindPipeline <- vkGetProc @VkCmdBindPipeline ---- -- Note: vkCmdBindPipelineUnsafe and -- vkCmdBindPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindPipeline is an alias of -- vkCmdBindPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdBindPipelineSafe. vkCmdBindPipeline :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipeline -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindPipeline -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipeline pipeline -- ) ---- -- vkCmdBindPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindPipeline <- vkGetInstanceProc @VkCmdBindPipeline vkInstance ---- -- or less efficient: -- --
-- myCmdBindPipeline <- vkGetProc @VkCmdBindPipeline ---- -- Note: vkCmdBindPipelineUnsafe and -- vkCmdBindPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindPipeline is an alias of -- vkCmdBindPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdBindPipelineSafe. vkCmdBindPipelineUnsafe :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipeline -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindPipeline -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipeline pipeline -- ) ---- -- vkCmdBindPipeline registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindPipeline <- vkGetInstanceProc @VkCmdBindPipeline vkInstance ---- -- or less efficient: -- --
-- myCmdBindPipeline <- vkGetProc @VkCmdBindPipeline ---- -- Note: vkCmdBindPipelineUnsafe and -- vkCmdBindPipelineSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindPipeline is an alias of -- vkCmdBindPipelineUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdBindPipelineSafe. vkCmdBindPipelineSafe :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipeline -> IO () type VkCmdSetViewport = "vkCmdSetViewport" pattern VkCmdSetViewport :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetViewport -- ( VkCommandBuffer commandBuffer -- , uint32_t firstViewport -- , uint32_t viewportCount -- , const VkViewport* pViewports -- ) ---- -- vkCmdSetViewport registry at www.khronos.org type HS_vkCmdSetViewport = VkCommandBuffer " commandBuffer" -> Word32 " firstViewport" -> Word32 " viewportCount" -> Ptr VkViewport " pViewports" -> IO () type PFN_vkCmdSetViewport = FunPtr HS_vkCmdSetViewport -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetViewport -- ( VkCommandBuffer commandBuffer -- , uint32_t firstViewport -- , uint32_t viewportCount -- , const VkViewport* pViewports -- ) ---- -- vkCmdSetViewport registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetViewport <- vkGetInstanceProc @VkCmdSetViewport vkInstance ---- -- or less efficient: -- --
-- myCmdSetViewport <- vkGetProc @VkCmdSetViewport ---- -- Note: vkCmdSetViewportUnsafe and -- vkCmdSetViewportSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetViewport is an alias of -- vkCmdSetViewportUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetViewportSafe. vkCmdSetViewport :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkViewport -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetViewport -- ( VkCommandBuffer commandBuffer -- , uint32_t firstViewport -- , uint32_t viewportCount -- , const VkViewport* pViewports -- ) ---- -- vkCmdSetViewport registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetViewport <- vkGetInstanceProc @VkCmdSetViewport vkInstance ---- -- or less efficient: -- --
-- myCmdSetViewport <- vkGetProc @VkCmdSetViewport ---- -- Note: vkCmdSetViewportUnsafe and -- vkCmdSetViewportSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetViewport is an alias of -- vkCmdSetViewportUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetViewportSafe. vkCmdSetViewportUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkViewport -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetViewport -- ( VkCommandBuffer commandBuffer -- , uint32_t firstViewport -- , uint32_t viewportCount -- , const VkViewport* pViewports -- ) ---- -- vkCmdSetViewport registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetViewport <- vkGetInstanceProc @VkCmdSetViewport vkInstance ---- -- or less efficient: -- --
-- myCmdSetViewport <- vkGetProc @VkCmdSetViewport ---- -- Note: vkCmdSetViewportUnsafe and -- vkCmdSetViewportSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetViewport is an alias of -- vkCmdSetViewportUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetViewportSafe. vkCmdSetViewportSafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkViewport -> IO () type VkCmdSetScissor = "vkCmdSetScissor" pattern VkCmdSetScissor :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetScissor -- ( VkCommandBuffer commandBuffer -- , uint32_t firstScissor -- , uint32_t scissorCount -- , const VkRect2D* pScissors -- ) ---- -- vkCmdSetScissor registry at www.khronos.org type HS_vkCmdSetScissor = VkCommandBuffer " commandBuffer" -> Word32 " firstScissor" -> Word32 " scissorCount" -> Ptr VkRect2D " pScissors" -> IO () type PFN_vkCmdSetScissor = FunPtr HS_vkCmdSetScissor -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetScissor -- ( VkCommandBuffer commandBuffer -- , uint32_t firstScissor -- , uint32_t scissorCount -- , const VkRect2D* pScissors -- ) ---- -- vkCmdSetScissor registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetScissor <- vkGetInstanceProc @VkCmdSetScissor vkInstance ---- -- or less efficient: -- --
-- myCmdSetScissor <- vkGetProc @VkCmdSetScissor ---- -- Note: vkCmdSetScissorUnsafe and -- vkCmdSetScissorSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetScissor -- is an alias of vkCmdSetScissorUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetScissorSafe. vkCmdSetScissor :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkRect2D -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetScissor -- ( VkCommandBuffer commandBuffer -- , uint32_t firstScissor -- , uint32_t scissorCount -- , const VkRect2D* pScissors -- ) ---- -- vkCmdSetScissor registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetScissor <- vkGetInstanceProc @VkCmdSetScissor vkInstance ---- -- or less efficient: -- --
-- myCmdSetScissor <- vkGetProc @VkCmdSetScissor ---- -- Note: vkCmdSetScissorUnsafe and -- vkCmdSetScissorSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetScissor -- is an alias of vkCmdSetScissorUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetScissorSafe. vkCmdSetScissorUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkRect2D -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetScissor -- ( VkCommandBuffer commandBuffer -- , uint32_t firstScissor -- , uint32_t scissorCount -- , const VkRect2D* pScissors -- ) ---- -- vkCmdSetScissor registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetScissor <- vkGetInstanceProc @VkCmdSetScissor vkInstance ---- -- or less efficient: -- --
-- myCmdSetScissor <- vkGetProc @VkCmdSetScissor ---- -- Note: vkCmdSetScissorUnsafe and -- vkCmdSetScissorSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetScissor -- is an alias of vkCmdSetScissorUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetScissorSafe. vkCmdSetScissorSafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkRect2D -> IO () type VkCmdSetLineWidth = "vkCmdSetLineWidth" pattern VkCmdSetLineWidth :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetLineWidth -- ( VkCommandBuffer commandBuffer -- , float lineWidth -- ) ---- -- vkCmdSetLineWidth registry at www.khronos.org type HS_vkCmdSetLineWidth = VkCommandBuffer " commandBuffer" -> Float -> IO () type PFN_vkCmdSetLineWidth = FunPtr HS_vkCmdSetLineWidth -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetLineWidth -- ( VkCommandBuffer commandBuffer -- , float lineWidth -- ) ---- -- vkCmdSetLineWidth registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetLineWidth <- vkGetInstanceProc @VkCmdSetLineWidth vkInstance ---- -- or less efficient: -- --
-- myCmdSetLineWidth <- vkGetProc @VkCmdSetLineWidth ---- -- Note: vkCmdSetLineWidthUnsafe and -- vkCmdSetLineWidthSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetLineWidth is an alias of -- vkCmdSetLineWidthUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetLineWidthSafe. vkCmdSetLineWidth :: VkCommandBuffer -> Float -> IO () -- | Success codes: VK_SUCCESS. -- -- Error codes: VK_ERROR_OUT_OF_HOST_MEMORY, -- VK_ERROR_OUT_OF_DEVICE_MEMORY, -- VK_ERROR_INITIALIZATION_FAILED, -- VK_ERROR_LAYER_NOT_PRESENT, -- VK_ERROR_EXTENSION_NOT_PRESENT, -- VK_ERROR_INCOMPATIBLE_DRIVER. -- --
-- VkResult vkCreateInstance -- ( const VkInstanceCreateInfo* pCreateInfo -- , const VkAllocationCallbacks* pAllocator -- , VkInstance* pInstance -- ) ---- -- vkCreateInstance registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCreateInstance <- vkGetInstanceProc @VkCreateInstance VK_NULL ---- -- or less efficient: -- --
-- myCreateInstance <- vkGetProc @VkCreateInstance ---- -- Note: vkCreateInstanceUnsafe and -- vkCreateInstanceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCreateInstance is an alias of -- vkCreateInstanceUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCreateInstanceSafe. -- -- Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetLineWidth -- ( VkCommandBuffer commandBuffer -- , float lineWidth -- ) ---- -- vkCmdSetLineWidth registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetLineWidth <- vkGetInstanceProc @VkCmdSetLineWidth vkInstance ---- -- or less efficient: -- --
-- myCmdSetLineWidth <- vkGetProc @VkCmdSetLineWidth ---- -- Note: vkCmdSetLineWidthUnsafe and -- vkCmdSetLineWidthSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetLineWidth is an alias of -- vkCmdSetLineWidthUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetLineWidthSafe. vkCmdSetLineWidthUnsafe :: VkCommandBuffer -> Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetLineWidth -- ( VkCommandBuffer commandBuffer -- , float lineWidth -- ) ---- -- vkCmdSetLineWidth registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetLineWidth <- vkGetInstanceProc @VkCmdSetLineWidth vkInstance ---- -- or less efficient: -- --
-- myCmdSetLineWidth <- vkGetProc @VkCmdSetLineWidth ---- -- Note: vkCmdSetLineWidthUnsafe and -- vkCmdSetLineWidthSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetLineWidth is an alias of -- vkCmdSetLineWidthUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetLineWidthSafe. vkCmdSetLineWidthSafe :: VkCommandBuffer -> Float -> IO () type VkCmdSetDepthBias = "vkCmdSetDepthBias" pattern VkCmdSetDepthBias :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBias -- ( VkCommandBuffer commandBuffer -- , float depthBiasConstantFactor -- , float depthBiasClamp -- , float depthBiasSlopeFactor -- ) ---- -- vkCmdSetDepthBias registry at www.khronos.org type HS_vkCmdSetDepthBias = VkCommandBuffer " commandBuffer" -> Float -> Float -> Float -> IO () type PFN_vkCmdSetDepthBias = FunPtr HS_vkCmdSetDepthBias -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBias -- ( VkCommandBuffer commandBuffer -- , float depthBiasConstantFactor -- , float depthBiasClamp -- , float depthBiasSlopeFactor -- ) ---- -- vkCmdSetDepthBias registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBias <- vkGetInstanceProc @VkCmdSetDepthBias vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBias <- vkGetProc @VkCmdSetDepthBias ---- -- Note: vkCmdSetDepthBiasUnsafe and -- vkCmdSetDepthBiasSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBias is an alias of -- vkCmdSetDepthBiasUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetDepthBiasSafe. vkCmdSetDepthBias :: VkCommandBuffer -> Float -> Float -> Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBias -- ( VkCommandBuffer commandBuffer -- , float depthBiasConstantFactor -- , float depthBiasClamp -- , float depthBiasSlopeFactor -- ) ---- -- vkCmdSetDepthBias registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBias <- vkGetInstanceProc @VkCmdSetDepthBias vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBias <- vkGetProc @VkCmdSetDepthBias ---- -- Note: vkCmdSetDepthBiasUnsafe and -- vkCmdSetDepthBiasSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBias is an alias of -- vkCmdSetDepthBiasUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetDepthBiasSafe. vkCmdSetDepthBiasUnsafe :: VkCommandBuffer -> Float -> Float -> Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBias -- ( VkCommandBuffer commandBuffer -- , float depthBiasConstantFactor -- , float depthBiasClamp -- , float depthBiasSlopeFactor -- ) ---- -- vkCmdSetDepthBias registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBias <- vkGetInstanceProc @VkCmdSetDepthBias vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBias <- vkGetProc @VkCmdSetDepthBias ---- -- Note: vkCmdSetDepthBiasUnsafe and -- vkCmdSetDepthBiasSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBias is an alias of -- vkCmdSetDepthBiasUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdSetDepthBiasSafe. vkCmdSetDepthBiasSafe :: VkCommandBuffer -> Float -> Float -> Float -> IO () type VkCmdSetBlendConstants = "vkCmdSetBlendConstants" pattern VkCmdSetBlendConstants :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetBlendConstants -- ( VkCommandBuffer commandBuffer -- , const float blendConstants[4] -- ) ---- -- vkCmdSetBlendConstants registry at www.khronos.org type HS_vkCmdSetBlendConstants = VkCommandBuffer " commandBuffer" -> Ptr Float " blendConstants" -> IO () type PFN_vkCmdSetBlendConstants = FunPtr HS_vkCmdSetBlendConstants -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetBlendConstants -- ( VkCommandBuffer commandBuffer -- , const float blendConstants[4] -- ) ---- -- vkCmdSetBlendConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetBlendConstants <- vkGetInstanceProc @VkCmdSetBlendConstants vkInstance ---- -- or less efficient: -- --
-- myCmdSetBlendConstants <- vkGetProc @VkCmdSetBlendConstants ---- -- Note: vkCmdSetBlendConstantsUnsafe and -- vkCmdSetBlendConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetBlendConstants is an alias of -- vkCmdSetBlendConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetBlendConstantsSafe. vkCmdSetBlendConstants :: VkCommandBuffer -> Ptr Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetBlendConstants -- ( VkCommandBuffer commandBuffer -- , const float blendConstants[4] -- ) ---- -- vkCmdSetBlendConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetBlendConstants <- vkGetInstanceProc @VkCmdSetBlendConstants vkInstance ---- -- or less efficient: -- --
-- myCmdSetBlendConstants <- vkGetProc @VkCmdSetBlendConstants ---- -- Note: vkCmdSetBlendConstantsUnsafe and -- vkCmdSetBlendConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetBlendConstants is an alias of -- vkCmdSetBlendConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetBlendConstantsSafe. vkCmdSetBlendConstantsUnsafe :: VkCommandBuffer -> Ptr Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetBlendConstants -- ( VkCommandBuffer commandBuffer -- , const float blendConstants[4] -- ) ---- -- vkCmdSetBlendConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetBlendConstants <- vkGetInstanceProc @VkCmdSetBlendConstants vkInstance ---- -- or less efficient: -- --
-- myCmdSetBlendConstants <- vkGetProc @VkCmdSetBlendConstants ---- -- Note: vkCmdSetBlendConstantsUnsafe and -- vkCmdSetBlendConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetBlendConstants is an alias of -- vkCmdSetBlendConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetBlendConstantsSafe. vkCmdSetBlendConstantsSafe :: VkCommandBuffer -> Ptr Float -> IO () type VkCmdSetDepthBounds = "vkCmdSetDepthBounds" pattern VkCmdSetDepthBounds :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBounds -- ( VkCommandBuffer commandBuffer -- , float minDepthBounds -- , float maxDepthBounds -- ) ---- -- vkCmdSetDepthBounds registry at www.khronos.org type HS_vkCmdSetDepthBounds = VkCommandBuffer " commandBuffer" -> Float -> Float -> IO () type PFN_vkCmdSetDepthBounds = FunPtr HS_vkCmdSetDepthBounds -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBounds -- ( VkCommandBuffer commandBuffer -- , float minDepthBounds -- , float maxDepthBounds -- ) ---- -- vkCmdSetDepthBounds registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBounds <- vkGetInstanceProc @VkCmdSetDepthBounds vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBounds <- vkGetProc @VkCmdSetDepthBounds ---- -- Note: vkCmdSetDepthBoundsUnsafe and -- vkCmdSetDepthBoundsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBounds is an alias of -- vkCmdSetDepthBoundsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDepthBoundsSafe. vkCmdSetDepthBounds :: VkCommandBuffer -> Float -> Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBounds -- ( VkCommandBuffer commandBuffer -- , float minDepthBounds -- , float maxDepthBounds -- ) ---- -- vkCmdSetDepthBounds registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBounds <- vkGetInstanceProc @VkCmdSetDepthBounds vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBounds <- vkGetProc @VkCmdSetDepthBounds ---- -- Note: vkCmdSetDepthBoundsUnsafe and -- vkCmdSetDepthBoundsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBounds is an alias of -- vkCmdSetDepthBoundsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDepthBoundsSafe. vkCmdSetDepthBoundsUnsafe :: VkCommandBuffer -> Float -> Float -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetDepthBounds -- ( VkCommandBuffer commandBuffer -- , float minDepthBounds -- , float maxDepthBounds -- ) ---- -- vkCmdSetDepthBounds registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetDepthBounds <- vkGetInstanceProc @VkCmdSetDepthBounds vkInstance ---- -- or less efficient: -- --
-- myCmdSetDepthBounds <- vkGetProc @VkCmdSetDepthBounds ---- -- Note: vkCmdSetDepthBoundsUnsafe and -- vkCmdSetDepthBoundsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetDepthBounds is an alias of -- vkCmdSetDepthBoundsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetDepthBoundsSafe. vkCmdSetDepthBoundsSafe :: VkCommandBuffer -> Float -> Float -> IO () type VkCmdSetStencilCompareMask = "vkCmdSetStencilCompareMask" pattern VkCmdSetStencilCompareMask :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilCompareMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t compareMask -- ) ---- -- vkCmdSetStencilCompareMask registry at www.khronos.org type HS_vkCmdSetStencilCompareMask = VkCommandBuffer " commandBuffer" -> VkStencilFaceFlags " faceMask" -> Word32 " compareMask" -> IO () type PFN_vkCmdSetStencilCompareMask = FunPtr HS_vkCmdSetStencilCompareMask -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilCompareMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t compareMask -- ) ---- -- vkCmdSetStencilCompareMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilCompareMask <- vkGetInstanceProc @VkCmdSetStencilCompareMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilCompareMask <- vkGetProc @VkCmdSetStencilCompareMask ---- -- Note: vkCmdSetStencilCompareMaskUnsafe and -- vkCmdSetStencilCompareMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilCompareMask is an alias of -- vkCmdSetStencilCompareMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilCompareMaskSafe. vkCmdSetStencilCompareMask :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () vkCmdSetStencilCompareMaskUnsafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilCompareMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t compareMask -- ) ---- -- vkCmdSetStencilCompareMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilCompareMask <- vkGetInstanceProc @VkCmdSetStencilCompareMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilCompareMask <- vkGetProc @VkCmdSetStencilCompareMask ---- -- Note: vkCmdSetStencilCompareMaskUnsafe and -- vkCmdSetStencilCompareMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilCompareMask is an alias of -- vkCmdSetStencilCompareMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilCompareMaskSafe. vkCmdSetStencilCompareMaskSafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () type VkCmdSetStencilWriteMask = "vkCmdSetStencilWriteMask" pattern VkCmdSetStencilWriteMask :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilWriteMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t writeMask -- ) ---- -- vkCmdSetStencilWriteMask registry at www.khronos.org type HS_vkCmdSetStencilWriteMask = VkCommandBuffer " commandBuffer" -> VkStencilFaceFlags " faceMask" -> Word32 " writeMask" -> IO () type PFN_vkCmdSetStencilWriteMask = FunPtr HS_vkCmdSetStencilWriteMask -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilWriteMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t writeMask -- ) ---- -- vkCmdSetStencilWriteMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilWriteMask <- vkGetInstanceProc @VkCmdSetStencilWriteMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilWriteMask <- vkGetProc @VkCmdSetStencilWriteMask ---- -- Note: vkCmdSetStencilWriteMaskUnsafe and -- vkCmdSetStencilWriteMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilWriteMask is an alias of -- vkCmdSetStencilWriteMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilWriteMaskSafe. vkCmdSetStencilWriteMask :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilWriteMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t writeMask -- ) ---- -- vkCmdSetStencilWriteMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilWriteMask <- vkGetInstanceProc @VkCmdSetStencilWriteMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilWriteMask <- vkGetProc @VkCmdSetStencilWriteMask ---- -- Note: vkCmdSetStencilWriteMaskUnsafe and -- vkCmdSetStencilWriteMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilWriteMask is an alias of -- vkCmdSetStencilWriteMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilWriteMaskSafe. vkCmdSetStencilWriteMaskUnsafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilWriteMask -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t writeMask -- ) ---- -- vkCmdSetStencilWriteMask registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilWriteMask <- vkGetInstanceProc @VkCmdSetStencilWriteMask vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilWriteMask <- vkGetProc @VkCmdSetStencilWriteMask ---- -- Note: vkCmdSetStencilWriteMaskUnsafe and -- vkCmdSetStencilWriteMaskSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilWriteMask is an alias of -- vkCmdSetStencilWriteMaskUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilWriteMaskSafe. vkCmdSetStencilWriteMaskSafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () type VkCmdSetStencilReference = "vkCmdSetStencilReference" pattern VkCmdSetStencilReference :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilReference -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t reference -- ) ---- -- vkCmdSetStencilReference registry at www.khronos.org type HS_vkCmdSetStencilReference = VkCommandBuffer " commandBuffer" -> VkStencilFaceFlags " faceMask" -> Word32 " reference" -> IO () type PFN_vkCmdSetStencilReference = FunPtr HS_vkCmdSetStencilReference -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilReference -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t reference -- ) ---- -- vkCmdSetStencilReference registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilReference <- vkGetInstanceProc @VkCmdSetStencilReference vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilReference <- vkGetProc @VkCmdSetStencilReference ---- -- Note: vkCmdSetStencilReferenceUnsafe and -- vkCmdSetStencilReferenceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilReference is an alias of -- vkCmdSetStencilReferenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilReferenceSafe. vkCmdSetStencilReference :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilReference -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t reference -- ) ---- -- vkCmdSetStencilReference registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilReference <- vkGetInstanceProc @VkCmdSetStencilReference vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilReference <- vkGetProc @VkCmdSetStencilReference ---- -- Note: vkCmdSetStencilReferenceUnsafe and -- vkCmdSetStencilReferenceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilReference is an alias of -- vkCmdSetStencilReferenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilReferenceSafe. vkCmdSetStencilReferenceUnsafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdSetStencilReference -- ( VkCommandBuffer commandBuffer -- , VkStencilFaceFlags faceMask -- , uint32_t reference -- ) ---- -- vkCmdSetStencilReference registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetStencilReference <- vkGetInstanceProc @VkCmdSetStencilReference vkInstance ---- -- or less efficient: -- --
-- myCmdSetStencilReference <- vkGetProc @VkCmdSetStencilReference ---- -- Note: vkCmdSetStencilReferenceUnsafe and -- vkCmdSetStencilReferenceSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdSetStencilReference is an alias of -- vkCmdSetStencilReferenceUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetStencilReferenceSafe. vkCmdSetStencilReferenceSafe :: VkCommandBuffer -> VkStencilFaceFlags -> Word32 -> IO () type VkCmdBindDescriptorSets = "vkCmdBindDescriptorSets" pattern VkCmdBindDescriptorSets :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindDescriptorSets -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipelineLayout layout -- , uint32_t firstSet -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- , uint32_t dynamicOffsetCount -- , const uint32_t* pDynamicOffsets -- ) ---- -- vkCmdBindDescriptorSets registry at www.khronos.org type HS_vkCmdBindDescriptorSets = VkCommandBuffer " commandBuffer" -> VkPipelineBindPoint " pipelineBindPoint" -> VkPipelineLayout " layout" -> Word32 " firstSet" -> Word32 " descriptorSetCount" -> Ptr VkDescriptorSet " pDescriptorSets" -> Word32 " dynamicOffsetCount" -> Ptr Word32 " pDynamicOffsets" -> IO () type PFN_vkCmdBindDescriptorSets = FunPtr HS_vkCmdBindDescriptorSets -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindDescriptorSets -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipelineLayout layout -- , uint32_t firstSet -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- , uint32_t dynamicOffsetCount -- , const uint32_t* pDynamicOffsets -- ) ---- -- vkCmdBindDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindDescriptorSets <- vkGetInstanceProc @VkCmdBindDescriptorSets vkInstance ---- -- or less efficient: -- --
-- myCmdBindDescriptorSets <- vkGetProc @VkCmdBindDescriptorSets ---- -- Note: vkCmdBindDescriptorSetsUnsafe and -- vkCmdBindDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindDescriptorSets is an alias of -- vkCmdBindDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindDescriptorSetsSafe. vkCmdBindDescriptorSets :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipelineLayout -> Word32 -> Word32 -> Ptr VkDescriptorSet -> Word32 -> Ptr Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindDescriptorSets -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipelineLayout layout -- , uint32_t firstSet -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- , uint32_t dynamicOffsetCount -- , const uint32_t* pDynamicOffsets -- ) ---- -- vkCmdBindDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindDescriptorSets <- vkGetInstanceProc @VkCmdBindDescriptorSets vkInstance ---- -- or less efficient: -- --
-- myCmdBindDescriptorSets <- vkGetProc @VkCmdBindDescriptorSets ---- -- Note: vkCmdBindDescriptorSetsUnsafe and -- vkCmdBindDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindDescriptorSets is an alias of -- vkCmdBindDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindDescriptorSetsSafe. vkCmdBindDescriptorSetsUnsafe :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipelineLayout -> Word32 -> Word32 -> Ptr VkDescriptorSet -> Word32 -> Ptr Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBindDescriptorSets -- ( VkCommandBuffer commandBuffer -- , VkPipelineBindPoint pipelineBindPoint -- , VkPipelineLayout layout -- , uint32_t firstSet -- , uint32_t descriptorSetCount -- , const VkDescriptorSet* pDescriptorSets -- , uint32_t dynamicOffsetCount -- , const uint32_t* pDynamicOffsets -- ) ---- -- vkCmdBindDescriptorSets registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindDescriptorSets <- vkGetInstanceProc @VkCmdBindDescriptorSets vkInstance ---- -- or less efficient: -- --
-- myCmdBindDescriptorSets <- vkGetProc @VkCmdBindDescriptorSets ---- -- Note: vkCmdBindDescriptorSetsUnsafe and -- vkCmdBindDescriptorSetsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindDescriptorSets is an alias of -- vkCmdBindDescriptorSetsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindDescriptorSetsSafe. vkCmdBindDescriptorSetsSafe :: VkCommandBuffer -> VkPipelineBindPoint -> VkPipelineLayout -> Word32 -> Word32 -> Ptr VkDescriptorSet -> Word32 -> Ptr Word32 -> IO () type VkCmdBindIndexBuffer = "vkCmdBindIndexBuffer" pattern VkCmdBindIndexBuffer :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindIndexBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkIndexType indexType -- ) ---- -- vkCmdBindIndexBuffer registry at www.khronos.org type HS_vkCmdBindIndexBuffer = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> VkIndexType " indexType" -> IO () type PFN_vkCmdBindIndexBuffer = FunPtr HS_vkCmdBindIndexBuffer -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindIndexBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkIndexType indexType -- ) ---- -- vkCmdBindIndexBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindIndexBuffer <- vkGetInstanceProc @VkCmdBindIndexBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdBindIndexBuffer <- vkGetProc @VkCmdBindIndexBuffer ---- -- Note: vkCmdBindIndexBufferUnsafe and -- vkCmdBindIndexBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindIndexBuffer is an alias of -- vkCmdBindIndexBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindIndexBufferSafe. vkCmdBindIndexBuffer :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkIndexType -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindIndexBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkIndexType indexType -- ) ---- -- vkCmdBindIndexBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindIndexBuffer <- vkGetInstanceProc @VkCmdBindIndexBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdBindIndexBuffer <- vkGetProc @VkCmdBindIndexBuffer ---- -- Note: vkCmdBindIndexBufferUnsafe and -- vkCmdBindIndexBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindIndexBuffer is an alias of -- vkCmdBindIndexBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindIndexBufferSafe. vkCmdBindIndexBufferUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkIndexType -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindIndexBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , VkIndexType indexType -- ) ---- -- vkCmdBindIndexBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindIndexBuffer <- vkGetInstanceProc @VkCmdBindIndexBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdBindIndexBuffer <- vkGetProc @VkCmdBindIndexBuffer ---- -- Note: vkCmdBindIndexBufferUnsafe and -- vkCmdBindIndexBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindIndexBuffer is an alias of -- vkCmdBindIndexBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindIndexBufferSafe. vkCmdBindIndexBufferSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkIndexType -> IO () type VkCmdBindVertexBuffers = "vkCmdBindVertexBuffers" pattern VkCmdBindVertexBuffers :: CString -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindVertexBuffers -- ( VkCommandBuffer commandBuffer -- , uint32_t firstBinding -- , uint32_t bindingCount -- , const VkBuffer* pBuffers -- , const VkDeviceSize* pOffsets -- ) ---- -- vkCmdBindVertexBuffers registry at www.khronos.org type HS_vkCmdBindVertexBuffers = VkCommandBuffer " commandBuffer" -> Word32 " firstBinding" -> Word32 " bindingCount" -> Ptr VkBuffer " pBuffers" -> Ptr VkDeviceSize " pOffsets" -> IO () type PFN_vkCmdBindVertexBuffers = FunPtr HS_vkCmdBindVertexBuffers -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindVertexBuffers -- ( VkCommandBuffer commandBuffer -- , uint32_t firstBinding -- , uint32_t bindingCount -- , const VkBuffer* pBuffers -- , const VkDeviceSize* pOffsets -- ) ---- -- vkCmdBindVertexBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindVertexBuffers <- vkGetInstanceProc @VkCmdBindVertexBuffers vkInstance ---- -- or less efficient: -- --
-- myCmdBindVertexBuffers <- vkGetProc @VkCmdBindVertexBuffers ---- -- Note: vkCmdBindVertexBuffersUnsafe and -- vkCmdBindVertexBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindVertexBuffers is an alias of -- vkCmdBindVertexBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindVertexBuffersSafe. vkCmdBindVertexBuffers :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkBuffer -> Ptr VkDeviceSize -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindVertexBuffers -- ( VkCommandBuffer commandBuffer -- , uint32_t firstBinding -- , uint32_t bindingCount -- , const VkBuffer* pBuffers -- , const VkDeviceSize* pOffsets -- ) ---- -- vkCmdBindVertexBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindVertexBuffers <- vkGetInstanceProc @VkCmdBindVertexBuffers vkInstance ---- -- or less efficient: -- --
-- myCmdBindVertexBuffers <- vkGetProc @VkCmdBindVertexBuffers ---- -- Note: vkCmdBindVertexBuffersUnsafe and -- vkCmdBindVertexBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindVertexBuffers is an alias of -- vkCmdBindVertexBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindVertexBuffersSafe. vkCmdBindVertexBuffersUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkBuffer -> Ptr VkDeviceSize -> IO () -- | Queues: graphics. -- -- Renderpass: both -- --
-- void vkCmdBindVertexBuffers -- ( VkCommandBuffer commandBuffer -- , uint32_t firstBinding -- , uint32_t bindingCount -- , const VkBuffer* pBuffers -- , const VkDeviceSize* pOffsets -- ) ---- -- vkCmdBindVertexBuffers registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBindVertexBuffers <- vkGetInstanceProc @VkCmdBindVertexBuffers vkInstance ---- -- or less efficient: -- --
-- myCmdBindVertexBuffers <- vkGetProc @VkCmdBindVertexBuffers ---- -- Note: vkCmdBindVertexBuffersUnsafe and -- vkCmdBindVertexBuffersSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBindVertexBuffers is an alias of -- vkCmdBindVertexBuffersUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBindVertexBuffersSafe. vkCmdBindVertexBuffersSafe :: VkCommandBuffer -> Word32 -> Word32 -> Ptr VkBuffer -> Ptr VkDeviceSize -> IO () type VkCmdDraw = "vkCmdDraw" pattern VkCmdDraw :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDraw -- ( VkCommandBuffer commandBuffer -- , uint32_t vertexCount -- , uint32_t instanceCount -- , uint32_t firstVertex -- , uint32_t firstInstance -- ) ---- -- vkCmdDraw registry at www.khronos.org type HS_vkCmdDraw = VkCommandBuffer " commandBuffer" -> Word32 " vertexCount" -> Word32 " instanceCount" -> Word32 " firstVertex" -> Word32 " firstInstance" -> IO () type PFN_vkCmdDraw = FunPtr HS_vkCmdDraw -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDraw -- ( VkCommandBuffer commandBuffer -- , uint32_t vertexCount -- , uint32_t instanceCount -- , uint32_t firstVertex -- , uint32_t firstInstance -- ) ---- -- vkCmdDraw registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDraw <- vkGetInstanceProc @VkCmdDraw vkInstance ---- -- or less efficient: -- --
-- myCmdDraw <- vkGetProc @VkCmdDraw ---- -- Note: vkCmdDrawUnsafe and vkCmdDrawSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkCmdDraw is an alias of -- vkCmdDrawUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkCmdDrawSafe. vkCmdDraw :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDraw -- ( VkCommandBuffer commandBuffer -- , uint32_t vertexCount -- , uint32_t instanceCount -- , uint32_t firstVertex -- , uint32_t firstInstance -- ) ---- -- vkCmdDraw registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDraw <- vkGetInstanceProc @VkCmdDraw vkInstance ---- -- or less efficient: -- --
-- myCmdDraw <- vkGetProc @VkCmdDraw ---- -- Note: vkCmdDrawUnsafe and vkCmdDrawSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkCmdDraw is an alias of -- vkCmdDrawUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkCmdDrawSafe. vkCmdDrawUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDraw -- ( VkCommandBuffer commandBuffer -- , uint32_t vertexCount -- , uint32_t instanceCount -- , uint32_t firstVertex -- , uint32_t firstInstance -- ) ---- -- vkCmdDraw registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDraw <- vkGetInstanceProc @VkCmdDraw vkInstance ---- -- or less efficient: -- --
-- myCmdDraw <- vkGetProc @VkCmdDraw ---- -- Note: vkCmdDrawUnsafe and vkCmdDrawSafe are -- the unsafe and safe FFI imports of this function, -- respectively. vkCmdDraw is an alias of -- vkCmdDrawUnsafe when the useUnsafeFFIDefault cabal -- flag is enabled; otherwise, it is an alias of vkCmdDrawSafe. vkCmdDrawSafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Word32 -> IO () type VkCmdDrawIndexed = "vkCmdDrawIndexed" pattern VkCmdDrawIndexed :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexed -- ( VkCommandBuffer commandBuffer -- , uint32_t indexCount -- , uint32_t instanceCount -- , uint32_t firstIndex -- , int32_t vertexOffset -- , uint32_t firstInstance -- ) ---- -- vkCmdDrawIndexed registry at www.khronos.org type HS_vkCmdDrawIndexed = VkCommandBuffer " commandBuffer" -> Word32 " indexCount" -> Word32 " instanceCount" -> Word32 " firstIndex" -> Int32 " vertexOffset" -> Word32 " firstInstance" -> IO () type PFN_vkCmdDrawIndexed = FunPtr HS_vkCmdDrawIndexed -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexed -- ( VkCommandBuffer commandBuffer -- , uint32_t indexCount -- , uint32_t instanceCount -- , uint32_t firstIndex -- , int32_t vertexOffset -- , uint32_t firstInstance -- ) ---- -- vkCmdDrawIndexed registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexed <- vkGetInstanceProc @VkCmdDrawIndexed vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexed <- vkGetProc @VkCmdDrawIndexed ---- -- Note: vkCmdDrawIndexedUnsafe and -- vkCmdDrawIndexedSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexed is an alias of -- vkCmdDrawIndexedUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndexedSafe. vkCmdDrawIndexed :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Int32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexed -- ( VkCommandBuffer commandBuffer -- , uint32_t indexCount -- , uint32_t instanceCount -- , uint32_t firstIndex -- , int32_t vertexOffset -- , uint32_t firstInstance -- ) ---- -- vkCmdDrawIndexed registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexed <- vkGetInstanceProc @VkCmdDrawIndexed vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexed <- vkGetProc @VkCmdDrawIndexed ---- -- Note: vkCmdDrawIndexedUnsafe and -- vkCmdDrawIndexedSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexed is an alias of -- vkCmdDrawIndexedUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndexedSafe. vkCmdDrawIndexedUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Int32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexed -- ( VkCommandBuffer commandBuffer -- , uint32_t indexCount -- , uint32_t instanceCount -- , uint32_t firstIndex -- , int32_t vertexOffset -- , uint32_t firstInstance -- ) ---- -- vkCmdDrawIndexed registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexed <- vkGetInstanceProc @VkCmdDrawIndexed vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexed <- vkGetProc @VkCmdDrawIndexed ---- -- Note: vkCmdDrawIndexedUnsafe and -- vkCmdDrawIndexedSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexed is an alias of -- vkCmdDrawIndexedUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndexedSafe. vkCmdDrawIndexedSafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> Int32 -> Word32 -> IO () type VkCmdDrawIndirect = "vkCmdDrawIndirect" pattern VkCmdDrawIndirect :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirect registry at www.khronos.org type HS_vkCmdDrawIndirect = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> Word32 " drawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndirect = FunPtr HS_vkCmdDrawIndirect -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndirect <- vkGetInstanceProc @VkCmdDrawIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndirect <- vkGetProc @VkCmdDrawIndirect ---- -- Note: vkCmdDrawIndirectUnsafe and -- vkCmdDrawIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndirect is an alias of -- vkCmdDrawIndirectUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndirectSafe. vkCmdDrawIndirect :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndirect <- vkGetInstanceProc @VkCmdDrawIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndirect <- vkGetProc @VkCmdDrawIndirect ---- -- Note: vkCmdDrawIndirectUnsafe and -- vkCmdDrawIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndirect is an alias of -- vkCmdDrawIndirectUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndirectSafe. vkCmdDrawIndirectUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndirect <- vkGetInstanceProc @VkCmdDrawIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndirect <- vkGetProc @VkCmdDrawIndirect ---- -- Note: vkCmdDrawIndirectUnsafe and -- vkCmdDrawIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndirect is an alias of -- vkCmdDrawIndirectUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdDrawIndirectSafe. vkCmdDrawIndirectSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () type VkCmdDrawIndexedIndirect = "vkCmdDrawIndexedIndirect" pattern VkCmdDrawIndexedIndirect :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirect registry at www.khronos.org type HS_vkCmdDrawIndexedIndirect = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> Word32 " drawCount" -> Word32 " stride" -> IO () type PFN_vkCmdDrawIndexedIndirect = FunPtr HS_vkCmdDrawIndexedIndirect -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexedIndirect <- vkGetInstanceProc @VkCmdDrawIndexedIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexedIndirect <- vkGetProc @VkCmdDrawIndexedIndirect ---- -- Note: vkCmdDrawIndexedIndirectUnsafe and -- vkCmdDrawIndexedIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexedIndirect is an alias of -- vkCmdDrawIndexedIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDrawIndexedIndirectSafe. vkCmdDrawIndexedIndirect :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexedIndirect <- vkGetInstanceProc @VkCmdDrawIndexedIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexedIndirect <- vkGetProc @VkCmdDrawIndexedIndirect ---- -- Note: vkCmdDrawIndexedIndirectUnsafe and -- vkCmdDrawIndexedIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexedIndirect is an alias of -- vkCmdDrawIndexedIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDrawIndexedIndirectSafe. vkCmdDrawIndexedIndirectUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdDrawIndexedIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- , uint32_t drawCount -- , uint32_t stride -- ) ---- -- vkCmdDrawIndexedIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDrawIndexedIndirect <- vkGetInstanceProc @VkCmdDrawIndexedIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDrawIndexedIndirect <- vkGetProc @VkCmdDrawIndexedIndirect ---- -- Note: vkCmdDrawIndexedIndirectUnsafe and -- vkCmdDrawIndexedIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDrawIndexedIndirect is an alias of -- vkCmdDrawIndexedIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDrawIndexedIndirectSafe. vkCmdDrawIndexedIndirectSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> Word32 -> Word32 -> IO () type VkCmdDispatch = "vkCmdDispatch" pattern VkCmdDispatch :: CString -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatch -- ( VkCommandBuffer commandBuffer -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatch registry at www.khronos.org type HS_vkCmdDispatch = VkCommandBuffer " commandBuffer" -> Word32 " groupCountX" -> Word32 " groupCountY" -> Word32 " groupCountZ" -> IO () type PFN_vkCmdDispatch = FunPtr HS_vkCmdDispatch -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatch -- ( VkCommandBuffer commandBuffer -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatch registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatch <- vkGetInstanceProc @VkCmdDispatch vkInstance ---- -- or less efficient: -- --
-- myCmdDispatch <- vkGetProc @VkCmdDispatch ---- -- Note: vkCmdDispatchUnsafe and -- vkCmdDispatchSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdDispatch is -- an alias of vkCmdDispatchUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchSafe. vkCmdDispatch :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatch -- ( VkCommandBuffer commandBuffer -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatch registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatch <- vkGetInstanceProc @VkCmdDispatch vkInstance ---- -- or less efficient: -- --
-- myCmdDispatch <- vkGetProc @VkCmdDispatch ---- -- Note: vkCmdDispatchUnsafe and -- vkCmdDispatchSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdDispatch is -- an alias of vkCmdDispatchUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchSafe. vkCmdDispatchUnsafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> IO () -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatch -- ( VkCommandBuffer commandBuffer -- , uint32_t groupCountX -- , uint32_t groupCountY -- , uint32_t groupCountZ -- ) ---- -- vkCmdDispatch registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatch <- vkGetInstanceProc @VkCmdDispatch vkInstance ---- -- or less efficient: -- --
-- myCmdDispatch <- vkGetProc @VkCmdDispatch ---- -- Note: vkCmdDispatchUnsafe and -- vkCmdDispatchSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdDispatch is -- an alias of vkCmdDispatchUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchSafe. vkCmdDispatchSafe :: VkCommandBuffer -> Word32 -> Word32 -> Word32 -> IO () type VkCmdDispatchIndirect = "vkCmdDispatchIndirect" pattern VkCmdDispatchIndirect :: CString -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatchIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- ) ---- -- vkCmdDispatchIndirect registry at www.khronos.org type HS_vkCmdDispatchIndirect = VkCommandBuffer " commandBuffer" -> VkBuffer " buffer" -> VkDeviceSize " offset" -> IO () type PFN_vkCmdDispatchIndirect = FunPtr HS_vkCmdDispatchIndirect -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatchIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- ) ---- -- vkCmdDispatchIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchIndirect <- vkGetInstanceProc @VkCmdDispatchIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchIndirect <- vkGetProc @VkCmdDispatchIndirect ---- -- Note: vkCmdDispatchIndirectUnsafe and -- vkCmdDispatchIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchIndirect is an alias of -- vkCmdDispatchIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchIndirectSafe. vkCmdDispatchIndirect :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> IO () -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatchIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- ) ---- -- vkCmdDispatchIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchIndirect <- vkGetInstanceProc @VkCmdDispatchIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchIndirect <- vkGetProc @VkCmdDispatchIndirect ---- -- Note: vkCmdDispatchIndirectUnsafe and -- vkCmdDispatchIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchIndirect is an alias of -- vkCmdDispatchIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchIndirectSafe. vkCmdDispatchIndirectUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> IO () -- | Queues: compute. -- -- Renderpass: outside -- -- Pipeline: compute -- --
-- void vkCmdDispatchIndirect -- ( VkCommandBuffer commandBuffer -- , VkBuffer buffer -- , VkDeviceSize offset -- ) ---- -- vkCmdDispatchIndirect registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdDispatchIndirect <- vkGetInstanceProc @VkCmdDispatchIndirect vkInstance ---- -- or less efficient: -- --
-- myCmdDispatchIndirect <- vkGetProc @VkCmdDispatchIndirect ---- -- Note: vkCmdDispatchIndirectUnsafe and -- vkCmdDispatchIndirectSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdDispatchIndirect is an alias of -- vkCmdDispatchIndirectUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdDispatchIndirectSafe. vkCmdDispatchIndirectSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> IO () type VkCmdCopyBuffer = "vkCmdCopyBuffer" pattern VkCmdCopyBuffer :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferCopy* pRegions -- ) ---- -- vkCmdCopyBuffer registry at www.khronos.org type HS_vkCmdCopyBuffer = VkCommandBuffer " commandBuffer" -> VkBuffer " srcBuffer" -> VkBuffer " dstBuffer" -> Word32 " regionCount" -> Ptr VkBufferCopy " pRegions" -> IO () type PFN_vkCmdCopyBuffer = FunPtr HS_vkCmdCopyBuffer -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferCopy* pRegions -- ) ---- -- vkCmdCopyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBuffer <- vkGetInstanceProc @VkCmdCopyBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBuffer <- vkGetProc @VkCmdCopyBuffer ---- -- Note: vkCmdCopyBufferUnsafe and -- vkCmdCopyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyBuffer -- is an alias of vkCmdCopyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferSafe. vkCmdCopyBuffer :: VkCommandBuffer -> VkBuffer -> VkBuffer -> Word32 -> Ptr VkBufferCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferCopy* pRegions -- ) ---- -- vkCmdCopyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBuffer <- vkGetInstanceProc @VkCmdCopyBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBuffer <- vkGetProc @VkCmdCopyBuffer ---- -- Note: vkCmdCopyBufferUnsafe and -- vkCmdCopyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyBuffer -- is an alias of vkCmdCopyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferSafe. vkCmdCopyBufferUnsafe :: VkCommandBuffer -> VkBuffer -> VkBuffer -> Word32 -> Ptr VkBufferCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferCopy* pRegions -- ) ---- -- vkCmdCopyBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBuffer <- vkGetInstanceProc @VkCmdCopyBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBuffer <- vkGetProc @VkCmdCopyBuffer ---- -- Note: vkCmdCopyBufferUnsafe and -- vkCmdCopyBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyBuffer -- is an alias of vkCmdCopyBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferSafe. vkCmdCopyBufferSafe :: VkCommandBuffer -> VkBuffer -> VkBuffer -> Word32 -> Ptr VkBufferCopy -> IO () type VkCmdCopyImage = "vkCmdCopyImage" pattern VkCmdCopyImage :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageCopy* pRegions -- ) ---- -- vkCmdCopyImage registry at www.khronos.org type HS_vkCmdCopyImage = VkCommandBuffer " commandBuffer" -> VkImage " srcImage" -> VkImageLayout " srcImageLayout" -> VkImage " dstImage" -> VkImageLayout " dstImageLayout" -> Word32 " regionCount" -> Ptr VkImageCopy " pRegions" -> IO () type PFN_vkCmdCopyImage = FunPtr HS_vkCmdCopyImage -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageCopy* pRegions -- ) ---- -- vkCmdCopyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImage <- vkGetInstanceProc @VkCmdCopyImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImage <- vkGetProc @VkCmdCopyImage ---- -- Note: vkCmdCopyImageUnsafe and -- vkCmdCopyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyImage is -- an alias of vkCmdCopyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageSafe. vkCmdCopyImage :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageCopy* pRegions -- ) ---- -- vkCmdCopyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImage <- vkGetInstanceProc @VkCmdCopyImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImage <- vkGetProc @VkCmdCopyImage ---- -- Note: vkCmdCopyImageUnsafe and -- vkCmdCopyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyImage is -- an alias of vkCmdCopyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageSafe. vkCmdCopyImageUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageCopy* pRegions -- ) ---- -- vkCmdCopyImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImage <- vkGetInstanceProc @VkCmdCopyImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImage <- vkGetProc @VkCmdCopyImage ---- -- Note: vkCmdCopyImageUnsafe and -- vkCmdCopyImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdCopyImage is -- an alias of vkCmdCopyImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageSafe. vkCmdCopyImageSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageCopy -> IO () type VkCmdBlitImage = "vkCmdBlitImage" pattern VkCmdBlitImage :: CString -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdBlitImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageBlit* pRegions -- , VkFilter filter -- ) ---- -- vkCmdBlitImage registry at www.khronos.org type HS_vkCmdBlitImage = VkCommandBuffer " commandBuffer" -> VkImage " srcImage" -> VkImageLayout " srcImageLayout" -> VkImage " dstImage" -> VkImageLayout " dstImageLayout" -> Word32 " regionCount" -> Ptr VkImageBlit " pRegions" -> VkFilter " filter" -> IO () type PFN_vkCmdBlitImage = FunPtr HS_vkCmdBlitImage -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdBlitImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageBlit* pRegions -- , VkFilter filter -- ) ---- -- vkCmdBlitImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBlitImage <- vkGetInstanceProc @VkCmdBlitImage vkInstance ---- -- or less efficient: -- --
-- myCmdBlitImage <- vkGetProc @VkCmdBlitImage ---- -- Note: vkCmdBlitImageUnsafe and -- vkCmdBlitImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBlitImage is -- an alias of vkCmdBlitImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBlitImageSafe. vkCmdBlitImage :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageBlit -> VkFilter -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdBlitImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageBlit* pRegions -- , VkFilter filter -- ) ---- -- vkCmdBlitImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBlitImage <- vkGetInstanceProc @VkCmdBlitImage vkInstance ---- -- or less efficient: -- --
-- myCmdBlitImage <- vkGetProc @VkCmdBlitImage ---- -- Note: vkCmdBlitImageUnsafe and -- vkCmdBlitImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBlitImage is -- an alias of vkCmdBlitImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBlitImageSafe. vkCmdBlitImageUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageBlit -> VkFilter -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdBlitImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageBlit* pRegions -- , VkFilter filter -- ) ---- -- vkCmdBlitImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBlitImage <- vkGetInstanceProc @VkCmdBlitImage vkInstance ---- -- or less efficient: -- --
-- myCmdBlitImage <- vkGetProc @VkCmdBlitImage ---- -- Note: vkCmdBlitImageUnsafe and -- vkCmdBlitImageSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBlitImage is -- an alias of vkCmdBlitImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBlitImageSafe. vkCmdBlitImageSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageBlit -> VkFilter -> IO () type VkCmdCopyBufferToImage = "vkCmdCopyBufferToImage" pattern VkCmdCopyBufferToImage :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBufferToImage -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyBufferToImage registry at www.khronos.org type HS_vkCmdCopyBufferToImage = VkCommandBuffer " commandBuffer" -> VkBuffer " srcBuffer" -> VkImage " dstImage" -> VkImageLayout " dstImageLayout" -> Word32 " regionCount" -> Ptr VkBufferImageCopy " pRegions" -> IO () type PFN_vkCmdCopyBufferToImage = FunPtr HS_vkCmdCopyBufferToImage -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBufferToImage -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyBufferToImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBufferToImage <- vkGetInstanceProc @VkCmdCopyBufferToImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBufferToImage <- vkGetProc @VkCmdCopyBufferToImage ---- -- Note: vkCmdCopyBufferToImageUnsafe and -- vkCmdCopyBufferToImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyBufferToImage is an alias of -- vkCmdCopyBufferToImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferToImageSafe. vkCmdCopyBufferToImage :: VkCommandBuffer -> VkBuffer -> VkImage -> VkImageLayout -> Word32 -> Ptr VkBufferImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBufferToImage -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyBufferToImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBufferToImage <- vkGetInstanceProc @VkCmdCopyBufferToImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBufferToImage <- vkGetProc @VkCmdCopyBufferToImage ---- -- Note: vkCmdCopyBufferToImageUnsafe and -- vkCmdCopyBufferToImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyBufferToImage is an alias of -- vkCmdCopyBufferToImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferToImageSafe. vkCmdCopyBufferToImageUnsafe :: VkCommandBuffer -> VkBuffer -> VkImage -> VkImageLayout -> Word32 -> Ptr VkBufferImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyBufferToImage -- ( VkCommandBuffer commandBuffer -- , VkBuffer srcBuffer -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyBufferToImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyBufferToImage <- vkGetInstanceProc @VkCmdCopyBufferToImage vkInstance ---- -- or less efficient: -- --
-- myCmdCopyBufferToImage <- vkGetProc @VkCmdCopyBufferToImage ---- -- Note: vkCmdCopyBufferToImageUnsafe and -- vkCmdCopyBufferToImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyBufferToImage is an alias of -- vkCmdCopyBufferToImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyBufferToImageSafe. vkCmdCopyBufferToImageSafe :: VkCommandBuffer -> VkBuffer -> VkImage -> VkImageLayout -> Word32 -> Ptr VkBufferImageCopy -> IO () type VkCmdCopyImageToBuffer = "vkCmdCopyImageToBuffer" pattern VkCmdCopyImageToBuffer :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImageToBuffer -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyImageToBuffer registry at www.khronos.org type HS_vkCmdCopyImageToBuffer = VkCommandBuffer " commandBuffer" -> VkImage " srcImage" -> VkImageLayout " srcImageLayout" -> VkBuffer " dstBuffer" -> Word32 " regionCount" -> Ptr VkBufferImageCopy " pRegions" -> IO () type PFN_vkCmdCopyImageToBuffer = FunPtr HS_vkCmdCopyImageToBuffer -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImageToBuffer -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyImageToBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImageToBuffer <- vkGetInstanceProc @VkCmdCopyImageToBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImageToBuffer <- vkGetProc @VkCmdCopyImageToBuffer ---- -- Note: vkCmdCopyImageToBufferUnsafe and -- vkCmdCopyImageToBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyImageToBuffer is an alias of -- vkCmdCopyImageToBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageToBufferSafe. vkCmdCopyImageToBuffer :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkBuffer -> Word32 -> Ptr VkBufferImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImageToBuffer -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyImageToBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImageToBuffer <- vkGetInstanceProc @VkCmdCopyImageToBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImageToBuffer <- vkGetProc @VkCmdCopyImageToBuffer ---- -- Note: vkCmdCopyImageToBufferUnsafe and -- vkCmdCopyImageToBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyImageToBuffer is an alias of -- vkCmdCopyImageToBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageToBufferSafe. vkCmdCopyImageToBufferUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkBuffer -> Word32 -> Ptr VkBufferImageCopy -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyImageToBuffer -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkBuffer dstBuffer -- , uint32_t regionCount -- , const VkBufferImageCopy* pRegions -- ) ---- -- vkCmdCopyImageToBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyImageToBuffer <- vkGetInstanceProc @VkCmdCopyImageToBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdCopyImageToBuffer <- vkGetProc @VkCmdCopyImageToBuffer ---- -- Note: vkCmdCopyImageToBufferUnsafe and -- vkCmdCopyImageToBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyImageToBuffer is an alias of -- vkCmdCopyImageToBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyImageToBufferSafe. vkCmdCopyImageToBufferSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkBuffer -> Word32 -> Ptr VkBufferImageCopy -> IO () type VkCmdUpdateBuffer = "vkCmdUpdateBuffer" pattern VkCmdUpdateBuffer :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdUpdateBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize dataSize -- , const void* pData -- ) ---- -- vkCmdUpdateBuffer registry at www.khronos.org type HS_vkCmdUpdateBuffer = VkCommandBuffer " commandBuffer" -> VkBuffer " dstBuffer" -> VkDeviceSize " dstOffset" -> VkDeviceSize " dataSize" -> Ptr Void " pData" -> IO () type PFN_vkCmdUpdateBuffer = FunPtr HS_vkCmdUpdateBuffer -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdUpdateBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize dataSize -- , const void* pData -- ) ---- -- vkCmdUpdateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdUpdateBuffer <- vkGetInstanceProc @VkCmdUpdateBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdUpdateBuffer <- vkGetProc @VkCmdUpdateBuffer ---- -- Note: vkCmdUpdateBufferUnsafe and -- vkCmdUpdateBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdUpdateBuffer is an alias of -- vkCmdUpdateBufferUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdUpdateBufferSafe. vkCmdUpdateBuffer :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Ptr Void -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdUpdateBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize dataSize -- , const void* pData -- ) ---- -- vkCmdUpdateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdUpdateBuffer <- vkGetInstanceProc @VkCmdUpdateBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdUpdateBuffer <- vkGetProc @VkCmdUpdateBuffer ---- -- Note: vkCmdUpdateBufferUnsafe and -- vkCmdUpdateBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdUpdateBuffer is an alias of -- vkCmdUpdateBufferUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdUpdateBufferSafe. vkCmdUpdateBufferUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Ptr Void -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdUpdateBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize dataSize -- , const void* pData -- ) ---- -- vkCmdUpdateBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdUpdateBuffer <- vkGetInstanceProc @VkCmdUpdateBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdUpdateBuffer <- vkGetProc @VkCmdUpdateBuffer ---- -- Note: vkCmdUpdateBufferUnsafe and -- vkCmdUpdateBufferSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdUpdateBuffer is an alias of -- vkCmdUpdateBufferUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdUpdateBufferSafe. vkCmdUpdateBufferSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Ptr Void -> IO () type VkCmdFillBuffer = "vkCmdFillBuffer" pattern VkCmdFillBuffer :: CString -- | transfer support is only available when VK_KHR_maintenance1 is -- enabled, as documented in valid usage language in the specification -- -- Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdFillBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize size -- , uint32_t data -- ) ---- -- vkCmdFillBuffer registry at www.khronos.org type HS_vkCmdFillBuffer = VkCommandBuffer " commandBuffer" -> VkBuffer " dstBuffer" -> VkDeviceSize " dstOffset" -> VkDeviceSize " size" -> Word32 " data" -> IO () type PFN_vkCmdFillBuffer = FunPtr HS_vkCmdFillBuffer -- | transfer support is only available when VK_KHR_maintenance1 is -- enabled, as documented in valid usage language in the specification -- -- Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdFillBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize size -- , uint32_t data -- ) ---- -- vkCmdFillBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdFillBuffer <- vkGetInstanceProc @VkCmdFillBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdFillBuffer <- vkGetProc @VkCmdFillBuffer ---- -- Note: vkCmdFillBufferUnsafe and -- vkCmdFillBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdFillBuffer -- is an alias of vkCmdFillBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdFillBufferSafe. vkCmdFillBuffer :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Word32 -> IO () -- | transfer support is only available when VK_KHR_maintenance1 is -- enabled, as documented in valid usage language in the specification -- -- Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdFillBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize size -- , uint32_t data -- ) ---- -- vkCmdFillBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdFillBuffer <- vkGetInstanceProc @VkCmdFillBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdFillBuffer <- vkGetProc @VkCmdFillBuffer ---- -- Note: vkCmdFillBufferUnsafe and -- vkCmdFillBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdFillBuffer -- is an alias of vkCmdFillBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdFillBufferSafe. vkCmdFillBufferUnsafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Word32 -> IO () -- | transfer support is only available when VK_KHR_maintenance1 is -- enabled, as documented in valid usage language in the specification -- -- Queues: transfer, graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdFillBuffer -- ( VkCommandBuffer commandBuffer -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize size -- , uint32_t data -- ) ---- -- vkCmdFillBuffer registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdFillBuffer <- vkGetInstanceProc @VkCmdFillBuffer vkInstance ---- -- or less efficient: -- --
-- myCmdFillBuffer <- vkGetProc @VkCmdFillBuffer ---- -- Note: vkCmdFillBufferUnsafe and -- vkCmdFillBufferSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdFillBuffer -- is an alias of vkCmdFillBufferUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdFillBufferSafe. vkCmdFillBufferSafe :: VkCommandBuffer -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> Word32 -> IO () type VkCmdClearColorImage = "vkCmdClearColorImage" pattern VkCmdClearColorImage :: CString -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearColorImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearColorValue* pColor -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearColorImage registry at www.khronos.org type HS_vkCmdClearColorImage = VkCommandBuffer " commandBuffer" -> VkImage " image" -> VkImageLayout " imageLayout" -> Ptr VkClearColorValue " pColor" -> Word32 " rangeCount" -> Ptr VkImageSubresourceRange " pRanges" -> IO () type PFN_vkCmdClearColorImage = FunPtr HS_vkCmdClearColorImage -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearColorImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearColorValue* pColor -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearColorImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearColorImage <- vkGetInstanceProc @VkCmdClearColorImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearColorImage <- vkGetProc @VkCmdClearColorImage ---- -- Note: vkCmdClearColorImageUnsafe and -- vkCmdClearColorImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearColorImage is an alias of -- vkCmdClearColorImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearColorImageSafe. vkCmdClearColorImage :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearColorValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearColorImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearColorValue* pColor -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearColorImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearColorImage <- vkGetInstanceProc @VkCmdClearColorImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearColorImage <- vkGetProc @VkCmdClearColorImage ---- -- Note: vkCmdClearColorImageUnsafe and -- vkCmdClearColorImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearColorImage is an alias of -- vkCmdClearColorImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearColorImageSafe. vkCmdClearColorImageUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearColorValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearColorImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearColorValue* pColor -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearColorImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearColorImage <- vkGetInstanceProc @VkCmdClearColorImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearColorImage <- vkGetProc @VkCmdClearColorImage ---- -- Note: vkCmdClearColorImageUnsafe and -- vkCmdClearColorImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearColorImage is an alias of -- vkCmdClearColorImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearColorImageSafe. vkCmdClearColorImageSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearColorValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () type VkCmdClearDepthStencilImage = "vkCmdClearDepthStencilImage" pattern VkCmdClearDepthStencilImage :: CString -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearDepthStencilImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearDepthStencilValue* pDepthStencil -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearDepthStencilImage registry at www.khronos.org type HS_vkCmdClearDepthStencilImage = VkCommandBuffer " commandBuffer" -> VkImage " image" -> VkImageLayout " imageLayout" -> Ptr VkClearDepthStencilValue " pDepthStencil" -> Word32 " rangeCount" -> Ptr VkImageSubresourceRange " pRanges" -> IO () type PFN_vkCmdClearDepthStencilImage = FunPtr HS_vkCmdClearDepthStencilImage -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearDepthStencilImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearDepthStencilValue* pDepthStencil -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearDepthStencilImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearDepthStencilImage <- vkGetInstanceProc @VkCmdClearDepthStencilImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearDepthStencilImage <- vkGetProc @VkCmdClearDepthStencilImage ---- -- Note: vkCmdClearDepthStencilImageUnsafe and -- vkCmdClearDepthStencilImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearDepthStencilImage is an alias of -- vkCmdClearDepthStencilImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearDepthStencilImageSafe. vkCmdClearDepthStencilImage :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearDepthStencilValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearDepthStencilImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearDepthStencilValue* pDepthStencil -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearDepthStencilImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearDepthStencilImage <- vkGetInstanceProc @VkCmdClearDepthStencilImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearDepthStencilImage <- vkGetProc @VkCmdClearDepthStencilImage ---- -- Note: vkCmdClearDepthStencilImageUnsafe and -- vkCmdClearDepthStencilImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearDepthStencilImage is an alias of -- vkCmdClearDepthStencilImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearDepthStencilImageSafe. vkCmdClearDepthStencilImageUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearDepthStencilValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdClearDepthStencilImage -- ( VkCommandBuffer commandBuffer -- , VkImage image -- , VkImageLayout imageLayout -- , const VkClearDepthStencilValue* pDepthStencil -- , uint32_t rangeCount -- , const VkImageSubresourceRange* pRanges -- ) ---- -- vkCmdClearDepthStencilImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearDepthStencilImage <- vkGetInstanceProc @VkCmdClearDepthStencilImage vkInstance ---- -- or less efficient: -- --
-- myCmdClearDepthStencilImage <- vkGetProc @VkCmdClearDepthStencilImage ---- -- Note: vkCmdClearDepthStencilImageUnsafe and -- vkCmdClearDepthStencilImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearDepthStencilImage is an alias of -- vkCmdClearDepthStencilImageUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearDepthStencilImageSafe. vkCmdClearDepthStencilImageSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> Ptr VkClearDepthStencilValue -> Word32 -> Ptr VkImageSubresourceRange -> IO () type VkCmdClearAttachments = "vkCmdClearAttachments" pattern VkCmdClearAttachments :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdClearAttachments -- ( VkCommandBuffer commandBuffer -- , uint32_t attachmentCount -- , const VkClearAttachment* pAttachments -- , uint32_t rectCount -- , const VkClearRect* pRects -- ) ---- -- vkCmdClearAttachments registry at www.khronos.org type HS_vkCmdClearAttachments = VkCommandBuffer " commandBuffer" -> Word32 " attachmentCount" -> Ptr VkClearAttachment " pAttachments" -> Word32 " rectCount" -> Ptr VkClearRect " pRects" -> IO () type PFN_vkCmdClearAttachments = FunPtr HS_vkCmdClearAttachments -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdClearAttachments -- ( VkCommandBuffer commandBuffer -- , uint32_t attachmentCount -- , const VkClearAttachment* pAttachments -- , uint32_t rectCount -- , const VkClearRect* pRects -- ) ---- -- vkCmdClearAttachments registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearAttachments <- vkGetInstanceProc @VkCmdClearAttachments vkInstance ---- -- or less efficient: -- --
-- myCmdClearAttachments <- vkGetProc @VkCmdClearAttachments ---- -- Note: vkCmdClearAttachmentsUnsafe and -- vkCmdClearAttachmentsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearAttachments is an alias of -- vkCmdClearAttachmentsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearAttachmentsSafe. vkCmdClearAttachments :: VkCommandBuffer -> Word32 -> Ptr VkClearAttachment -> Word32 -> Ptr VkClearRect -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdClearAttachments -- ( VkCommandBuffer commandBuffer -- , uint32_t attachmentCount -- , const VkClearAttachment* pAttachments -- , uint32_t rectCount -- , const VkClearRect* pRects -- ) ---- -- vkCmdClearAttachments registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearAttachments <- vkGetInstanceProc @VkCmdClearAttachments vkInstance ---- -- or less efficient: -- --
-- myCmdClearAttachments <- vkGetProc @VkCmdClearAttachments ---- -- Note: vkCmdClearAttachmentsUnsafe and -- vkCmdClearAttachmentsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearAttachments is an alias of -- vkCmdClearAttachmentsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearAttachmentsSafe. vkCmdClearAttachmentsUnsafe :: VkCommandBuffer -> Word32 -> Ptr VkClearAttachment -> Word32 -> Ptr VkClearRect -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdClearAttachments -- ( VkCommandBuffer commandBuffer -- , uint32_t attachmentCount -- , const VkClearAttachment* pAttachments -- , uint32_t rectCount -- , const VkClearRect* pRects -- ) ---- -- vkCmdClearAttachments registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdClearAttachments <- vkGetInstanceProc @VkCmdClearAttachments vkInstance ---- -- or less efficient: -- --
-- myCmdClearAttachments <- vkGetProc @VkCmdClearAttachments ---- -- Note: vkCmdClearAttachmentsUnsafe and -- vkCmdClearAttachmentsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdClearAttachments is an alias of -- vkCmdClearAttachmentsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdClearAttachmentsSafe. vkCmdClearAttachmentsSafe :: VkCommandBuffer -> Word32 -> Ptr VkClearAttachment -> Word32 -> Ptr VkClearRect -> IO () type VkCmdResolveImage = "vkCmdResolveImage" pattern VkCmdResolveImage :: CString -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdResolveImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageResolve* pRegions -- ) ---- -- vkCmdResolveImage registry at www.khronos.org type HS_vkCmdResolveImage = VkCommandBuffer " commandBuffer" -> VkImage " srcImage" -> VkImageLayout " srcImageLayout" -> VkImage " dstImage" -> VkImageLayout " dstImageLayout" -> Word32 " regionCount" -> Ptr VkImageResolve " pRegions" -> IO () type PFN_vkCmdResolveImage = FunPtr HS_vkCmdResolveImage -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdResolveImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageResolve* pRegions -- ) ---- -- vkCmdResolveImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResolveImage <- vkGetInstanceProc @VkCmdResolveImage vkInstance ---- -- or less efficient: -- --
-- myCmdResolveImage <- vkGetProc @VkCmdResolveImage ---- -- Note: vkCmdResolveImageUnsafe and -- vkCmdResolveImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResolveImage is an alias of -- vkCmdResolveImageUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdResolveImageSafe. vkCmdResolveImage :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageResolve -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdResolveImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageResolve* pRegions -- ) ---- -- vkCmdResolveImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResolveImage <- vkGetInstanceProc @VkCmdResolveImage vkInstance ---- -- or less efficient: -- --
-- myCmdResolveImage <- vkGetProc @VkCmdResolveImage ---- -- Note: vkCmdResolveImageUnsafe and -- vkCmdResolveImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResolveImage is an alias of -- vkCmdResolveImageUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdResolveImageSafe. vkCmdResolveImageUnsafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageResolve -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdResolveImage -- ( VkCommandBuffer commandBuffer -- , VkImage srcImage -- , VkImageLayout srcImageLayout -- , VkImage dstImage -- , VkImageLayout dstImageLayout -- , uint32_t regionCount -- , const VkImageResolve* pRegions -- ) ---- -- vkCmdResolveImage registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResolveImage <- vkGetInstanceProc @VkCmdResolveImage vkInstance ---- -- or less efficient: -- --
-- myCmdResolveImage <- vkGetProc @VkCmdResolveImage ---- -- Note: vkCmdResolveImageUnsafe and -- vkCmdResolveImageSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResolveImage is an alias of -- vkCmdResolveImageUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdResolveImageSafe. vkCmdResolveImageSafe :: VkCommandBuffer -> VkImage -> VkImageLayout -> VkImage -> VkImageLayout -> Word32 -> Ptr VkImageResolve -> IO () type VkCmdSetEvent = "vkCmdSetEvent" pattern VkCmdSetEvent :: CString -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdSetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdSetEvent registry at www.khronos.org type HS_vkCmdSetEvent = VkCommandBuffer " commandBuffer" -> VkEvent " event" -> VkPipelineStageFlags " stageMask" -> IO () type PFN_vkCmdSetEvent = FunPtr HS_vkCmdSetEvent -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdSetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetEvent <- vkGetInstanceProc @VkCmdSetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdSetEvent <- vkGetProc @VkCmdSetEvent ---- -- Note: vkCmdSetEventUnsafe and -- vkCmdSetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetEvent is -- an alias of vkCmdSetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetEventSafe. vkCmdSetEvent :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdSetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetEvent <- vkGetInstanceProc @VkCmdSetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdSetEvent <- vkGetProc @VkCmdSetEvent ---- -- Note: vkCmdSetEventUnsafe and -- vkCmdSetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetEvent is -- an alias of vkCmdSetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetEventSafe. vkCmdSetEventUnsafe :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdSetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdSetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdSetEvent <- vkGetInstanceProc @VkCmdSetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdSetEvent <- vkGetProc @VkCmdSetEvent ---- -- Note: vkCmdSetEventUnsafe and -- vkCmdSetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdSetEvent is -- an alias of vkCmdSetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdSetEventSafe. vkCmdSetEventSafe :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () type VkCmdResetEvent = "vkCmdResetEvent" pattern VkCmdResetEvent :: CString -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdResetEvent registry at www.khronos.org type HS_vkCmdResetEvent = VkCommandBuffer " commandBuffer" -> VkEvent " event" -> VkPipelineStageFlags " stageMask" -> IO () type PFN_vkCmdResetEvent = FunPtr HS_vkCmdResetEvent -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetEvent <- vkGetInstanceProc @VkCmdResetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdResetEvent <- vkGetProc @VkCmdResetEvent ---- -- Note: vkCmdResetEventUnsafe and -- vkCmdResetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdResetEvent -- is an alias of vkCmdResetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetEventSafe. vkCmdResetEvent :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetEvent <- vkGetInstanceProc @VkCmdResetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdResetEvent <- vkGetProc @VkCmdResetEvent ---- -- Note: vkCmdResetEventUnsafe and -- vkCmdResetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdResetEvent -- is an alias of vkCmdResetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetEventSafe. vkCmdResetEventUnsafe :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetEvent -- ( VkCommandBuffer commandBuffer -- , VkEvent event -- , VkPipelineStageFlags stageMask -- ) ---- -- vkCmdResetEvent registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetEvent <- vkGetInstanceProc @VkCmdResetEvent vkInstance ---- -- or less efficient: -- --
-- myCmdResetEvent <- vkGetProc @VkCmdResetEvent ---- -- Note: vkCmdResetEventUnsafe and -- vkCmdResetEventSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdResetEvent -- is an alias of vkCmdResetEventUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetEventSafe. vkCmdResetEventSafe :: VkCommandBuffer -> VkEvent -> VkPipelineStageFlags -> IO () type VkCmdWaitEvents = "vkCmdWaitEvents" pattern VkCmdWaitEvents :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdWaitEvents -- ( VkCommandBuffer commandBuffer -- , uint32_t eventCount -- , const VkEvent* pEvents -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdWaitEvents registry at www.khronos.org type HS_vkCmdWaitEvents = VkCommandBuffer " commandBuffer" -> Word32 " eventCount" -> Ptr VkEvent " pEvents" -> VkPipelineStageFlags " srcStageMask" -> VkPipelineStageFlags " dstStageMask" -> Word32 " memoryBarrierCount" -> Ptr VkMemoryBarrier " pMemoryBarriers" -> Word32 " bufferMemoryBarrierCount" -> Ptr VkBufferMemoryBarrier " pBufferMemoryBarriers" -> Word32 " imageMemoryBarrierCount" -> Ptr VkImageMemoryBarrier " pImageMemoryBarriers" -> IO () type PFN_vkCmdWaitEvents = FunPtr HS_vkCmdWaitEvents -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdWaitEvents -- ( VkCommandBuffer commandBuffer -- , uint32_t eventCount -- , const VkEvent* pEvents -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdWaitEvents registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWaitEvents <- vkGetInstanceProc @VkCmdWaitEvents vkInstance ---- -- or less efficient: -- --
-- myCmdWaitEvents <- vkGetProc @VkCmdWaitEvents ---- -- Note: vkCmdWaitEventsUnsafe and -- vkCmdWaitEventsSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdWaitEvents -- is an alias of vkCmdWaitEventsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWaitEventsSafe. vkCmdWaitEvents :: VkCommandBuffer -> Word32 -> Ptr VkEvent -> VkPipelineStageFlags -> VkPipelineStageFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdWaitEvents -- ( VkCommandBuffer commandBuffer -- , uint32_t eventCount -- , const VkEvent* pEvents -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdWaitEvents registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWaitEvents <- vkGetInstanceProc @VkCmdWaitEvents vkInstance ---- -- or less efficient: -- --
-- myCmdWaitEvents <- vkGetProc @VkCmdWaitEvents ---- -- Note: vkCmdWaitEventsUnsafe and -- vkCmdWaitEventsSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdWaitEvents -- is an alias of vkCmdWaitEventsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWaitEventsSafe. vkCmdWaitEventsUnsafe :: VkCommandBuffer -> Word32 -> Ptr VkEvent -> VkPipelineStageFlags -> VkPipelineStageFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdWaitEvents -- ( VkCommandBuffer commandBuffer -- , uint32_t eventCount -- , const VkEvent* pEvents -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdWaitEvents registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWaitEvents <- vkGetInstanceProc @VkCmdWaitEvents vkInstance ---- -- or less efficient: -- --
-- myCmdWaitEvents <- vkGetProc @VkCmdWaitEvents ---- -- Note: vkCmdWaitEventsUnsafe and -- vkCmdWaitEventsSafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdWaitEvents -- is an alias of vkCmdWaitEventsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWaitEventsSafe. vkCmdWaitEventsSafe :: VkCommandBuffer -> Word32 -> Ptr VkEvent -> VkPipelineStageFlags -> VkPipelineStageFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () type VkCmdPipelineBarrier = "vkCmdPipelineBarrier" pattern VkCmdPipelineBarrier :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPipelineBarrier -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , VkDependencyFlags dependencyFlags -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdPipelineBarrier registry at www.khronos.org type HS_vkCmdPipelineBarrier = VkCommandBuffer " commandBuffer" -> VkPipelineStageFlags " srcStageMask" -> VkPipelineStageFlags " dstStageMask" -> VkDependencyFlags " dependencyFlags" -> Word32 " memoryBarrierCount" -> Ptr VkMemoryBarrier " pMemoryBarriers" -> Word32 " bufferMemoryBarrierCount" -> Ptr VkBufferMemoryBarrier " pBufferMemoryBarriers" -> Word32 " imageMemoryBarrierCount" -> Ptr VkImageMemoryBarrier " pImageMemoryBarriers" -> IO () type PFN_vkCmdPipelineBarrier = FunPtr HS_vkCmdPipelineBarrier -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPipelineBarrier -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , VkDependencyFlags dependencyFlags -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdPipelineBarrier registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPipelineBarrier <- vkGetInstanceProc @VkCmdPipelineBarrier vkInstance ---- -- or less efficient: -- --
-- myCmdPipelineBarrier <- vkGetProc @VkCmdPipelineBarrier ---- -- Note: vkCmdPipelineBarrierUnsafe and -- vkCmdPipelineBarrierSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPipelineBarrier is an alias of -- vkCmdPipelineBarrierUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPipelineBarrierSafe. vkCmdPipelineBarrier :: VkCommandBuffer -> VkPipelineStageFlags -> VkPipelineStageFlags -> VkDependencyFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPipelineBarrier -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , VkDependencyFlags dependencyFlags -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdPipelineBarrier registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPipelineBarrier <- vkGetInstanceProc @VkCmdPipelineBarrier vkInstance ---- -- or less efficient: -- --
-- myCmdPipelineBarrier <- vkGetProc @VkCmdPipelineBarrier ---- -- Note: vkCmdPipelineBarrierUnsafe and -- vkCmdPipelineBarrierSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPipelineBarrier is an alias of -- vkCmdPipelineBarrierUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPipelineBarrierSafe. vkCmdPipelineBarrierUnsafe :: VkCommandBuffer -> VkPipelineStageFlags -> VkPipelineStageFlags -> VkDependencyFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPipelineBarrier -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlags srcStageMask -- , VkPipelineStageFlags dstStageMask -- , VkDependencyFlags dependencyFlags -- , uint32_t memoryBarrierCount -- , const VkMemoryBarrier* pMemoryBarriers -- , uint32_t bufferMemoryBarrierCount -- , const VkBufferMemoryBarrier* pBufferMemoryBarriers -- , uint32_t imageMemoryBarrierCount -- , const VkImageMemoryBarrier* pImageMemoryBarriers -- ) ---- -- vkCmdPipelineBarrier registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPipelineBarrier <- vkGetInstanceProc @VkCmdPipelineBarrier vkInstance ---- -- or less efficient: -- --
-- myCmdPipelineBarrier <- vkGetProc @VkCmdPipelineBarrier ---- -- Note: vkCmdPipelineBarrierUnsafe and -- vkCmdPipelineBarrierSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPipelineBarrier is an alias of -- vkCmdPipelineBarrierUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPipelineBarrierSafe. vkCmdPipelineBarrierSafe :: VkCommandBuffer -> VkPipelineStageFlags -> VkPipelineStageFlags -> VkDependencyFlags -> Word32 -> Ptr VkMemoryBarrier -> Word32 -> Ptr VkBufferMemoryBarrier -> Word32 -> Ptr VkImageMemoryBarrier -> IO () type VkCmdBeginQuery = "vkCmdBeginQuery" pattern VkCmdBeginQuery :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBeginQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- , VkQueryControlFlags flags -- ) ---- -- vkCmdBeginQuery registry at www.khronos.org type HS_vkCmdBeginQuery = VkCommandBuffer " commandBuffer" -> VkQueryPool " queryPool" -> Word32 " query" -> VkQueryControlFlags " flags" -> IO () type PFN_vkCmdBeginQuery = FunPtr HS_vkCmdBeginQuery -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBeginQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- , VkQueryControlFlags flags -- ) ---- -- vkCmdBeginQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginQuery <- vkGetInstanceProc @VkCmdBeginQuery vkInstance ---- -- or less efficient: -- --
-- myCmdBeginQuery <- vkGetProc @VkCmdBeginQuery ---- -- Note: vkCmdBeginQueryUnsafe and -- vkCmdBeginQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBeginQuery -- is an alias of vkCmdBeginQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginQuerySafe. vkCmdBeginQuery :: VkCommandBuffer -> VkQueryPool -> Word32 -> VkQueryControlFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBeginQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- , VkQueryControlFlags flags -- ) ---- -- vkCmdBeginQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginQuery <- vkGetInstanceProc @VkCmdBeginQuery vkInstance ---- -- or less efficient: -- --
-- myCmdBeginQuery <- vkGetProc @VkCmdBeginQuery ---- -- Note: vkCmdBeginQueryUnsafe and -- vkCmdBeginQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBeginQuery -- is an alias of vkCmdBeginQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginQuerySafe. vkCmdBeginQueryUnsafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> VkQueryControlFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdBeginQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- , VkQueryControlFlags flags -- ) ---- -- vkCmdBeginQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginQuery <- vkGetInstanceProc @VkCmdBeginQuery vkInstance ---- -- or less efficient: -- --
-- myCmdBeginQuery <- vkGetProc @VkCmdBeginQuery ---- -- Note: vkCmdBeginQueryUnsafe and -- vkCmdBeginQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdBeginQuery -- is an alias of vkCmdBeginQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginQuerySafe. vkCmdBeginQuerySafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> VkQueryControlFlags -> IO () type VkCmdEndQuery = "vkCmdEndQuery" pattern VkCmdEndQuery :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdEndQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdEndQuery registry at www.khronos.org type HS_vkCmdEndQuery = VkCommandBuffer " commandBuffer" -> VkQueryPool " queryPool" -> Word32 " query" -> IO () type PFN_vkCmdEndQuery = FunPtr HS_vkCmdEndQuery -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdEndQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdEndQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndQuery <- vkGetInstanceProc @VkCmdEndQuery vkInstance ---- -- or less efficient: -- --
-- myCmdEndQuery <- vkGetProc @VkCmdEndQuery ---- -- Note: vkCmdEndQueryUnsafe and -- vkCmdEndQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdEndQuery is -- an alias of vkCmdEndQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndQuerySafe. vkCmdEndQuery :: VkCommandBuffer -> VkQueryPool -> Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdEndQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdEndQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndQuery <- vkGetInstanceProc @VkCmdEndQuery vkInstance ---- -- or less efficient: -- --
-- myCmdEndQuery <- vkGetProc @VkCmdEndQuery ---- -- Note: vkCmdEndQueryUnsafe and -- vkCmdEndQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdEndQuery is -- an alias of vkCmdEndQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndQuerySafe. vkCmdEndQueryUnsafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdEndQuery -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdEndQuery registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndQuery <- vkGetInstanceProc @VkCmdEndQuery vkInstance ---- -- or less efficient: -- --
-- myCmdEndQuery <- vkGetProc @VkCmdEndQuery ---- -- Note: vkCmdEndQueryUnsafe and -- vkCmdEndQuerySafe are the unsafe and safe -- FFI imports of this function, respectively. vkCmdEndQuery is -- an alias of vkCmdEndQueryUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndQuerySafe. vkCmdEndQuerySafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> IO () type VkCmdResetQueryPool = "vkCmdResetQueryPool" pattern VkCmdResetQueryPool :: CString -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetQueryPool -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- ) ---- -- vkCmdResetQueryPool registry at www.khronos.org type HS_vkCmdResetQueryPool = VkCommandBuffer " commandBuffer" -> VkQueryPool " queryPool" -> Word32 " firstQuery" -> Word32 " queryCount" -> IO () type PFN_vkCmdResetQueryPool = FunPtr HS_vkCmdResetQueryPool -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetQueryPool -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- ) ---- -- vkCmdResetQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetQueryPool <- vkGetInstanceProc @VkCmdResetQueryPool vkInstance ---- -- or less efficient: -- --
-- myCmdResetQueryPool <- vkGetProc @VkCmdResetQueryPool ---- -- Note: vkCmdResetQueryPoolUnsafe and -- vkCmdResetQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResetQueryPool is an alias of -- vkCmdResetQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetQueryPoolSafe. vkCmdResetQueryPool :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetQueryPool -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- ) ---- -- vkCmdResetQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetQueryPool <- vkGetInstanceProc @VkCmdResetQueryPool vkInstance ---- -- or less efficient: -- --
-- myCmdResetQueryPool <- vkGetProc @VkCmdResetQueryPool ---- -- Note: vkCmdResetQueryPoolUnsafe and -- vkCmdResetQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResetQueryPool is an alias of -- vkCmdResetQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetQueryPoolSafe. vkCmdResetQueryPoolUnsafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- --
-- void vkCmdResetQueryPool -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- ) ---- -- vkCmdResetQueryPool registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdResetQueryPool <- vkGetInstanceProc @VkCmdResetQueryPool vkInstance ---- -- or less efficient: -- --
-- myCmdResetQueryPool <- vkGetProc @VkCmdResetQueryPool ---- -- Note: vkCmdResetQueryPoolUnsafe and -- vkCmdResetQueryPoolSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdResetQueryPool is an alias of -- vkCmdResetQueryPoolUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdResetQueryPoolSafe. vkCmdResetQueryPoolSafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> IO () type VkCmdWriteTimestamp = "vkCmdWriteTimestamp" pattern VkCmdWriteTimestamp :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- -- Pipeline: transfer -- --
-- void vkCmdWriteTimestamp -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlagBits pipelineStage -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdWriteTimestamp registry at www.khronos.org type HS_vkCmdWriteTimestamp = VkCommandBuffer " commandBuffer" -> VkPipelineStageFlagBits " pipelineStage" -> VkQueryPool " queryPool" -> Word32 " query" -> IO () type PFN_vkCmdWriteTimestamp = FunPtr HS_vkCmdWriteTimestamp -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- -- Pipeline: transfer -- --
-- void vkCmdWriteTimestamp -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlagBits pipelineStage -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdWriteTimestamp registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWriteTimestamp <- vkGetInstanceProc @VkCmdWriteTimestamp vkInstance ---- -- or less efficient: -- --
-- myCmdWriteTimestamp <- vkGetProc @VkCmdWriteTimestamp ---- -- Note: vkCmdWriteTimestampUnsafe and -- vkCmdWriteTimestampSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdWriteTimestamp is an alias of -- vkCmdWriteTimestampUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWriteTimestampSafe. vkCmdWriteTimestamp :: VkCommandBuffer -> VkPipelineStageFlagBits -> VkQueryPool -> Word32 -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- -- Pipeline: transfer -- --
-- void vkCmdWriteTimestamp -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlagBits pipelineStage -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdWriteTimestamp registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWriteTimestamp <- vkGetInstanceProc @VkCmdWriteTimestamp vkInstance ---- -- or less efficient: -- --
-- myCmdWriteTimestamp <- vkGetProc @VkCmdWriteTimestamp ---- -- Note: vkCmdWriteTimestampUnsafe and -- vkCmdWriteTimestampSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdWriteTimestamp is an alias of -- vkCmdWriteTimestampUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWriteTimestampSafe. vkCmdWriteTimestampUnsafe :: VkCommandBuffer -> VkPipelineStageFlagBits -> VkQueryPool -> Word32 -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- -- Pipeline: transfer -- --
-- void vkCmdWriteTimestamp -- ( VkCommandBuffer commandBuffer -- , VkPipelineStageFlagBits pipelineStage -- , VkQueryPool queryPool -- , uint32_t query -- ) ---- -- vkCmdWriteTimestamp registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdWriteTimestamp <- vkGetInstanceProc @VkCmdWriteTimestamp vkInstance ---- -- or less efficient: -- --
-- myCmdWriteTimestamp <- vkGetProc @VkCmdWriteTimestamp ---- -- Note: vkCmdWriteTimestampUnsafe and -- vkCmdWriteTimestampSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdWriteTimestamp is an alias of -- vkCmdWriteTimestampUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdWriteTimestampSafe. vkCmdWriteTimestampSafe :: VkCommandBuffer -> VkPipelineStageFlagBits -> VkQueryPool -> Word32 -> IO () type VkCmdCopyQueryPoolResults = "vkCmdCopyQueryPoolResults" pattern VkCmdCopyQueryPoolResults :: CString -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyQueryPoolResults -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkCmdCopyQueryPoolResults registry at www.khronos.org type HS_vkCmdCopyQueryPoolResults = VkCommandBuffer " commandBuffer" -> VkQueryPool " queryPool" -> Word32 " firstQuery" -> Word32 " queryCount" -> VkBuffer " dstBuffer" -> VkDeviceSize " dstOffset" -> VkDeviceSize " stride" -> VkQueryResultFlags " flags" -> IO () type PFN_vkCmdCopyQueryPoolResults = FunPtr HS_vkCmdCopyQueryPoolResults -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyQueryPoolResults -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkCmdCopyQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyQueryPoolResults <- vkGetInstanceProc @VkCmdCopyQueryPoolResults vkInstance ---- -- or less efficient: -- --
-- myCmdCopyQueryPoolResults <- vkGetProc @VkCmdCopyQueryPoolResults ---- -- Note: vkCmdCopyQueryPoolResultsUnsafe and -- vkCmdCopyQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyQueryPoolResults is an alias of -- vkCmdCopyQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyQueryPoolResultsSafe. vkCmdCopyQueryPoolResults :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> VkQueryResultFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyQueryPoolResults -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkCmdCopyQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyQueryPoolResults <- vkGetInstanceProc @VkCmdCopyQueryPoolResults vkInstance ---- -- or less efficient: -- --
-- myCmdCopyQueryPoolResults <- vkGetProc @VkCmdCopyQueryPoolResults ---- -- Note: vkCmdCopyQueryPoolResultsUnsafe and -- vkCmdCopyQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyQueryPoolResults is an alias of -- vkCmdCopyQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyQueryPoolResultsSafe. vkCmdCopyQueryPoolResultsUnsafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> VkQueryResultFlags -> IO () -- | Queues: graphics, compute. -- -- Renderpass: outside -- -- Pipeline: transfer -- --
-- void vkCmdCopyQueryPoolResults -- ( VkCommandBuffer commandBuffer -- , VkQueryPool queryPool -- , uint32_t firstQuery -- , uint32_t queryCount -- , VkBuffer dstBuffer -- , VkDeviceSize dstOffset -- , VkDeviceSize stride -- , VkQueryResultFlags flags -- ) ---- -- vkCmdCopyQueryPoolResults registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdCopyQueryPoolResults <- vkGetInstanceProc @VkCmdCopyQueryPoolResults vkInstance ---- -- or less efficient: -- --
-- myCmdCopyQueryPoolResults <- vkGetProc @VkCmdCopyQueryPoolResults ---- -- Note: vkCmdCopyQueryPoolResultsUnsafe and -- vkCmdCopyQueryPoolResultsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdCopyQueryPoolResults is an alias of -- vkCmdCopyQueryPoolResultsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdCopyQueryPoolResultsSafe. vkCmdCopyQueryPoolResultsSafe :: VkCommandBuffer -> VkQueryPool -> Word32 -> Word32 -> VkBuffer -> VkDeviceSize -> VkDeviceSize -> VkQueryResultFlags -> IO () type VkCmdPushConstants = "vkCmdPushConstants" pattern VkCmdPushConstants :: CString -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPushConstants -- ( VkCommandBuffer commandBuffer -- , VkPipelineLayout layout -- , VkShaderStageFlags stageFlags -- , uint32_t offset -- , uint32_t size -- , const void* pValues -- ) ---- -- vkCmdPushConstants registry at www.khronos.org type HS_vkCmdPushConstants = VkCommandBuffer " commandBuffer" -> VkPipelineLayout " layout" -> VkShaderStageFlags " stageFlags" -> Word32 " offset" -> Word32 " size" -> Ptr Void " pValues" -> IO () type PFN_vkCmdPushConstants = FunPtr HS_vkCmdPushConstants -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPushConstants -- ( VkCommandBuffer commandBuffer -- , VkPipelineLayout layout -- , VkShaderStageFlags stageFlags -- , uint32_t offset -- , uint32_t size -- , const void* pValues -- ) ---- -- vkCmdPushConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPushConstants <- vkGetInstanceProc @VkCmdPushConstants vkInstance ---- -- or less efficient: -- --
-- myCmdPushConstants <- vkGetProc @VkCmdPushConstants ---- -- Note: vkCmdPushConstantsUnsafe and -- vkCmdPushConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPushConstants is an alias of -- vkCmdPushConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPushConstantsSafe. vkCmdPushConstants :: VkCommandBuffer -> VkPipelineLayout -> VkShaderStageFlags -> Word32 -> Word32 -> Ptr Void -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPushConstants -- ( VkCommandBuffer commandBuffer -- , VkPipelineLayout layout -- , VkShaderStageFlags stageFlags -- , uint32_t offset -- , uint32_t size -- , const void* pValues -- ) ---- -- vkCmdPushConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPushConstants <- vkGetInstanceProc @VkCmdPushConstants vkInstance ---- -- or less efficient: -- --
-- myCmdPushConstants <- vkGetProc @VkCmdPushConstants ---- -- Note: vkCmdPushConstantsUnsafe and -- vkCmdPushConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPushConstants is an alias of -- vkCmdPushConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPushConstantsSafe. vkCmdPushConstantsUnsafe :: VkCommandBuffer -> VkPipelineLayout -> VkShaderStageFlags -> Word32 -> Word32 -> Ptr Void -> IO () -- | Queues: graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdPushConstants -- ( VkCommandBuffer commandBuffer -- , VkPipelineLayout layout -- , VkShaderStageFlags stageFlags -- , uint32_t offset -- , uint32_t size -- , const void* pValues -- ) ---- -- vkCmdPushConstants registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdPushConstants <- vkGetInstanceProc @VkCmdPushConstants vkInstance ---- -- or less efficient: -- --
-- myCmdPushConstants <- vkGetProc @VkCmdPushConstants ---- -- Note: vkCmdPushConstantsUnsafe and -- vkCmdPushConstantsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdPushConstants is an alias of -- vkCmdPushConstantsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdPushConstantsSafe. vkCmdPushConstantsSafe :: VkCommandBuffer -> VkPipelineLayout -> VkShaderStageFlags -> Word32 -> Word32 -> Ptr Void -> IO () type VkCmdBeginRenderPass = "vkCmdBeginRenderPass" pattern VkCmdBeginRenderPass :: CString -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: graphics -- --
-- void vkCmdBeginRenderPass -- ( VkCommandBuffer commandBuffer -- , const VkRenderPassBeginInfo* pRenderPassBegin -- , VkSubpassContents contents -- ) ---- -- vkCmdBeginRenderPass registry at www.khronos.org type HS_vkCmdBeginRenderPass = VkCommandBuffer " commandBuffer" -> Ptr VkRenderPassBeginInfo " pRenderPassBegin" -> VkSubpassContents " contents" -> IO () type PFN_vkCmdBeginRenderPass = FunPtr HS_vkCmdBeginRenderPass -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: graphics -- --
-- void vkCmdBeginRenderPass -- ( VkCommandBuffer commandBuffer -- , const VkRenderPassBeginInfo* pRenderPassBegin -- , VkSubpassContents contents -- ) ---- -- vkCmdBeginRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginRenderPass <- vkGetInstanceProc @VkCmdBeginRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdBeginRenderPass <- vkGetProc @VkCmdBeginRenderPass ---- -- Note: vkCmdBeginRenderPassUnsafe and -- vkCmdBeginRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBeginRenderPass is an alias of -- vkCmdBeginRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginRenderPassSafe. vkCmdBeginRenderPass :: VkCommandBuffer -> Ptr VkRenderPassBeginInfo -> VkSubpassContents -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: graphics -- --
-- void vkCmdBeginRenderPass -- ( VkCommandBuffer commandBuffer -- , const VkRenderPassBeginInfo* pRenderPassBegin -- , VkSubpassContents contents -- ) ---- -- vkCmdBeginRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginRenderPass <- vkGetInstanceProc @VkCmdBeginRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdBeginRenderPass <- vkGetProc @VkCmdBeginRenderPass ---- -- Note: vkCmdBeginRenderPassUnsafe and -- vkCmdBeginRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBeginRenderPass is an alias of -- vkCmdBeginRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginRenderPassSafe. vkCmdBeginRenderPassUnsafe :: VkCommandBuffer -> Ptr VkRenderPassBeginInfo -> VkSubpassContents -> IO () -- | Queues: graphics. -- -- Renderpass: outside -- -- Pipeline: graphics -- --
-- void vkCmdBeginRenderPass -- ( VkCommandBuffer commandBuffer -- , const VkRenderPassBeginInfo* pRenderPassBegin -- , VkSubpassContents contents -- ) ---- -- vkCmdBeginRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdBeginRenderPass <- vkGetInstanceProc @VkCmdBeginRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdBeginRenderPass <- vkGetProc @VkCmdBeginRenderPass ---- -- Note: vkCmdBeginRenderPassUnsafe and -- vkCmdBeginRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdBeginRenderPass is an alias of -- vkCmdBeginRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdBeginRenderPassSafe. vkCmdBeginRenderPassSafe :: VkCommandBuffer -> Ptr VkRenderPassBeginInfo -> VkSubpassContents -> IO () type VkCmdNextSubpass = "vkCmdNextSubpass" pattern VkCmdNextSubpass :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdNextSubpass -- ( VkCommandBuffer commandBuffer -- , VkSubpassContents contents -- ) ---- -- vkCmdNextSubpass registry at www.khronos.org type HS_vkCmdNextSubpass = VkCommandBuffer " commandBuffer" -> VkSubpassContents " contents" -> IO () type PFN_vkCmdNextSubpass = FunPtr HS_vkCmdNextSubpass -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdNextSubpass -- ( VkCommandBuffer commandBuffer -- , VkSubpassContents contents -- ) ---- -- vkCmdNextSubpass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdNextSubpass <- vkGetInstanceProc @VkCmdNextSubpass vkInstance ---- -- or less efficient: -- --
-- myCmdNextSubpass <- vkGetProc @VkCmdNextSubpass ---- -- Note: vkCmdNextSubpassUnsafe and -- vkCmdNextSubpassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdNextSubpass is an alias of -- vkCmdNextSubpassUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdNextSubpassSafe. vkCmdNextSubpass :: VkCommandBuffer -> VkSubpassContents -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdNextSubpass -- ( VkCommandBuffer commandBuffer -- , VkSubpassContents contents -- ) ---- -- vkCmdNextSubpass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdNextSubpass <- vkGetInstanceProc @VkCmdNextSubpass vkInstance ---- -- or less efficient: -- --
-- myCmdNextSubpass <- vkGetProc @VkCmdNextSubpass ---- -- Note: vkCmdNextSubpassUnsafe and -- vkCmdNextSubpassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdNextSubpass is an alias of -- vkCmdNextSubpassUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdNextSubpassSafe. vkCmdNextSubpassUnsafe :: VkCommandBuffer -> VkSubpassContents -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdNextSubpass -- ( VkCommandBuffer commandBuffer -- , VkSubpassContents contents -- ) ---- -- vkCmdNextSubpass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdNextSubpass <- vkGetInstanceProc @VkCmdNextSubpass vkInstance ---- -- or less efficient: -- --
-- myCmdNextSubpass <- vkGetProc @VkCmdNextSubpass ---- -- Note: vkCmdNextSubpassUnsafe and -- vkCmdNextSubpassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdNextSubpass is an alias of -- vkCmdNextSubpassUnsafe when the useUnsafeFFIDefault -- cabal flag is enabled; otherwise, it is an alias of -- vkCmdNextSubpassSafe. vkCmdNextSubpassSafe :: VkCommandBuffer -> VkSubpassContents -> IO () type VkCmdEndRenderPass = "vkCmdEndRenderPass" pattern VkCmdEndRenderPass :: CString -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdEndRenderPass -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdEndRenderPass registry at www.khronos.org type HS_vkCmdEndRenderPass = VkCommandBuffer " commandBuffer" -> IO () type PFN_vkCmdEndRenderPass = FunPtr HS_vkCmdEndRenderPass -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdEndRenderPass -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdEndRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndRenderPass <- vkGetInstanceProc @VkCmdEndRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdEndRenderPass <- vkGetProc @VkCmdEndRenderPass ---- -- Note: vkCmdEndRenderPassUnsafe and -- vkCmdEndRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdEndRenderPass is an alias of -- vkCmdEndRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndRenderPassSafe. vkCmdEndRenderPass :: VkCommandBuffer -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdEndRenderPass -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdEndRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndRenderPass <- vkGetInstanceProc @VkCmdEndRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdEndRenderPass <- vkGetProc @VkCmdEndRenderPass ---- -- Note: vkCmdEndRenderPassUnsafe and -- vkCmdEndRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdEndRenderPass is an alias of -- vkCmdEndRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndRenderPassSafe. vkCmdEndRenderPassUnsafe :: VkCommandBuffer -> IO () -- | Queues: graphics. -- -- Renderpass: inside -- -- Pipeline: graphics -- --
-- void vkCmdEndRenderPass -- ( VkCommandBuffer commandBuffer -- ) ---- -- vkCmdEndRenderPass registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdEndRenderPass <- vkGetInstanceProc @VkCmdEndRenderPass vkInstance ---- -- or less efficient: -- --
-- myCmdEndRenderPass <- vkGetProc @VkCmdEndRenderPass ---- -- Note: vkCmdEndRenderPassUnsafe and -- vkCmdEndRenderPassSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdEndRenderPass is an alias of -- vkCmdEndRenderPassUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdEndRenderPassSafe. vkCmdEndRenderPassSafe :: VkCommandBuffer -> IO () type VkCmdExecuteCommands = "vkCmdExecuteCommands" pattern VkCmdExecuteCommands :: CString -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdExecuteCommands -- ( VkCommandBuffer commandBuffer -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkCmdExecuteCommands registry at www.khronos.org type HS_vkCmdExecuteCommands = VkCommandBuffer " commandBuffer" -> Word32 " commandBufferCount" -> Ptr VkCommandBuffer " pCommandBuffers" -> IO () type PFN_vkCmdExecuteCommands = FunPtr HS_vkCmdExecuteCommands -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdExecuteCommands -- ( VkCommandBuffer commandBuffer -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkCmdExecuteCommands registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdExecuteCommands <- vkGetInstanceProc @VkCmdExecuteCommands vkInstance ---- -- or less efficient: -- --
-- myCmdExecuteCommands <- vkGetProc @VkCmdExecuteCommands ---- -- Note: vkCmdExecuteCommandsUnsafe and -- vkCmdExecuteCommandsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdExecuteCommands is an alias of -- vkCmdExecuteCommandsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdExecuteCommandsSafe. vkCmdExecuteCommands :: VkCommandBuffer -> Word32 -> Ptr VkCommandBuffer -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdExecuteCommands -- ( VkCommandBuffer commandBuffer -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkCmdExecuteCommands registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdExecuteCommands <- vkGetInstanceProc @VkCmdExecuteCommands vkInstance ---- -- or less efficient: -- --
-- myCmdExecuteCommands <- vkGetProc @VkCmdExecuteCommands ---- -- Note: vkCmdExecuteCommandsUnsafe and -- vkCmdExecuteCommandsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdExecuteCommands is an alias of -- vkCmdExecuteCommandsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdExecuteCommandsSafe. vkCmdExecuteCommandsUnsafe :: VkCommandBuffer -> Word32 -> Ptr VkCommandBuffer -> IO () -- | Queues: transfer, graphics, compute. -- -- Renderpass: both -- --
-- void vkCmdExecuteCommands -- ( VkCommandBuffer commandBuffer -- , uint32_t commandBufferCount -- , const VkCommandBuffer* pCommandBuffers -- ) ---- -- vkCmdExecuteCommands registry at www.khronos.org -- -- Note: When useNativeFFI-1-0 cabal flag is enabled, -- this function is linked statically as a foreign import call -- to C Vulkan loader. Otherwise, it is looked up dynamically at runtime -- using dlsym-like machinery (platform-dependent). -- -- Independently of the flag setting, you can lookup the function -- manually at runtime: -- --
-- myCmdExecuteCommands <- vkGetInstanceProc @VkCmdExecuteCommands vkInstance ---- -- or less efficient: -- --
-- myCmdExecuteCommands <- vkGetProc @VkCmdExecuteCommands ---- -- Note: vkCmdExecuteCommandsUnsafe and -- vkCmdExecuteCommandsSafe are the unsafe and -- safe FFI imports of this function, respectively. -- vkCmdExecuteCommands is an alias of -- vkCmdExecuteCommandsUnsafe when the -- useUnsafeFFIDefault cabal flag is enabled; otherwise, it is -- an alias of vkCmdExecuteCommandsSafe. vkCmdExecuteCommandsSafe :: VkCommandBuffer -> Word32 -> Ptr VkCommandBuffer -> IO () -- | type = enum -- -- VkIndexType registry at www.khronos.org newtype VkIndexType VkIndexType :: Int32 -> VkIndexType pattern VK_INDEX_TYPE_UINT16 :: VkIndexType pattern VK_INDEX_TYPE_UINT32 :: VkIndexType -- |
-- typedef struct VkClearAttachment {
-- VkImageAspectFlags aspectMask;
-- uint32_t colorAttachment;
-- VkClearValue clearValue;
-- } VkClearAttachment;
--
--
-- VkClearAttachment registry at www.khronos.org
type VkClearAttachment = VkStruct VkClearAttachment'
-- | / Union allowing specification of floating point, integer, or
-- unsigned integer color data. Actual value selected is based on
-- imageattachment being cleared.
--
--
-- typedef union VkClearColorValue {
-- float float32[4];
-- int32_t int32[4];
-- uint32_t uint32[4];
-- } VkClearColorValue;
--
--
-- VkClearColorValue registry at www.khronos.org
type VkClearColorValue = VkStruct VkClearColorValue'
-- |
-- typedef struct VkClearDepthStencilValue {
-- float depth;
-- uint32_t stencil;
-- } VkClearDepthStencilValue;
--
--
-- VkClearDepthStencilValue registry at www.khronos.org
type VkClearDepthStencilValue = VkStruct VkClearDepthStencilValue'
-- |
-- typedef struct VkClearRect {
-- VkRect2D rect;
-- uint32_t baseArrayLayer;
-- uint32_t layerCount;
-- } VkClearRect;
--
--
-- VkClearRect registry at www.khronos.org
type VkClearRect = VkStruct VkClearRect'
-- | // Union allowing specification of color or depth and stencil values.
-- Actual value selected is based on attachment being cleared.
--
--
-- typedef union VkClearValue {
-- VkClearColorValue color;
-- VkClearDepthStencilValue depthStencil;
-- } VkClearValue;
--
--
-- VkClearValue registry at www.khronos.org
type VkClearValue = VkStruct VkClearValue'
-- |
-- typedef struct VkBaseInStructure {
-- VkStructureType sType;
-- const struct VkBaseInStructure* pNext;
-- } VkBaseInStructure;
--
--
-- VkBaseInStructure registry at www.khronos.org
type VkBaseInStructure = VkStruct VkBaseInStructure'
-- |
-- typedef struct VkBaseOutStructure {
-- VkStructureType sType;
-- struct VkBaseOutStructure* pNext;
-- } VkBaseOutStructure;
--
--
-- VkBaseOutStructure registry at www.khronos.org
type VkBaseOutStructure = VkStruct VkBaseOutStructure'
-- |
-- typedef struct VkDispatchIndirectCommand {
-- uint32_t x;
-- uint32_t y;
-- uint32_t z;
-- } VkDispatchIndirectCommand;
--
--
-- VkDispatchIndirectCommand registry at www.khronos.org
type VkDispatchIndirectCommand = VkStruct VkDispatchIndirectCommand'
-- |
-- typedef struct VkDrawIndexedIndirectCommand {
-- uint32_t indexCount;
-- uint32_t instanceCount;
-- uint32_t firstIndex;
-- int32_t vertexOffset;
-- uint32_t firstInstance;
-- } VkDrawIndexedIndirectCommand;
--
--
-- VkDrawIndexedIndirectCommand registry at www.khronos.org
type VkDrawIndexedIndirectCommand = VkStruct VkDrawIndexedIndirectCommand'
-- |
-- typedef struct VkDrawIndirectCommand {
-- uint32_t vertexCount;
-- uint32_t instanceCount;
-- uint32_t firstVertex;
-- uint32_t firstInstance;
-- } VkDrawIndirectCommand;
--
--
-- VkDrawIndirectCommand registry at www.khronos.org
type VkDrawIndirectCommand = VkStruct VkDrawIndirectCommand'
-- | type = enum
--
-- VkObjectEntryTypeNVX registry at www.khronos.org
newtype VkObjectEntryTypeNVX
VkObjectEntryTypeNVX :: Int32 -> VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_DESCRIPTOR_SET_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PIPELINE_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_INDEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_VERTEX_BUFFER_NVX :: VkObjectEntryTypeNVX
pattern VK_OBJECT_ENTRY_TYPE_PUSH_CONSTANT_NVX :: VkObjectEntryTypeNVX
newtype VkObjectEntryUsageBitmaskNVX (a :: FlagType)
VkObjectEntryUsageBitmaskNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX
pattern VkObjectEntryUsageFlagBitsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagBit
pattern VkObjectEntryUsageFlagsNVX :: VkFlags -> VkObjectEntryUsageBitmaskNVX FlagMask
-- | bitpos = 0
pattern VK_OBJECT_ENTRY_USAGE_GRAPHICS_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | bitpos = 1
pattern VK_OBJECT_ENTRY_USAGE_COMPUTE_BIT_NVX :: VkObjectEntryUsageBitmaskNVX a
-- | Enums to track objects of various types
--
-- type = enum
--
-- VkObjectType registry at www.khronos.org
newtype VkObjectType
VkObjectType :: Int32 -> VkObjectType
pattern VK_OBJECT_TYPE_UNKNOWN :: VkObjectType
-- | VkInstance
pattern VK_OBJECT_TYPE_INSTANCE :: VkObjectType
-- | VkPhysicalDevice
pattern VK_OBJECT_TYPE_PHYSICAL_DEVICE :: VkObjectType
-- | VkDevice
pattern VK_OBJECT_TYPE_DEVICE :: VkObjectType
-- | VkQueue
pattern VK_OBJECT_TYPE_QUEUE :: VkObjectType
-- | VkSemaphore
pattern VK_OBJECT_TYPE_SEMAPHORE :: VkObjectType
-- | VkCommandBuffer
pattern VK_OBJECT_TYPE_COMMAND_BUFFER :: VkObjectType
-- | VkFence
pattern VK_OBJECT_TYPE_FENCE :: VkObjectType
-- | VkDeviceMemory
pattern VK_OBJECT_TYPE_DEVICE_MEMORY :: VkObjectType
-- | VkBuffer
pattern VK_OBJECT_TYPE_BUFFER :: VkObjectType
-- | VkImage
pattern VK_OBJECT_TYPE_IMAGE :: VkObjectType
-- | VkEvent
pattern VK_OBJECT_TYPE_EVENT :: VkObjectType
-- | VkQueryPool
pattern VK_OBJECT_TYPE_QUERY_POOL :: VkObjectType
-- | VkBufferView
pattern VK_OBJECT_TYPE_BUFFER_VIEW :: VkObjectType
-- | VkImageView
pattern VK_OBJECT_TYPE_IMAGE_VIEW :: VkObjectType
-- | VkShaderModule
pattern VK_OBJECT_TYPE_SHADER_MODULE :: VkObjectType
-- | VkPipelineCache
pattern VK_OBJECT_TYPE_PIPELINE_CACHE :: VkObjectType
-- | VkPipelineLayout
pattern VK_OBJECT_TYPE_PIPELINE_LAYOUT :: VkObjectType
-- | VkRenderPass
pattern VK_OBJECT_TYPE_RENDER_PASS :: VkObjectType
-- | VkPipeline
pattern VK_OBJECT_TYPE_PIPELINE :: VkObjectType
-- | VkDescriptorSetLayout
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT :: VkObjectType
-- | VkSampler
pattern VK_OBJECT_TYPE_SAMPLER :: VkObjectType
-- | VkDescriptorPool
pattern VK_OBJECT_TYPE_DESCRIPTOR_POOL :: VkObjectType
-- | VkDescriptorSet
pattern VK_OBJECT_TYPE_DESCRIPTOR_SET :: VkObjectType
-- | VkFramebuffer
pattern VK_OBJECT_TYPE_FRAMEBUFFER :: VkObjectType
-- | VkCommandPool
pattern VK_OBJECT_TYPE_COMMAND_POOL :: VkObjectType
type VkObjectEntryUsageFlagBitsNVX = VkObjectEntryUsageBitmaskNVX FlagBit
type VkObjectEntryUsageFlagsNVX = VkObjectEntryUsageBitmaskNVX FlagMask
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdExecuteCommands"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdEndRenderPass"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdNextSubpass"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBeginRenderPass"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdPushConstants"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdCopyQueryPoolResults"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdWriteTimestamp"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdResetQueryPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdEndQuery"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBeginQuery"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdPipelineBarrier"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdWaitEvents"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdResetEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdResolveImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdClearAttachments"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdClearDepthStencilImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdClearColorImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdFillBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdUpdateBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdCopyImageToBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdCopyBufferToImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBlitImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdCopyImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdCopyBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDispatchIndirect"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDispatch"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndexedIndirect"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndirect"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDrawIndexed"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdDraw"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBindVertexBuffers"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBindIndexBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBindDescriptorSets"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetStencilReference"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetStencilWriteMask"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetStencilCompareMask"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetDepthBounds"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetBlendConstants"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetDepthBias"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetLineWidth"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetScissor"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdSetViewport"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCmdBindPipeline"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkResetCommandBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEndCommandBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBeginCommandBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkFreeCommandBuffers"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkAllocateCommandBuffers"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkResetCommandPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyCommandPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateCommandPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetRenderAreaGranularity"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyRenderPass"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateRenderPass"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyFramebuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateFramebuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkUpdateDescriptorSets"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkFreeDescriptorSets"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkAllocateDescriptorSets"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkResetDescriptorPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDescriptorPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDescriptorPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDescriptorSetLayout"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDescriptorSetLayout"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySampler"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSampler"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyPipelineLayout"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreatePipelineLayout"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyPipeline"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateComputePipelines"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateGraphicsPipelines"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkMergePipelineCaches"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPipelineCacheData"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyPipelineCache"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreatePipelineCache"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyShaderModule"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateShaderModule"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyImageView"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateImageView"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageSubresourceLayout"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateImage"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyBufferView"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateBufferView"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateBuffer"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetQueryPoolResults"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyQueryPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateQueryPool"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkResetEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkSetEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetEventStatus"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateEvent"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroySemaphore"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateSemaphore"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkWaitForFences"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetFenceStatus"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkResetFences"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyFence"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateFence"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueBindSparse"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceSparseImageFormatProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageSparseMemoryRequirements"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetImageMemoryRequirements"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetBufferMemoryRequirements"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindImageMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkBindBufferMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceMemoryCommitment"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkInvalidateMappedMemoryRanges"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkFlushMappedMemoryRanges"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkUnmapMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkMapMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkFreeMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkAllocateMemory"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDeviceWaitIdle"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueWaitIdle"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkQueueSubmit"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceQueue"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumerateDeviceLayerProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumerateInstanceLayerProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumerateDeviceExtensionProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumerateInstanceExtensionProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyDevice"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateDevice"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetDeviceProcAddr"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetInstanceProcAddr"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceMemoryProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceQueueFamilyProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceImageFormatProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFormatProperties"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkGetPhysicalDeviceFeatures"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkEnumeratePhysicalDevices"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkDestroyInstance"
instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkCreateInstance"
module Graphics.Vulkan.Ext.VK_EXT_hdr_metadata
-- |
-- typedef struct VkHdrMetadataEXT {
-- VkStructureType sType;
-- const void* pNext;
-- VkXYColorEXT displayPrimaryRed;
-- VkXYColorEXT displayPrimaryGreen;
-- VkXYColorEXT displayPrimaryBlue;
-- VkXYColorEXT whitePoint;
-- float maxLuminance;
-- float minLuminance;
-- float maxContentLightLevel;
-- float maxFrameAverageLightLevel;
-- } VkHdrMetadataEXT;
--
--
-- VkHdrMetadataEXT registry at www.khronos.org
type VkHdrMetadataEXT = VkStruct VkHdrMetadataEXT'
-- | Structure type enumerant
--
-- type = enum
--
-- VkStructureType registry at www.khronos.org
newtype VkStructureType
VkStructureType :: Int32 -> VkStructureType
pattern VK_STRUCTURE_TYPE_APPLICATION_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SUBMIT_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_MAPPED_MEMORY_RANGE :: VkStructureType
pattern VK_STRUCTURE_TYPE_BIND_SPARSE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_FENCE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_EVENT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_CACHE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_TESSELLATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_COPY_DESCRIPTOR_SET :: VkStructureType
pattern VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_INHERITANCE_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO :: VkStructureType
pattern VK_STRUCTURE_TYPE_BUFFER_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER :: VkStructureType
pattern VK_STRUCTURE_TYPE_MEMORY_BARRIER :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_INSTANCE_CREATE_INFO :: VkStructureType
-- | Reserved for internal use by the loader, layers, and ICDs
pattern VK_STRUCTURE_TYPE_LOADER_DEVICE_CREATE_INFO :: VkStructureType
-- | Chromaticity coordinate
--
--
-- typedef struct VkXYColorEXT {
-- float x;
-- float y;
-- } VkXYColorEXT;
--
--
-- VkXYColorEXT registry at www.khronos.org
type VkXYColorEXT = VkStruct VkXYColorEXT'
type VkSetHdrMetadataEXT = "vkSetHdrMetadataEXT"
pattern VkSetHdrMetadataEXT :: CString
-- | -- void vkSetHdrMetadataEXT -- ( VkDevice device -- , uint32_t swapchainCount -- , const VkSwapchainKHR* pSwapchains -- , const VkHdrMetadataEXT* pMetadata -- ) ---- -- vkSetHdrMetadataEXT registry at www.khronos.org type HS_vkSetHdrMetadataEXT = VkDevice " device" -> Word32 " swapchainCount" -> Ptr VkSwapchainKHR " pSwapchains" -> Ptr VkHdrMetadataEXT " pMetadata" -> IO () type PFN_vkSetHdrMetadataEXT = FunPtr HS_vkSetHdrMetadataEXT type VkBuffer = VkPtr VkBuffer_T type VkBufferView = VkPtr VkBufferView_T -- | Opaque data type referenced by VkBufferView data VkBufferView_T -- | Opaque data type referenced by VkBuffer data VkBuffer_T type VkCommandBuffer = Ptr VkCommandBuffer_T -- | Opaque data type referenced by VkCommandBuffer data VkCommandBuffer_T type VkCommandPool = VkPtr VkCommandPool_T -- | Opaque data type referenced by VkCommandPool data VkCommandPool_T type VkDebugReportCallbackEXT = VkPtr VkDebugReportCallbackEXT_T -- | Opaque data type referenced by VkDebugReportCallbackEXT data VkDebugReportCallbackEXT_T type VkDebugUtilsMessengerEXT = VkPtr VkDebugUtilsMessengerEXT_T -- | Opaque data type referenced by VkDebugUtilsMessengerEXT data VkDebugUtilsMessengerEXT_T type VkDescriptorPool = VkPtr VkDescriptorPool_T -- | Opaque data type referenced by VkDescriptorPool data VkDescriptorPool_T type VkDescriptorSet = VkPtr VkDescriptorSet_T type VkDescriptorSetLayout = VkPtr VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSetLayout data VkDescriptorSetLayout_T -- | Opaque data type referenced by VkDescriptorSet data VkDescriptorSet_T type VkDescriptorUpdateTemplate = VkPtr VkDescriptorUpdateTemplate_T type VkDescriptorUpdateTemplateKHR = VkPtr VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplateKHR data VkDescriptorUpdateTemplateKHR_T -- | Opaque data type referenced by VkDescriptorUpdateTemplate data VkDescriptorUpdateTemplate_T type VkDevice = Ptr VkDevice_T type VkDeviceMemory = VkPtr VkDeviceMemory_T -- | Opaque data type referenced by VkDeviceMemory data VkDeviceMemory_T -- | Opaque data type referenced by VkDevice data VkDevice_T type VkDisplayKHR = VkPtr VkDisplayKHR_T -- | Opaque data type referenced by VkDisplayKHR data VkDisplayKHR_T type VkDisplayModeKHR = VkPtr VkDisplayModeKHR_T -- | Opaque data type referenced by VkDisplayModeKHR data VkDisplayModeKHR_T type VkEvent = VkPtr VkEvent_T -- | Opaque data type referenced by VkEvent data VkEvent_T type VkFence = VkPtr VkFence_T -- | Opaque data type referenced by VkFence data VkFence_T type VkFramebuffer = VkPtr VkFramebuffer_T -- | Opaque data type referenced by VkFramebuffer data VkFramebuffer_T type VkImage = VkPtr VkImage_T type VkImageView = VkPtr VkImageView_T -- | Opaque data type referenced by VkImageView data VkImageView_T -- | Opaque data type referenced by VkImage data VkImage_T type VkIndirectCommandsLayoutNVX = VkPtr VkIndirectCommandsLayoutNVX_T -- | Opaque data type referenced by VkIndirectCommandsLayoutNVX data VkIndirectCommandsLayoutNVX_T type VkInstance = Ptr VkInstance_T -- | Opaque data type referenced by VkInstance data VkInstance_T type VkObjectTableNVX = VkPtr VkObjectTableNVX_T -- | Opaque data type referenced by VkObjectTableNVX data VkObjectTableNVX_T type VkPhysicalDevice = Ptr VkPhysicalDevice_T -- | Opaque data type referenced by VkPhysicalDevice data VkPhysicalDevice_T type VkPipeline = VkPtr VkPipeline_T type VkPipelineCache = VkPtr VkPipelineCache_T -- | Opaque data type referenced by VkPipelineCache data VkPipelineCache_T type VkPipelineLayout = VkPtr VkPipelineLayout_T -- | Opaque data type referenced by VkPipelineLayout data VkPipelineLayout_T -- | Opaque data type referenced by VkPipeline data VkPipeline_T type VkQueryPool = VkPtr VkQueryPool_T -- | Opaque data type referenced by VkQueryPool data VkQueryPool_T type VkQueue = Ptr VkQueue_T -- | Opaque data type referenced by VkQueue data VkQueue_T type VkRenderPass = VkPtr VkRenderPass_T -- | Opaque data type referenced by VkRenderPass data VkRenderPass_T type VkSampler = VkPtr VkSampler_T type VkSamplerYcbcrConversion = VkPtr VkSamplerYcbcrConversion_T type VkSamplerYcbcrConversionKHR = VkPtr VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversionKHR data VkSamplerYcbcrConversionKHR_T -- | Opaque data type referenced by VkSamplerYcbcrConversion data VkSamplerYcbcrConversion_T -- | Opaque data type referenced by VkSampler data VkSampler_T type VkSemaphore = VkPtr VkSemaphore_T -- | Opaque data type referenced by VkSemaphore data VkSemaphore_T type VkShaderModule = VkPtr VkShaderModule_T -- | Opaque data type referenced by VkShaderModule data VkShaderModule_T type VkSurfaceKHR = VkPtr VkSurfaceKHR_T -- | Opaque data type referenced by VkSurfaceKHR data VkSurfaceKHR_T type VkSwapchainKHR = VkPtr VkSwapchainKHR_T -- | Opaque data type referenced by VkSwapchainKHR data VkSwapchainKHR_T type VkValidationCacheEXT = VkPtr VkValidationCacheEXT_T -- | Opaque data type referenced by VkValidationCacheEXT data VkValidationCacheEXT_T type VK_EXT_HDR_METADATA_SPEC_VERSION = 1 pattern VK_EXT_HDR_METADATA_SPEC_VERSION :: (Num a, Eq a) => a type VK_EXT_HDR_METADATA_EXTENSION_NAME = "VK_EXT_hdr_metadata" pattern VK_EXT_HDR_METADATA_EXTENSION_NAME :: CString pattern VK_STRUCTURE_TYPE_HDR_METADATA_EXT :: VkStructureType instance Graphics.Vulkan.Marshal.Proc.VulkanProc "vkSetHdrMetadataEXT" module Graphics.Vulkan.Ext