{-# language CPP #-} -- | = Name -- -- VK_EXT_external_memory_host - device extension -- -- == VK_EXT_external_memory_host -- -- [__Name String__] -- @VK_EXT_external_memory_host@ -- -- [__Extension Type__] -- Device extension -- -- [__Registered Extension Number__] -- 179 -- -- [__Revision__] -- 1 -- -- [__Extension and Version Dependencies__] -- -- - Requires Vulkan 1.0 -- -- - Requires @VK_KHR_external_memory@ -- -- [__Contact__] -- -- - Daniel Rakos -- > > -- -- == Other Extension Metadata -- -- [__Last Modified Date__] -- 2017-11-10 -- -- [__IP Status__] -- No known IP claims. -- -- [__Contributors__] -- -- - Jaakko Konttinen, AMD -- -- - David Mao, AMD -- -- - Daniel Rakos, AMD -- -- - Tobias Hector, Imagination Technologies -- -- - Jason Ekstrand, Intel -- -- - James Jones, NVIDIA -- -- == Description -- -- This extension enables an application to import host allocations and -- host mapped foreign device memory to Vulkan memory objects. -- -- == New Commands -- -- - 'getMemoryHostPointerPropertiesEXT' -- -- == New Structures -- -- - 'MemoryHostPointerPropertiesEXT' -- -- - Extending 'Vulkan.Core10.Memory.MemoryAllocateInfo': -- -- - 'ImportMemoryHostPointerInfoEXT' -- -- - Extending -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceProperties2': -- -- - 'PhysicalDeviceExternalMemoryHostPropertiesEXT' -- -- == New Enum Constants -- -- - 'EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME' -- -- - 'EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION' -- -- - Extending -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits': -- -- - 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT' -- -- - 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT' -- -- - Extending 'Vulkan.Core10.Enums.StructureType.StructureType': -- -- - 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT' -- -- - 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT' -- -- - 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT' -- -- == Issues -- -- 1) What memory type has to be used to import host pointers? -- -- __RESOLVED__: Depends on the implementation. Applications have to use -- the new 'getMemoryHostPointerPropertiesEXT' command to query the -- supported memory types for a particular host pointer. The reported -- memory types may include memory types that come from a memory heap that -- is otherwise not usable for regular memory object allocation and thus -- such a heap’s size may be zero. -- -- 2) Can the application still access the contents of the host allocation -- after importing? -- -- __RESOLVED__: Yes. However, usual synchronization requirements apply. -- -- 3) Can the application free the host allocation? -- -- __RESOLVED__: No, it violates valid usage conditions. Using the memory -- object imported from a host allocation that is already freed thus -- results in undefined behavior. -- -- 4) Is 'Vulkan.Core10.Memory.mapMemory' expected to return the same host -- address which was specified when importing it to the memory object? -- -- __RESOLVED__: No. Implementations are allowed to return the same address -- but it is not required. Some implementations might return a different -- virtual mapping of the allocation, although the same physical pages will -- be used. -- -- 5) Is there any limitation on the alignment of the host pointer and\/or -- size? -- -- __RESOLVED__: Yes. Both the address and the size have to be an integer -- multiple of @minImportedHostPointerAlignment@. In addition, some -- platforms and foreign devices may have additional restrictions. -- -- 6) Can the same host allocation be imported multiple times into a given -- physical device? -- -- __RESOLVED__: No, at least not guaranteed by this extension. Some -- platforms do not allow locking the same physical pages for device access -- multiple times, so attempting to do it may result in undefined behavior. -- -- 7) Does this extension support exporting the new handle type? -- -- __RESOLVED__: No. -- -- 8) Should we include the possibility to import host mapped foreign -- device memory using this API? -- -- __RESOLVED__: Yes, through a separate handle type. Implementations are -- still allowed to support only one of the handle types introduced by this -- extension by not returning import support for a particular handle type -- as returned in -- 'Vulkan.Extensions.VK_KHR_external_memory_capabilities.ExternalMemoryPropertiesKHR'. -- -- == Version History -- -- - Revision 1, 2017-11-10 (Daniel Rakos) -- -- - Internal revisions -- -- == See Also -- -- 'ImportMemoryHostPointerInfoEXT', 'MemoryHostPointerPropertiesEXT', -- 'PhysicalDeviceExternalMemoryHostPropertiesEXT', -- 'getMemoryHostPointerPropertiesEXT' -- -- == Document Notes -- -- For more information, see the -- -- -- This page is a generated document. Fixes and changes should be made to -- the generator scripts, not directly. module Vulkan.Extensions.VK_EXT_external_memory_host ( getMemoryHostPointerPropertiesEXT , ImportMemoryHostPointerInfoEXT(..) , MemoryHostPointerPropertiesEXT(..) , PhysicalDeviceExternalMemoryHostPropertiesEXT(..) , EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION , pattern EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION , EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME , pattern EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME ) where import Vulkan.Internal.Utils (traceAroundEvent) import Control.Monad (unless) import Control.Monad.IO.Class (liftIO) import Foreign.Marshal.Alloc (allocaBytes) import GHC.Base (when) import GHC.IO (throwIO) import GHC.Ptr (nullFunPtr) import Foreign.Ptr (nullPtr) import Foreign.Ptr (plusPtr) import Control.Monad.Trans.Class (lift) import Control.Monad.Trans.Cont (evalContT) import Vulkan.CStruct (FromCStruct) import Vulkan.CStruct (FromCStruct(..)) import Vulkan.CStruct (ToCStruct) import Vulkan.CStruct (ToCStruct(..)) import Vulkan.Zero (Zero(..)) import Control.Monad.IO.Class (MonadIO) import Data.String (IsString) import Data.Typeable (Typeable) import Foreign.Storable (Storable) import Foreign.Storable (Storable(peek)) import Foreign.Storable (Storable(poke)) import qualified Foreign.Storable (Storable(..)) import GHC.Generics (Generic) import GHC.IO.Exception (IOErrorType(..)) import GHC.IO.Exception (IOException(..)) import Foreign.Ptr (FunPtr) import Foreign.Ptr (Ptr) import Data.Word (Word32) import Data.Kind (Type) import Control.Monad.Trans.Cont (ContT(..)) import Vulkan.NamedType ((:::)) import Vulkan.Core10.Handles (Device) import Vulkan.Core10.Handles (Device(..)) import Vulkan.Core10.Handles (Device(Device)) import Vulkan.Dynamic (DeviceCmds(pVkGetMemoryHostPointerPropertiesEXT)) import Vulkan.Core10.FundamentalTypes (DeviceSize) import Vulkan.Core10.Handles (Device_T) import Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits (ExternalMemoryHandleTypeFlagBits) import Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits (ExternalMemoryHandleTypeFlagBits(..)) import Vulkan.Core10.Enums.Result (Result) import Vulkan.Core10.Enums.Result (Result(..)) import Vulkan.Core10.Enums.StructureType (StructureType) import Vulkan.Exception (VulkanException(..)) import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT)) import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT)) import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT)) import Vulkan.Core10.Enums.Result (Result(SUCCESS)) foreign import ccall #if !defined(SAFE_FOREIGN_CALLS) unsafe #endif "dynamic" mkVkGetMemoryHostPointerPropertiesEXT :: FunPtr (Ptr Device_T -> ExternalMemoryHandleTypeFlagBits -> Ptr () -> Ptr MemoryHostPointerPropertiesEXT -> IO Result) -> Ptr Device_T -> ExternalMemoryHandleTypeFlagBits -> Ptr () -> Ptr MemoryHostPointerPropertiesEXT -> IO Result -- | vkGetMemoryHostPointerPropertiesEXT - Get properties of external memory -- host pointer -- -- == Valid Usage -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-handleType-01752# -- @handleType@ /must/ be -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT' -- or -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT' -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-pHostPointer-01753# -- @pHostPointer@ /must/ be a pointer aligned to an integer multiple of -- 'PhysicalDeviceExternalMemoryHostPropertiesEXT'::@minImportedHostPointerAlignment@ -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-handleType-01754# If -- @handleType@ is -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT', -- @pHostPointer@ /must/ be a pointer to host memory -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-handleType-01755# If -- @handleType@ is -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT', -- @pHostPointer@ /must/ be a pointer to host mapped foreign memory -- -- == Valid Usage (Implicit) -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-device-parameter# @device@ -- /must/ be a valid 'Vulkan.Core10.Handles.Device' handle -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-handleType-parameter# -- @handleType@ /must/ be a valid -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits' -- value -- -- - #VUID-vkGetMemoryHostPointerPropertiesEXT-pMemoryHostPointerProperties-parameter# -- @pMemoryHostPointerProperties@ /must/ be a valid pointer to a -- 'MemoryHostPointerPropertiesEXT' structure -- -- == Return Codes -- -- [] -- -- - 'Vulkan.Core10.Enums.Result.SUCCESS' -- -- [] -- -- - 'Vulkan.Core10.Enums.Result.ERROR_OUT_OF_HOST_MEMORY' -- -- - 'Vulkan.Core10.Enums.Result.ERROR_INVALID_EXTERNAL_HANDLE' -- -- = See Also -- -- , -- 'Vulkan.Core10.Handles.Device', -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits', -- 'MemoryHostPointerPropertiesEXT' getMemoryHostPointerPropertiesEXT :: forall io . (MonadIO io) => -- | @device@ is the logical device that will be importing @pHostPointer@. Device -> -- | @handleType@ is a -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits' -- value specifying the type of the handle @pHostPointer@. ExternalMemoryHandleTypeFlagBits -> -- | @pHostPointer@ is the host pointer to import from. ("hostPointer" ::: Ptr ()) -> io (MemoryHostPointerPropertiesEXT) getMemoryHostPointerPropertiesEXT device handleType hostPointer = liftIO . evalContT $ do let vkGetMemoryHostPointerPropertiesEXTPtr = pVkGetMemoryHostPointerPropertiesEXT (case device of Device{deviceCmds} -> deviceCmds) lift $ unless (vkGetMemoryHostPointerPropertiesEXTPtr /= nullFunPtr) $ throwIO $ IOError Nothing InvalidArgument "" "The function pointer for vkGetMemoryHostPointerPropertiesEXT is null" Nothing Nothing let vkGetMemoryHostPointerPropertiesEXT' = mkVkGetMemoryHostPointerPropertiesEXT vkGetMemoryHostPointerPropertiesEXTPtr pPMemoryHostPointerProperties <- ContT (withZeroCStruct @MemoryHostPointerPropertiesEXT) r <- lift $ traceAroundEvent "vkGetMemoryHostPointerPropertiesEXT" (vkGetMemoryHostPointerPropertiesEXT' (deviceHandle (device)) (handleType) (hostPointer) (pPMemoryHostPointerProperties)) lift $ when (r < SUCCESS) (throwIO (VulkanException r)) pMemoryHostPointerProperties <- lift $ peekCStruct @MemoryHostPointerPropertiesEXT pPMemoryHostPointerProperties pure $ (pMemoryHostPointerProperties) -- | VkImportMemoryHostPointerInfoEXT - Import memory from a host pointer -- -- = Description -- -- Importing memory from a host pointer shares ownership of the memory -- between the host and the Vulkan implementation. The application /can/ -- continue to access the memory through the host pointer but it is the -- application’s responsibility to synchronize device and non-device access -- to the payload as defined in -- . -- -- Applications /can/ import the same payload into multiple instances of -- Vulkan and multiple times into a given Vulkan instance. However, -- implementations /may/ fail to import the same payload multiple times -- into a given physical device due to platform constraints. -- -- Importing memory from a particular host pointer /may/ not be possible -- due to additional platform-specific restrictions beyond the scope of -- this specification in which case the implementation /must/ fail the -- memory import operation with the error code -- 'Vulkan.Extensions.VK_KHR_external_memory.ERROR_INVALID_EXTERNAL_HANDLE_KHR'. -- -- Whether device memory objects imported from a host pointer hold a -- reference to their payload is undefined. As such, the application /must/ -- ensure that the imported memory range remains valid and accessible for -- the lifetime of the imported memory object. -- -- == Valid Usage -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-handleType-01747# If -- @handleType@ is not @0@, it /must/ be supported for import, as -- reported in -- 'Vulkan.Core11.Promoted_From_VK_KHR_external_memory_capabilities.ExternalMemoryProperties' -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-handleType-01748# If -- @handleType@ is not @0@, it /must/ be -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT' -- or -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT' -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-pHostPointer-01749# -- @pHostPointer@ /must/ be a pointer aligned to an integer multiple of -- 'PhysicalDeviceExternalMemoryHostPropertiesEXT'::@minImportedHostPointerAlignment@ -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-handleType-01750# If -- @handleType@ is -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_ALLOCATION_BIT_EXT', -- @pHostPointer@ /must/ be a pointer to @allocationSize@ number of -- bytes of host memory, where @allocationSize@ is the member of the -- 'Vulkan.Core10.Memory.MemoryAllocateInfo' structure this structure -- is chained to -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-handleType-01751# If -- @handleType@ is -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.EXTERNAL_MEMORY_HANDLE_TYPE_HOST_MAPPED_FOREIGN_MEMORY_BIT_EXT', -- @pHostPointer@ /must/ be a pointer to @allocationSize@ number of -- bytes of host mapped foreign memory, where @allocationSize@ is the -- member of the 'Vulkan.Core10.Memory.MemoryAllocateInfo' structure -- this structure is chained to -- -- == Valid Usage (Implicit) -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-sType-sType# @sType@ /must/ -- be -- 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT' -- -- - #VUID-VkImportMemoryHostPointerInfoEXT-handleType-parameter# -- @handleType@ /must/ be a valid -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits' -- value -- -- = See Also -- -- , -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits', -- 'Vulkan.Core10.Enums.StructureType.StructureType' data ImportMemoryHostPointerInfoEXT = ImportMemoryHostPointerInfoEXT { -- | @handleType@ is a -- 'Vulkan.Core11.Enums.ExternalMemoryHandleTypeFlagBits.ExternalMemoryHandleTypeFlagBits' -- value specifying the handle type. handleType :: ExternalMemoryHandleTypeFlagBits , -- | @pHostPointer@ is the host pointer to import from. hostPointer :: Ptr () } deriving (Typeable) #if defined(GENERIC_INSTANCES) deriving instance Generic (ImportMemoryHostPointerInfoEXT) #endif deriving instance Show ImportMemoryHostPointerInfoEXT instance ToCStruct ImportMemoryHostPointerInfoEXT where withCStruct x f = allocaBytes 32 $ \p -> pokeCStruct p x (f p) pokeCStruct p ImportMemoryHostPointerInfoEXT{..} f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr ExternalMemoryHandleTypeFlagBits)) (handleType) poke ((p `plusPtr` 24 :: Ptr (Ptr ()))) (hostPointer) f cStructSize = 32 cStructAlignment = 8 pokeZeroCStruct p f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_IMPORT_MEMORY_HOST_POINTER_INFO_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr ExternalMemoryHandleTypeFlagBits)) (zero) poke ((p `plusPtr` 24 :: Ptr (Ptr ()))) (zero) f instance FromCStruct ImportMemoryHostPointerInfoEXT where peekCStruct p = do handleType <- peek @ExternalMemoryHandleTypeFlagBits ((p `plusPtr` 16 :: Ptr ExternalMemoryHandleTypeFlagBits)) pHostPointer <- peek @(Ptr ()) ((p `plusPtr` 24 :: Ptr (Ptr ()))) pure $ ImportMemoryHostPointerInfoEXT handleType pHostPointer instance Storable ImportMemoryHostPointerInfoEXT where sizeOf ~_ = 32 alignment ~_ = 8 peek = peekCStruct poke ptr poked = pokeCStruct ptr poked (pure ()) instance Zero ImportMemoryHostPointerInfoEXT where zero = ImportMemoryHostPointerInfoEXT zero zero -- | VkMemoryHostPointerPropertiesEXT - Properties of external memory host -- pointer -- -- = Description -- -- The value returned by @memoryTypeBits@ /must/ only include bits that -- identify memory types which are host visible. -- -- == Valid Usage (Implicit) -- -- = See Also -- -- , -- 'Vulkan.Core10.Enums.StructureType.StructureType', -- 'getMemoryHostPointerPropertiesEXT' data MemoryHostPointerPropertiesEXT = MemoryHostPointerPropertiesEXT { -- | @memoryTypeBits@ is a bitmask containing one bit set for every memory -- type which the specified host pointer /can/ be imported as. memoryTypeBits :: Word32 } deriving (Typeable, Eq) #if defined(GENERIC_INSTANCES) deriving instance Generic (MemoryHostPointerPropertiesEXT) #endif deriving instance Show MemoryHostPointerPropertiesEXT instance ToCStruct MemoryHostPointerPropertiesEXT where withCStruct x f = allocaBytes 24 $ \p -> pokeCStruct p x (f p) pokeCStruct p MemoryHostPointerPropertiesEXT{..} f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr Word32)) (memoryTypeBits) f cStructSize = 24 cStructAlignment = 8 pokeZeroCStruct p f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_MEMORY_HOST_POINTER_PROPERTIES_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr Word32)) (zero) f instance FromCStruct MemoryHostPointerPropertiesEXT where peekCStruct p = do memoryTypeBits <- peek @Word32 ((p `plusPtr` 16 :: Ptr Word32)) pure $ MemoryHostPointerPropertiesEXT memoryTypeBits instance Storable MemoryHostPointerPropertiesEXT where sizeOf ~_ = 24 alignment ~_ = 8 peek = peekCStruct poke ptr poked = pokeCStruct ptr poked (pure ()) instance Zero MemoryHostPointerPropertiesEXT where zero = MemoryHostPointerPropertiesEXT zero -- | VkPhysicalDeviceExternalMemoryHostPropertiesEXT - Structure describing -- external memory host pointer limits that can be supported by an -- implementation -- -- = Description -- -- If the 'PhysicalDeviceExternalMemoryHostPropertiesEXT' structure is -- included in the @pNext@ chain of the -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceProperties2' -- structure passed to -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.getPhysicalDeviceProperties2', -- it is filled in with each corresponding implementation-dependent -- property. -- -- == Valid Usage (Implicit) -- -- = See Also -- -- , -- 'Vulkan.Core10.FundamentalTypes.DeviceSize', -- 'Vulkan.Core10.Enums.StructureType.StructureType' data PhysicalDeviceExternalMemoryHostPropertiesEXT = PhysicalDeviceExternalMemoryHostPropertiesEXT { -- | #limits-minImportedHostPointerAlignment# -- @minImportedHostPointerAlignment@ is the minimum /required/ alignment, -- in bytes, for the base address and size of host pointers that /can/ be -- imported to a Vulkan memory object. The value /must/ be a power of two. minImportedHostPointerAlignment :: DeviceSize } deriving (Typeable, Eq) #if defined(GENERIC_INSTANCES) deriving instance Generic (PhysicalDeviceExternalMemoryHostPropertiesEXT) #endif deriving instance Show PhysicalDeviceExternalMemoryHostPropertiesEXT instance ToCStruct PhysicalDeviceExternalMemoryHostPropertiesEXT where withCStruct x f = allocaBytes 24 $ \p -> pokeCStruct p x (f p) pokeCStruct p PhysicalDeviceExternalMemoryHostPropertiesEXT{..} f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr DeviceSize)) (minImportedHostPointerAlignment) f cStructSize = 24 cStructAlignment = 8 pokeZeroCStruct p f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTERNAL_MEMORY_HOST_PROPERTIES_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr DeviceSize)) (zero) f instance FromCStruct PhysicalDeviceExternalMemoryHostPropertiesEXT where peekCStruct p = do minImportedHostPointerAlignment <- peek @DeviceSize ((p `plusPtr` 16 :: Ptr DeviceSize)) pure $ PhysicalDeviceExternalMemoryHostPropertiesEXT minImportedHostPointerAlignment instance Storable PhysicalDeviceExternalMemoryHostPropertiesEXT where sizeOf ~_ = 24 alignment ~_ = 8 peek = peekCStruct poke ptr poked = pokeCStruct ptr poked (pure ()) instance Zero PhysicalDeviceExternalMemoryHostPropertiesEXT where zero = PhysicalDeviceExternalMemoryHostPropertiesEXT zero type EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION = 1 -- No documentation found for TopLevel "VK_EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION" pattern EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION :: forall a . Integral a => a pattern EXT_EXTERNAL_MEMORY_HOST_SPEC_VERSION = 1 type EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME = "VK_EXT_external_memory_host" -- No documentation found for TopLevel "VK_EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME" pattern EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME :: forall a . (Eq a, IsString a) => a pattern EXT_EXTERNAL_MEMORY_HOST_EXTENSION_NAME = "VK_EXT_external_memory_host"