{-# language CPP #-}
-- No documentation found for Chapter "VulkanMemoryAllocator"
module VulkanMemoryAllocator  ( createAllocator
                              , withAllocator
                              , destroyAllocator
                              , getAllocatorInfo
                              , getPhysicalDeviceProperties
                              , getMemoryProperties
                              , getMemoryTypeProperties
                              , setCurrentFrameIndex
                              , calculateStats
                              , getBudget
                              , buildStatsString
                              , freeStatsString
                              , findMemoryTypeIndex
                              , findMemoryTypeIndexForBufferInfo
                              , findMemoryTypeIndexForImageInfo
                              , createPool
                              , withPool
                              , destroyPool
                              , getPoolStats
                              , makePoolAllocationsLost
                              , checkPoolCorruption
                              , getPoolName
                              , setPoolName
                              , allocateMemory
                              , withMemory
                              , allocateMemoryPages
                              , withMemoryPages
                              , allocateMemoryForBuffer
                              , withMemoryForBuffer
                              , allocateMemoryForImage
                              , withMemoryForImage
                              , freeMemory
                              , freeMemoryPages
                              , getAllocationInfo
                              , touchAllocation
                              , setAllocationUserData
                              , createLostAllocation
                              , withLostAllocation
                              , mapMemory
                              , withMappedMemory
                              , unmapMemory
                              , flushAllocation
                              , invalidateAllocation
                              , flushAllocations
                              , invalidateAllocations
                              , checkCorruption
                              , defragmentationBegin
                              , withDefragmentation
                              , defragmentationEnd
                              , beginDefragmentationPass
                              , useDefragmentationPass
                              , endDefragmentationPass
                              , defragment
                              , bindBufferMemory
                              , bindBufferMemory2
                              , bindImageMemory
                              , bindImageMemory2
                              , createBuffer
                              , withBuffer
                              , createBufferWithAlignment
                              , destroyBuffer
                              , createImage
                              , withImage
                              , destroyImage
                              , Allocator(..)
                              , PFN_vmaAllocateDeviceMemoryFunction
                              , FN_vmaAllocateDeviceMemoryFunction
                              , PFN_vmaFreeDeviceMemoryFunction
                              , FN_vmaFreeDeviceMemoryFunction
                              , DeviceMemoryCallbacks(..)
                              , AllocatorCreateFlags
                              , AllocatorCreateFlagBits( ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT
                                                       , ALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT
                                                       , ALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT
                                                       , ALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT
                                                       , ALLOCATOR_CREATE_AMD_DEVICE_COHERENT_MEMORY_BIT
                                                       , ALLOCATOR_CREATE_BUFFER_DEVICE_ADDRESS_BIT
                                                       , ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT
                                                       , ..
                                                       )
                              , VulkanFunctions(..)
                              , RecordFlags
                              , RecordFlagBits( RECORD_FLUSH_AFTER_CALL_BIT
                                              , ..
                                              )
                              , RecordSettings(..)
                              , AllocatorCreateInfo(..)
                              , AllocatorInfo(..)
                              , StatInfo(..)
                              , Stats(..)
                              , Budget(..)
                              , Pool(..)
                              , MemoryUsage( MEMORY_USAGE_UNKNOWN
                                           , MEMORY_USAGE_GPU_ONLY
                                           , MEMORY_USAGE_CPU_ONLY
                                           , MEMORY_USAGE_CPU_TO_GPU
                                           , MEMORY_USAGE_GPU_TO_CPU
                                           , MEMORY_USAGE_CPU_COPY
                                           , MEMORY_USAGE_GPU_LAZILY_ALLOCATED
                                           , ..
                                           )
                              , AllocationCreateFlags
                              , AllocationCreateFlagBits( ALLOCATION_CREATE_DEDICATED_MEMORY_BIT
                                                        , ALLOCATION_CREATE_NEVER_ALLOCATE_BIT
                                                        , ALLOCATION_CREATE_MAPPED_BIT
                                                        , ALLOCATION_CREATE_CAN_BECOME_LOST_BIT
                                                        , ALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT
                                                        , ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT
                                                        , ALLOCATION_CREATE_UPPER_ADDRESS_BIT
                                                        , ALLOCATION_CREATE_DONT_BIND_BIT
                                                        , ALLOCATION_CREATE_WITHIN_BUDGET_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_BEST_FIT_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_WORST_FIT_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_MIN_MEMORY_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_MIN_FRAGMENTATION_BIT
                                                        , ALLOCATION_CREATE_STRATEGY_MASK
                                                        , ..
                                                        )
                              , AllocationCreateInfo(..)
                              , PoolCreateFlags
                              , PoolCreateFlagBits( POOL_CREATE_IGNORE_BUFFER_IMAGE_GRANULARITY_BIT
                                                  , POOL_CREATE_LINEAR_ALGORITHM_BIT
                                                  , POOL_CREATE_BUDDY_ALGORITHM_BIT
                                                  , POOL_CREATE_ALGORITHM_MASK
                                                  , ..
                                                  )
                              , PoolCreateInfo(..)
                              , PoolStats(..)
                              , Allocation(..)
                              , AllocationInfo(..)
                              , DefragmentationContext(..)
                              , DefragmentationFlags
                              , DefragmentationFlagBits( DEFRAGMENTATION_FLAG_INCREMENTAL
                                                       , ..
                                                       )
                              , DefragmentationInfo2(..)
                              , DefragmentationPassMoveInfo(..)
                              , DefragmentationPassInfo(..)
                              , DefragmentationInfo(..)
                              , DefragmentationStats(..)
                              ) where

import Vulkan (AllocationCallbacks)
import Vulkan (BindBufferMemoryInfo)
import Vulkan (BindImageMemoryInfo)
import Vulkan (Bool32)
import Vulkan (Buffer)
import Vulkan (BufferCopy)
import Vulkan (BufferCreateInfo)
import Vulkan (BufferMemoryRequirementsInfo2)
import Vulkan (CommandBuffer_T)
import Vulkan (DeviceMemory)
import Vulkan (DeviceSize)
import Vulkan (Device_T)
import Vulkan (ExternalMemoryHandleTypeFlagsKHR)
import Vulkan (Flags)
import Vulkan (Image)
import Vulkan (ImageCreateInfo)
import Vulkan (ImageMemoryRequirementsInfo2)
import Vulkan (Instance_T)
import Vulkan (MappedMemoryRange)
import Vulkan (MemoryAllocateInfo)
import Vulkan (MemoryMapFlags)
import Vulkan (MemoryPropertyFlags)
import Vulkan (MemoryRequirements)
import Vulkan (MemoryRequirements2)
import Vulkan (PhysicalDeviceMemoryProperties)
import Vulkan (PhysicalDeviceMemoryProperties2)
import Vulkan (PhysicalDeviceProperties)
import Vulkan (PhysicalDevice_T)
import Vulkan (Result)
import Vulkan.CStruct.Utils (FixedArray)
import Vulkan.Internal.Utils (enumReadPrec)
import Vulkan.Internal.Utils (enumShowsPrec)
import Vulkan.Internal.Utils (traceAroundEvent)
import Vulkan.CStruct.Extends (forgetExtensions)
import Vulkan.CStruct.Utils (advancePtrBytes)
import Vulkan.CStruct.Utils (lowerArrayPtr)
import Vulkan.Core10.FundamentalTypes (bool32ToBool)
import Vulkan.Core10.FundamentalTypes (boolToBool32)
import Control.Exception.Base (bracket)
import Control.Monad (unless)
import Control.Monad.IO.Class (liftIO)
import Foreign.Marshal.Alloc (allocaBytes)
import Foreign.Marshal.Alloc (callocBytes)
import Foreign.Marshal.Alloc (free)
import Foreign.Marshal.Utils (maybePeek)
import GHC.Base (when)
import GHC.IO (throwIO)
import Foreign.Ptr (nullPtr)
import Foreign.Ptr (plusPtr)
import GHC.Show (showParen)
import GHC.Show (showString)
import GHC.Show (showsPrec)
import Numeric (showHex)
import Data.ByteString (packCString)
import Data.ByteString (useAsCString)
import Data.Coerce (coerce)
import Control.Monad.Trans.Class (lift)
import Control.Monad.Trans.Cont (evalContT)
import Data.Vector (generateM)
import qualified Data.Vector (imapM_)
import qualified Data.Vector (length)
import qualified Data.Vector (null)
import Vulkan.Core10.APIConstants (pattern MAX_MEMORY_HEAPS)
import Vulkan.Core10.APIConstants (pattern MAX_MEMORY_TYPES)
import Vulkan.Core10.Enums.Result (pattern SUCCESS)
import Foreign.C.Types (CChar(..))
import Foreign.C.Types (CSize(..))
import Vulkan (Bool32(..))
import Vulkan (Buffer(..))
import Vulkan (Image(..))
import Vulkan (MemoryPropertyFlagBits(..))
import Vulkan (Result(..))
import Vulkan.CStruct (FromCStruct)
import Vulkan.CStruct (FromCStruct(..))
import Vulkan.CStruct (ToCStruct)
import Vulkan.CStruct (ToCStruct(..))
import Vulkan.CStruct.Extends (Extendss)
import Vulkan.CStruct.Extends (PokeChain)
import Vulkan.CStruct.Extends (SomeStruct)
import Vulkan.Core10.APIConstants (IsHandle)
import Vulkan.Core10.APIConstants (MAX_MEMORY_HEAPS)
import Vulkan.Core10.APIConstants (MAX_MEMORY_TYPES)
import Vulkan.Exception (VulkanException(..))
import Vulkan.NamedType ((:::))
import Vulkan.Zero (Zero)
import Vulkan.Zero (Zero(..))
import Control.Monad.IO.Class (MonadIO)
import Data.Bits (Bits)
import Data.Bits (FiniteBits)
import Data.Typeable (Typeable)
import Foreign.C.Types (CChar)
import Foreign.C.Types (CFloat)
import Foreign.C.Types (CFloat(..))
import Foreign.C.Types (CFloat(CFloat))
import Foreign.C.Types (CSize)
import Foreign.C.Types (CSize(..))
import Foreign.C.Types (CSize(CSize))
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 Data.Int (Int32)
import Foreign.Ptr (FunPtr)
import Foreign.Ptr (Ptr)
import GHC.Read (Read(readPrec))
import GHC.Show (Show(showsPrec))
import Data.Word (Word32)
import Data.Word (Word64)
import Data.ByteString (ByteString)
import Data.Kind (Type)
import Control.Monad.Trans.Cont (ContT(..))
import Data.Vector (Vector)

foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreateAllocator" ffiVmaCreateAllocator
  :: Ptr AllocatorCreateInfo -> Ptr Allocator -> IO Result

-- | Creates Allocator object.
createAllocator :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaCreateAllocator" "pCreateInfo"
                   AllocatorCreateInfo
                -> io (Allocator)
createAllocator :: AllocatorCreateInfo -> io Allocator
createAllocator AllocatorCreateInfo
createInfo = IO Allocator -> io Allocator
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Allocator -> io Allocator)
-> (ContT Allocator IO Allocator -> IO Allocator)
-> ContT Allocator IO Allocator
-> io Allocator
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT Allocator IO Allocator -> IO Allocator
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT Allocator IO Allocator -> io Allocator)
-> ContT Allocator IO Allocator -> io Allocator
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocatorCreateInfo
pCreateInfo <- ((Ptr AllocatorCreateInfo -> IO Allocator) -> IO Allocator)
-> ContT Allocator IO (Ptr AllocatorCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocatorCreateInfo -> IO Allocator) -> IO Allocator)
 -> ContT Allocator IO (Ptr AllocatorCreateInfo))
-> ((Ptr AllocatorCreateInfo -> IO Allocator) -> IO Allocator)
-> ContT Allocator IO (Ptr AllocatorCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocatorCreateInfo
-> (Ptr AllocatorCreateInfo -> IO Allocator) -> IO Allocator
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocatorCreateInfo
createInfo)
  Ptr Allocator
pPAllocator <- ((Ptr Allocator -> IO Allocator) -> IO Allocator)
-> ContT Allocator IO (Ptr Allocator)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocator -> IO Allocator) -> IO Allocator)
 -> ContT Allocator IO (Ptr Allocator))
-> ((Ptr Allocator -> IO Allocator) -> IO Allocator)
-> ContT Allocator IO (Ptr Allocator)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocator)
-> (Ptr Allocator -> IO ())
-> (Ptr Allocator -> IO Allocator)
-> IO Allocator
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocator)
forall a. Int -> IO (Ptr a)
callocBytes @Allocator Int
8) Ptr Allocator -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT Allocator IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT Allocator IO Result)
-> IO Result -> ContT Allocator IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreateAllocator" ((Ptr AllocatorCreateInfo -> Ptr Allocator -> IO Result
ffiVmaCreateAllocator) Ptr AllocatorCreateInfo
pCreateInfo (Ptr Allocator
pPAllocator))
  IO () -> ContT Allocator IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT Allocator IO ()) -> IO () -> ContT Allocator IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Allocator
pAllocator <- IO Allocator -> ContT Allocator IO Allocator
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocator -> ContT Allocator IO Allocator)
-> IO Allocator -> ContT Allocator IO Allocator
forall a b. (a -> b) -> a -> b
$ Ptr Allocator -> IO Allocator
forall a. Storable a => Ptr a -> IO a
peek @Allocator Ptr Allocator
pPAllocator
  Allocator -> ContT Allocator IO Allocator
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Allocator -> ContT Allocator IO Allocator)
-> Allocator -> ContT Allocator IO Allocator
forall a b. (a -> b) -> a -> b
$ (Allocator
pAllocator)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'createAllocator' and 'destroyAllocator'
--
-- To ensure that 'destroyAllocator' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withAllocator :: forall io r . MonadIO io => AllocatorCreateInfo -> (io Allocator -> (Allocator -> io ()) -> r) -> r
withAllocator :: AllocatorCreateInfo
-> (io Allocator -> (Allocator -> io ()) -> r) -> r
withAllocator AllocatorCreateInfo
pCreateInfo io Allocator -> (Allocator -> io ()) -> r
b =
  io Allocator -> (Allocator -> io ()) -> r
b (AllocatorCreateInfo -> io Allocator
forall (io :: * -> *).
MonadIO io =>
AllocatorCreateInfo -> io Allocator
createAllocator AllocatorCreateInfo
pCreateInfo)
    (\(Allocator
o0) -> Allocator -> io ()
forall (io :: * -> *). MonadIO io => Allocator -> io ()
destroyAllocator Allocator
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDestroyAllocator" ffiVmaDestroyAllocator
  :: Allocator -> IO ()

-- | Destroys allocator object.
destroyAllocator :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaDestroyAllocator" "allocator"
                    Allocator
                 -> io ()
destroyAllocator :: Allocator -> io ()
destroyAllocator Allocator
allocator = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDestroyAllocator" ((Allocator -> IO ()
ffiVmaDestroyAllocator) (Allocator
allocator))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetAllocatorInfo" ffiVmaGetAllocatorInfo
  :: Allocator -> Ptr AllocatorInfo -> IO ()

-- | Returns information about existing 'Allocator' object - handle to Vulkan
-- device etc.
--
-- It might be useful if you want to keep just the 'Allocator' handle and
-- fetch other required handles to @VkPhysicalDevice@, @VkDevice@ etc.
-- every time using this function.
getAllocatorInfo :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaGetAllocatorInfo" "allocator"
                    Allocator
                 -> io (AllocatorInfo)
getAllocatorInfo :: Allocator -> io AllocatorInfo
getAllocatorInfo Allocator
allocator = IO AllocatorInfo -> io AllocatorInfo
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO AllocatorInfo -> io AllocatorInfo)
-> (ContT AllocatorInfo IO AllocatorInfo -> IO AllocatorInfo)
-> ContT AllocatorInfo IO AllocatorInfo
-> io AllocatorInfo
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT AllocatorInfo IO AllocatorInfo -> IO AllocatorInfo
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT AllocatorInfo IO AllocatorInfo -> io AllocatorInfo)
-> ContT AllocatorInfo IO AllocatorInfo -> io AllocatorInfo
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocatorInfo
pPAllocatorInfo <- ((Ptr AllocatorInfo -> IO AllocatorInfo) -> IO AllocatorInfo)
-> ContT AllocatorInfo IO (Ptr AllocatorInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocatorInfo =>
(Ptr AllocatorInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocatorInfo)
  IO () -> ContT AllocatorInfo IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT AllocatorInfo IO ())
-> IO () -> ContT AllocatorInfo IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetAllocatorInfo" ((Allocator -> Ptr AllocatorInfo -> IO ()
ffiVmaGetAllocatorInfo) (Allocator
allocator) (Ptr AllocatorInfo
pPAllocatorInfo))
  AllocatorInfo
pAllocatorInfo <- IO AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo)
-> IO AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocatorInfo -> IO AllocatorInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocatorInfo Ptr AllocatorInfo
pPAllocatorInfo
  AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo)
-> AllocatorInfo -> ContT AllocatorInfo IO AllocatorInfo
forall a b. (a -> b) -> a -> b
$ (AllocatorInfo
pAllocatorInfo)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetPhysicalDeviceProperties" ffiVmaGetPhysicalDeviceProperties
  :: Allocator -> Ptr (Ptr PhysicalDeviceProperties) -> IO ()

-- | PhysicalDeviceProperties are fetched from physicalDevice by the
-- allocator. You can access it here, without fetching it again on your
-- own.
getPhysicalDeviceProperties :: forall io
                             . (MonadIO io)
                            => -- No documentation found for Nested "vmaGetPhysicalDeviceProperties" "allocator"
                               Allocator
                            -> io (Ptr PhysicalDeviceProperties)
getPhysicalDeviceProperties :: Allocator -> io (Ptr PhysicalDeviceProperties)
getPhysicalDeviceProperties Allocator
allocator = IO (Ptr PhysicalDeviceProperties)
-> io (Ptr PhysicalDeviceProperties)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Ptr PhysicalDeviceProperties)
 -> io (Ptr PhysicalDeviceProperties))
-> (ContT
      (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
    -> IO (Ptr PhysicalDeviceProperties))
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
-> io (Ptr PhysicalDeviceProperties)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
-> IO (Ptr PhysicalDeviceProperties)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
 -> io (Ptr PhysicalDeviceProperties))
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
-> io (Ptr PhysicalDeviceProperties)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (Ptr PhysicalDeviceProperties)
pPpPhysicalDeviceProperties <- ((Ptr (Ptr PhysicalDeviceProperties)
  -> IO (Ptr PhysicalDeviceProperties))
 -> IO (Ptr PhysicalDeviceProperties))
-> ContT
     (Ptr PhysicalDeviceProperties)
     IO
     (Ptr (Ptr PhysicalDeviceProperties))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (Ptr PhysicalDeviceProperties)
   -> IO (Ptr PhysicalDeviceProperties))
  -> IO (Ptr PhysicalDeviceProperties))
 -> ContT
      (Ptr PhysicalDeviceProperties)
      IO
      (Ptr (Ptr PhysicalDeviceProperties)))
-> ((Ptr (Ptr PhysicalDeviceProperties)
     -> IO (Ptr PhysicalDeviceProperties))
    -> IO (Ptr PhysicalDeviceProperties))
-> ContT
     (Ptr PhysicalDeviceProperties)
     IO
     (Ptr (Ptr PhysicalDeviceProperties))
forall a b. (a -> b) -> a -> b
$ IO (Ptr (Ptr PhysicalDeviceProperties))
-> (Ptr (Ptr PhysicalDeviceProperties) -> IO ())
-> (Ptr (Ptr PhysicalDeviceProperties)
    -> IO (Ptr PhysicalDeviceProperties))
-> IO (Ptr PhysicalDeviceProperties)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr (Ptr PhysicalDeviceProperties))
forall a. Int -> IO (Ptr a)
callocBytes @(Ptr PhysicalDeviceProperties) Int
8) Ptr (Ptr PhysicalDeviceProperties) -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT (Ptr PhysicalDeviceProperties) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Ptr PhysicalDeviceProperties) IO ())
-> IO () -> ContT (Ptr PhysicalDeviceProperties) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetPhysicalDeviceProperties" ((Allocator -> Ptr (Ptr PhysicalDeviceProperties) -> IO ()
ffiVmaGetPhysicalDeviceProperties) (Allocator
allocator) (Ptr (Ptr PhysicalDeviceProperties)
pPpPhysicalDeviceProperties))
  Ptr PhysicalDeviceProperties
ppPhysicalDeviceProperties <- IO (Ptr PhysicalDeviceProperties)
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO (Ptr PhysicalDeviceProperties)
 -> ContT
      (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties))
-> IO (Ptr PhysicalDeviceProperties)
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr PhysicalDeviceProperties)
-> IO (Ptr PhysicalDeviceProperties)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr PhysicalDeviceProperties) Ptr (Ptr PhysicalDeviceProperties)
pPpPhysicalDeviceProperties
  Ptr PhysicalDeviceProperties
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr PhysicalDeviceProperties
 -> ContT
      (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties))
-> Ptr PhysicalDeviceProperties
-> ContT
     (Ptr PhysicalDeviceProperties) IO (Ptr PhysicalDeviceProperties)
forall a b. (a -> b) -> a -> b
$ (Ptr PhysicalDeviceProperties
ppPhysicalDeviceProperties)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetMemoryProperties" ffiVmaGetMemoryProperties
  :: Allocator -> Ptr (Ptr PhysicalDeviceMemoryProperties) -> IO ()

-- | PhysicalDeviceMemoryProperties are fetched from physicalDevice by the
-- allocator. You can access it here, without fetching it again on your
-- own.
getMemoryProperties :: forall io
                     . (MonadIO io)
                    => -- No documentation found for Nested "vmaGetMemoryProperties" "allocator"
                       Allocator
                    -> io (Ptr PhysicalDeviceMemoryProperties)
getMemoryProperties :: Allocator -> io (Ptr PhysicalDeviceMemoryProperties)
getMemoryProperties Allocator
allocator = IO (Ptr PhysicalDeviceMemoryProperties)
-> io (Ptr PhysicalDeviceMemoryProperties)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Ptr PhysicalDeviceMemoryProperties)
 -> io (Ptr PhysicalDeviceMemoryProperties))
-> (ContT
      (Ptr PhysicalDeviceMemoryProperties)
      IO
      (Ptr PhysicalDeviceMemoryProperties)
    -> IO (Ptr PhysicalDeviceMemoryProperties))
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
-> io (Ptr PhysicalDeviceMemoryProperties)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Ptr PhysicalDeviceMemoryProperties)
  IO
  (Ptr PhysicalDeviceMemoryProperties)
-> IO (Ptr PhysicalDeviceMemoryProperties)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Ptr PhysicalDeviceMemoryProperties)
   IO
   (Ptr PhysicalDeviceMemoryProperties)
 -> io (Ptr PhysicalDeviceMemoryProperties))
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
-> io (Ptr PhysicalDeviceMemoryProperties)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (Ptr PhysicalDeviceMemoryProperties)
pPpPhysicalDeviceMemoryProperties <- ((Ptr (Ptr PhysicalDeviceMemoryProperties)
  -> IO (Ptr PhysicalDeviceMemoryProperties))
 -> IO (Ptr PhysicalDeviceMemoryProperties))
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr (Ptr PhysicalDeviceMemoryProperties))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (Ptr PhysicalDeviceMemoryProperties)
   -> IO (Ptr PhysicalDeviceMemoryProperties))
  -> IO (Ptr PhysicalDeviceMemoryProperties))
 -> ContT
      (Ptr PhysicalDeviceMemoryProperties)
      IO
      (Ptr (Ptr PhysicalDeviceMemoryProperties)))
-> ((Ptr (Ptr PhysicalDeviceMemoryProperties)
     -> IO (Ptr PhysicalDeviceMemoryProperties))
    -> IO (Ptr PhysicalDeviceMemoryProperties))
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr (Ptr PhysicalDeviceMemoryProperties))
forall a b. (a -> b) -> a -> b
$ IO (Ptr (Ptr PhysicalDeviceMemoryProperties))
-> (Ptr (Ptr PhysicalDeviceMemoryProperties) -> IO ())
-> (Ptr (Ptr PhysicalDeviceMemoryProperties)
    -> IO (Ptr PhysicalDeviceMemoryProperties))
-> IO (Ptr PhysicalDeviceMemoryProperties)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr (Ptr PhysicalDeviceMemoryProperties))
forall a. Int -> IO (Ptr a)
callocBytes @(Ptr PhysicalDeviceMemoryProperties) Int
8) Ptr (Ptr PhysicalDeviceMemoryProperties) -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT (Ptr PhysicalDeviceMemoryProperties) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Ptr PhysicalDeviceMemoryProperties) IO ())
-> IO () -> ContT (Ptr PhysicalDeviceMemoryProperties) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetMemoryProperties" ((Allocator -> Ptr (Ptr PhysicalDeviceMemoryProperties) -> IO ()
ffiVmaGetMemoryProperties) (Allocator
allocator) (Ptr (Ptr PhysicalDeviceMemoryProperties)
pPpPhysicalDeviceMemoryProperties))
  Ptr PhysicalDeviceMemoryProperties
ppPhysicalDeviceMemoryProperties <- IO (Ptr PhysicalDeviceMemoryProperties)
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO (Ptr PhysicalDeviceMemoryProperties)
 -> ContT
      (Ptr PhysicalDeviceMemoryProperties)
      IO
      (Ptr PhysicalDeviceMemoryProperties))
-> IO (Ptr PhysicalDeviceMemoryProperties)
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr PhysicalDeviceMemoryProperties)
-> IO (Ptr PhysicalDeviceMemoryProperties)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr PhysicalDeviceMemoryProperties) Ptr (Ptr PhysicalDeviceMemoryProperties)
pPpPhysicalDeviceMemoryProperties
  Ptr PhysicalDeviceMemoryProperties
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr PhysicalDeviceMemoryProperties
 -> ContT
      (Ptr PhysicalDeviceMemoryProperties)
      IO
      (Ptr PhysicalDeviceMemoryProperties))
-> Ptr PhysicalDeviceMemoryProperties
-> ContT
     (Ptr PhysicalDeviceMemoryProperties)
     IO
     (Ptr PhysicalDeviceMemoryProperties)
forall a b. (a -> b) -> a -> b
$ (Ptr PhysicalDeviceMemoryProperties
ppPhysicalDeviceMemoryProperties)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetMemoryTypeProperties" ffiVmaGetMemoryTypeProperties
  :: Allocator -> Word32 -> Ptr MemoryPropertyFlags -> IO ()

-- | Given Memory Type Index, returns Property Flags of this memory type.
--
-- This is just a convenience function. Same information can be obtained
-- using 'getMemoryProperties'.
getMemoryTypeProperties :: forall io
                         . (MonadIO io)
                        => -- No documentation found for Nested "vmaGetMemoryTypeProperties" "allocator"
                           Allocator
                        -> -- No documentation found for Nested "vmaGetMemoryTypeProperties" "memoryTypeIndex"
                           ("memoryTypeIndex" ::: Word32)
                        -> io (MemoryPropertyFlags)
getMemoryTypeProperties :: Allocator
-> ("memoryTypeIndex" ::: Word32) -> io MemoryPropertyFlags
getMemoryTypeProperties Allocator
allocator "memoryTypeIndex" ::: Word32
memoryTypeIndex = IO MemoryPropertyFlags -> io MemoryPropertyFlags
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO MemoryPropertyFlags -> io MemoryPropertyFlags)
-> (ContT MemoryPropertyFlags IO MemoryPropertyFlags
    -> IO MemoryPropertyFlags)
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
-> io MemoryPropertyFlags
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT MemoryPropertyFlags IO MemoryPropertyFlags
-> IO MemoryPropertyFlags
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT MemoryPropertyFlags IO MemoryPropertyFlags
 -> io MemoryPropertyFlags)
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
-> io MemoryPropertyFlags
forall a b. (a -> b) -> a -> b
$ do
  Ptr MemoryPropertyFlags
pPFlags <- ((Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags)
 -> IO MemoryPropertyFlags)
-> ContT MemoryPropertyFlags IO (Ptr MemoryPropertyFlags)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags)
  -> IO MemoryPropertyFlags)
 -> ContT MemoryPropertyFlags IO (Ptr MemoryPropertyFlags))
-> ((Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags)
    -> IO MemoryPropertyFlags)
-> ContT MemoryPropertyFlags IO (Ptr MemoryPropertyFlags)
forall a b. (a -> b) -> a -> b
$ IO (Ptr MemoryPropertyFlags)
-> (Ptr MemoryPropertyFlags -> IO ())
-> (Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags)
-> IO MemoryPropertyFlags
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr MemoryPropertyFlags)
forall a. Int -> IO (Ptr a)
callocBytes @MemoryPropertyFlags Int
4) Ptr MemoryPropertyFlags -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT MemoryPropertyFlags IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT MemoryPropertyFlags IO ())
-> IO () -> ContT MemoryPropertyFlags IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetMemoryTypeProperties" ((Allocator
-> ("memoryTypeIndex" ::: Word32)
-> Ptr MemoryPropertyFlags
-> IO ()
ffiVmaGetMemoryTypeProperties) (Allocator
allocator) ("memoryTypeIndex" ::: Word32
memoryTypeIndex) (Ptr MemoryPropertyFlags
pPFlags))
  MemoryPropertyFlags
pFlags <- IO MemoryPropertyFlags
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO MemoryPropertyFlags
 -> ContT MemoryPropertyFlags IO MemoryPropertyFlags)
-> IO MemoryPropertyFlags
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
forall a b. (a -> b) -> a -> b
$ Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags
forall a. Storable a => Ptr a -> IO a
peek @MemoryPropertyFlags Ptr MemoryPropertyFlags
pPFlags
  MemoryPropertyFlags
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
forall (f :: * -> *) a. Applicative f => a -> f a
pure (MemoryPropertyFlags
 -> ContT MemoryPropertyFlags IO MemoryPropertyFlags)
-> MemoryPropertyFlags
-> ContT MemoryPropertyFlags IO MemoryPropertyFlags
forall a b. (a -> b) -> a -> b
$ (MemoryPropertyFlags
pFlags)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaSetCurrentFrameIndex" ffiVmaSetCurrentFrameIndex
  :: Allocator -> Word32 -> IO ()

-- | Sets index of the current frame.
--
-- This function must be used if you make allocations with
-- 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' and
-- 'ALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT' flags to inform the
-- allocator when a new frame begins. Allocations queried using
-- 'getAllocationInfo' cannot become lost in the current frame.
setCurrentFrameIndex :: forall io
                      . (MonadIO io)
                     => -- No documentation found for Nested "vmaSetCurrentFrameIndex" "allocator"
                        Allocator
                     -> -- No documentation found for Nested "vmaSetCurrentFrameIndex" "frameIndex"
                        ("frameIndex" ::: Word32)
                     -> io ()
setCurrentFrameIndex :: Allocator -> ("memoryTypeIndex" ::: Word32) -> io ()
setCurrentFrameIndex Allocator
allocator "memoryTypeIndex" ::: Word32
frameIndex = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaSetCurrentFrameIndex" ((Allocator -> ("memoryTypeIndex" ::: Word32) -> IO ()
ffiVmaSetCurrentFrameIndex) (Allocator
allocator) ("memoryTypeIndex" ::: Word32
frameIndex))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCalculateStats" ffiVmaCalculateStats
  :: Allocator -> Ptr Stats -> IO ()

-- | Retrieves statistics from current state of the Allocator.
--
-- This function is called \"calculate\" not \"get\" because it has to
-- traverse all internal data structures, so it may be quite slow. For
-- faster but more brief statistics suitable to be called every frame or
-- every allocation, use 'getBudget'.
--
-- Note that when using allocator from multiple threads, returned
-- information may immediately become outdated.
calculateStats :: forall io
                . (MonadIO io)
               => -- No documentation found for Nested "vmaCalculateStats" "allocator"
                  Allocator
               -> io (Stats)
calculateStats :: Allocator -> io Stats
calculateStats Allocator
allocator = IO Stats -> io Stats
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Stats -> io Stats)
-> (ContT Stats IO Stats -> IO Stats)
-> ContT Stats IO Stats
-> io Stats
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT Stats IO Stats -> IO Stats
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT Stats IO Stats -> io Stats)
-> ContT Stats IO Stats -> io Stats
forall a b. (a -> b) -> a -> b
$ do
  Ptr Stats
pPStats <- ((Ptr Stats -> IO Stats) -> IO Stats) -> ContT Stats IO (Ptr Stats)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b. ToCStruct Stats => (Ptr Stats -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @Stats)
  IO () -> ContT Stats IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT Stats IO ()) -> IO () -> ContT Stats IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCalculateStats" ((Allocator -> Ptr Stats -> IO ()
ffiVmaCalculateStats) (Allocator
allocator) (Ptr Stats
pPStats))
  Stats
pStats <- IO Stats -> ContT Stats IO Stats
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Stats -> ContT Stats IO Stats)
-> IO Stats -> ContT Stats IO Stats
forall a b. (a -> b) -> a -> b
$ Ptr Stats -> IO Stats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @Stats Ptr Stats
pPStats
  Stats -> ContT Stats IO Stats
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Stats -> ContT Stats IO Stats) -> Stats -> ContT Stats IO Stats
forall a b. (a -> b) -> a -> b
$ (Stats
pStats)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetBudget" ffiVmaGetBudget
  :: Allocator -> Ptr Budget -> IO ()

-- | Retrieves information about current memory budget for all memory heaps.
--
-- __Parameters__
--
-- +-----------+-----------+-----------------------------------------------+
-- | out       | pBudget   | Must point to array with number of elements   |
-- |           |           | at least equal to number of memory heaps in   |
-- |           |           | physical device used.                         |
-- +-----------+-----------+-----------------------------------------------+
--
-- This function is called \"get\" not \"calculate\" because it is very
-- fast, suitable to be called every frame or every allocation. For more
-- detailed statistics use 'calculateStats'.
--
-- Note that when using allocator from multiple threads, returned
-- information may immediately become outdated.
getBudget :: forall io
           . (MonadIO io)
          => -- No documentation found for Nested "vmaGetBudget" "allocator"
             Allocator
          -> io (("budget" ::: Vector Budget))
getBudget :: Allocator -> io ("budget" ::: Vector Budget)
getBudget Allocator
allocator = IO ("budget" ::: Vector Budget) -> io ("budget" ::: Vector Budget)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("budget" ::: Vector Budget)
 -> io ("budget" ::: Vector Budget))
-> (ContT
      ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
    -> IO ("budget" ::: Vector Budget))
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
-> io ("budget" ::: Vector Budget)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
-> IO ("budget" ::: Vector Budget)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
 -> io ("budget" ::: Vector Budget))
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
-> io ("budget" ::: Vector Budget)
forall a b. (a -> b) -> a -> b
$ do
  Ptr Budget
pPBudget <- ((Ptr Budget -> IO ("budget" ::: Vector Budget))
 -> IO ("budget" ::: Vector Budget))
-> ContT ("budget" ::: Vector Budget) IO (Ptr Budget)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Budget -> IO ("budget" ::: Vector Budget))
  -> IO ("budget" ::: Vector Budget))
 -> ContT ("budget" ::: Vector Budget) IO (Ptr Budget))
-> ((Ptr Budget -> IO ("budget" ::: Vector Budget))
    -> IO ("budget" ::: Vector Budget))
-> ContT ("budget" ::: Vector Budget) IO (Ptr Budget)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Budget)
-> (Ptr Budget -> IO ())
-> (Ptr Budget -> IO ("budget" ::: Vector Budget))
-> IO ("budget" ::: Vector Budget)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Budget)
forall a. Int -> IO (Ptr a)
callocBytes @Budget ((Int
forall a. Integral a => a
MAX_MEMORY_HEAPS) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
32)) Ptr Budget -> IO ()
forall a. Ptr a -> IO ()
free
  [()]
_ <- (Int -> ContT ("budget" ::: Vector Budget) IO ())
-> [Int] -> ContT ("budget" ::: Vector Budget) IO [()]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse (\Int
i -> ((() -> IO ("budget" ::: Vector Budget))
 -> IO ("budget" ::: Vector Budget))
-> ContT ("budget" ::: Vector Budget) IO ()
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((() -> IO ("budget" ::: Vector Budget))
  -> IO ("budget" ::: Vector Budget))
 -> ContT ("budget" ::: Vector Budget) IO ())
-> ((() -> IO ("budget" ::: Vector Budget))
    -> IO ("budget" ::: Vector Budget))
-> ContT ("budget" ::: Vector Budget) IO ()
forall a b. (a -> b) -> a -> b
$ Ptr Budget
-> IO ("budget" ::: Vector Budget)
-> IO ("budget" ::: Vector Budget)
forall a b. ToCStruct a => Ptr a -> IO b -> IO b
pokeZeroCStruct (Ptr Budget
pPBudget Ptr Budget -> Int -> Ptr Budget
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
i Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
32) :: Ptr Budget) (IO ("budget" ::: Vector Budget)
 -> IO ("budget" ::: Vector Budget))
-> ((() -> IO ("budget" ::: Vector Budget))
    -> IO ("budget" ::: Vector Budget))
-> (() -> IO ("budget" ::: Vector Budget))
-> IO ("budget" ::: Vector Budget)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ((() -> IO ("budget" ::: Vector Budget))
-> () -> IO ("budget" ::: Vector Budget)
forall a b. (a -> b) -> a -> b
$ ())) [Int
0..(Int
forall a. Integral a => a
MAX_MEMORY_HEAPS) Int -> Int -> Int
forall a. Num a => a -> a -> a
- Int
1]
  IO () -> ContT ("budget" ::: Vector Budget) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("budget" ::: Vector Budget) IO ())
-> IO () -> ContT ("budget" ::: Vector Budget) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetBudget" ((Allocator -> Ptr Budget -> IO ()
ffiVmaGetBudget) (Allocator
allocator) ((Ptr Budget
pPBudget)))
  "budget" ::: Vector Budget
pBudget <- IO ("budget" ::: Vector Budget)
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("budget" ::: Vector Budget)
 -> ContT
      ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget))
-> IO ("budget" ::: Vector Budget)
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
forall a b. (a -> b) -> a -> b
$ Int -> (Int -> IO Budget) -> IO ("budget" ::: Vector Budget)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (Int
forall a. Integral a => a
MAX_MEMORY_HEAPS) (\Int
i -> Ptr Budget -> IO Budget
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @Budget (((Ptr Budget
pPBudget) Ptr Budget -> Int -> Ptr Budget
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
32 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Budget)))
  ("budget" ::: Vector Budget)
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("budget" ::: Vector Budget)
 -> ContT
      ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget))
-> ("budget" ::: Vector Budget)
-> ContT
     ("budget" ::: Vector Budget) IO ("budget" ::: Vector Budget)
forall a b. (a -> b) -> a -> b
$ ("budget" ::: Vector Budget
pBudget)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBuildStatsString" ffiVmaBuildStatsString
  :: Allocator -> Ptr (Ptr CChar) -> Bool32 -> IO ()

-- | Builds and returns statistics as string in JSON format.
--
-- __Parameters__
--
-- +-----------+---------------+-----------------------------------------------+
-- | out       | ppStatsString | Must be freed using 'freeStatsString'         |
-- |           |               | function.                                     |
-- +-----------+---------------+-----------------------------------------------+
buildStatsString :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaBuildStatsString" "allocator"
                    Allocator
                 -> -- No documentation found for Nested "vmaBuildStatsString" "detailedMap"
                    ("detailedMap" ::: Bool)
                 -> io (("statsString" ::: Ptr CChar))
buildStatsString :: Allocator -> Bool -> io ("statsString" ::: Ptr CChar)
buildStatsString Allocator
allocator Bool
detailedMap = IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("statsString" ::: Ptr CChar)
 -> io ("statsString" ::: Ptr CChar))
-> (ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
    -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> IO ("statsString" ::: Ptr CChar)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
 -> io ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ do
  Ptr ("statsString" ::: Ptr CChar)
pPpStatsString <- ((Ptr ("statsString" ::: Ptr CChar)
  -> IO ("statsString" ::: Ptr CChar))
 -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar)
     IO
     (Ptr ("statsString" ::: Ptr CChar))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("statsString" ::: Ptr CChar)
   -> IO ("statsString" ::: Ptr CChar))
  -> IO ("statsString" ::: Ptr CChar))
 -> ContT
      ("statsString" ::: Ptr CChar)
      IO
      (Ptr ("statsString" ::: Ptr CChar)))
-> ((Ptr ("statsString" ::: Ptr CChar)
     -> IO ("statsString" ::: Ptr CChar))
    -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar)
     IO
     (Ptr ("statsString" ::: Ptr CChar))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("statsString" ::: Ptr CChar))
-> (Ptr ("statsString" ::: Ptr CChar) -> IO ())
-> (Ptr ("statsString" ::: Ptr CChar)
    -> IO ("statsString" ::: Ptr CChar))
-> IO ("statsString" ::: Ptr CChar)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("statsString" ::: Ptr CChar))
forall a. Int -> IO (Ptr a)
callocBytes @(Ptr CChar) Int
8) Ptr ("statsString" ::: Ptr CChar) -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT ("statsString" ::: Ptr CChar) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("statsString" ::: Ptr CChar) IO ())
-> IO () -> ContT ("statsString" ::: Ptr CChar) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBuildStatsString" ((Allocator -> Ptr ("statsString" ::: Ptr CChar) -> Bool32 -> IO ()
ffiVmaBuildStatsString) (Allocator
allocator) (Ptr ("statsString" ::: Ptr CChar)
pPpStatsString) (Bool -> Bool32
boolToBool32 (Bool
detailedMap)))
  "statsString" ::: Ptr CChar
ppStatsString <- IO ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("statsString" ::: Ptr CChar)
 -> ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar))
-> IO ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ Ptr ("statsString" ::: Ptr CChar)
-> IO ("statsString" ::: Ptr CChar)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr CChar) Ptr ("statsString" ::: Ptr CChar)
pPpStatsString
  ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("statsString" ::: Ptr CChar)
 -> ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar))
-> ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ ("statsString" ::: Ptr CChar
ppStatsString)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFreeStatsString" ffiVmaFreeStatsString
  :: Allocator -> Ptr CChar -> IO ()


freeStatsString :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaFreeStatsString" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaFreeStatsString" "pStatsString"
                   ("statsString" ::: Ptr CChar)
                -> io ()
freeStatsString :: Allocator -> ("statsString" ::: Ptr CChar) -> io ()
freeStatsString Allocator
allocator "statsString" ::: Ptr CChar
statsString = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFreeStatsString" ((Allocator -> ("statsString" ::: Ptr CChar) -> IO ()
ffiVmaFreeStatsString) (Allocator
allocator) ("statsString" ::: Ptr CChar
statsString))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFindMemoryTypeIndex" ffiVmaFindMemoryTypeIndex
  :: Allocator -> Word32 -> Ptr AllocationCreateInfo -> Ptr Word32 -> IO Result

-- | Helps to find memoryTypeIndex, given memoryTypeBits and
-- 'AllocationCreateInfo'.
--
-- This algorithm tries to find a memory type that:
--
-- -   Is allowed by memoryTypeBits.
--
-- -   Contains all the flags from pAllocationCreateInfo->requiredFlags.
--
-- -   Matches intended usage.
--
-- -   Has as many flags from pAllocationCreateInfo->preferredFlags as
--     possible.
--
-- __Returns__
--
-- Returns VK_ERROR_FEATURE_NOT_PRESENT if not found. Receiving such result
-- from this function or any other allocating function probably means that
-- your device doesn\'t support any memory type with requested features for
-- the specific type of resource you want to use it for. Please check
-- parameters of your resource, like image layout (OPTIMAL versus LINEAR)
-- or mip level count.
findMemoryTypeIndex :: forall io
                     . (MonadIO io)
                    => -- No documentation found for Nested "vmaFindMemoryTypeIndex" "allocator"
                       Allocator
                    -> -- No documentation found for Nested "vmaFindMemoryTypeIndex" "memoryTypeBits"
                       ("memoryTypeBits" ::: Word32)
                    -> -- No documentation found for Nested "vmaFindMemoryTypeIndex" "pAllocationCreateInfo"
                       AllocationCreateInfo
                    -> io (("memoryTypeIndex" ::: Word32))
findMemoryTypeIndex :: Allocator
-> ("memoryTypeIndex" ::: Word32)
-> AllocationCreateInfo
-> io ("memoryTypeIndex" ::: Word32)
findMemoryTypeIndex Allocator
allocator "memoryTypeIndex" ::: Word32
memoryTypeBits AllocationCreateInfo
allocationCreateInfo = IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> (ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex <- ((Ptr ("memoryTypeIndex" ::: Word32)
  -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("memoryTypeIndex" ::: Word32)
   -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32)
      IO
      (Ptr ("memoryTypeIndex" ::: Word32)))
-> ((Ptr ("memoryTypeIndex" ::: Word32)
     -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("memoryTypeIndex" ::: Word32))
-> (Ptr ("memoryTypeIndex" ::: Word32) -> IO ())
-> (Ptr ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("memoryTypeIndex" ::: Word32))
forall a. Int -> IO (Ptr a)
callocBytes @Word32 Int
4) Ptr ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result)
-> IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFindMemoryTypeIndex" ((Allocator
-> ("memoryTypeIndex" ::: Word32)
-> Ptr AllocationCreateInfo
-> Ptr ("memoryTypeIndex" ::: Word32)
-> IO Result
ffiVmaFindMemoryTypeIndex) (Allocator
allocator) ("memoryTypeIndex" ::: Word32
memoryTypeBits) Ptr AllocationCreateInfo
pAllocationCreateInfo (Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex))
  IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ())
-> IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "memoryTypeIndex" ::: Word32
pMemoryTypeIndex <- IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex
  ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32
pMemoryTypeIndex)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFindMemoryTypeIndexForBufferInfo" ffiVmaFindMemoryTypeIndexForBufferInfo
  :: Allocator -> Ptr (SomeStruct BufferCreateInfo) -> Ptr AllocationCreateInfo -> Ptr Word32 -> IO Result

-- | Helps to find memoryTypeIndex, given VkBufferCreateInfo and
-- 'AllocationCreateInfo'.
--
-- It can be useful e.g. to determine value to be used as
-- /VmaPoolCreateInfo::memoryTypeIndex/. It internally creates a temporary,
-- dummy buffer that never has memory bound. It is just a convenience
-- function, equivalent to calling:
--
-- -   @vkCreateBuffer@
--
-- -   @vkGetBufferMemoryRequirements@
--
-- -   'findMemoryTypeIndex'
--
-- -   @vkDestroyBuffer@
findMemoryTypeIndexForBufferInfo :: forall a io
                                  . (Extendss BufferCreateInfo a, PokeChain a, MonadIO io)
                                 => -- No documentation found for Nested "vmaFindMemoryTypeIndexForBufferInfo" "allocator"
                                    Allocator
                                 -> -- No documentation found for Nested "vmaFindMemoryTypeIndexForBufferInfo" "pBufferCreateInfo"
                                    (BufferCreateInfo a)
                                 -> -- No documentation found for Nested "vmaFindMemoryTypeIndexForBufferInfo" "pAllocationCreateInfo"
                                    AllocationCreateInfo
                                 -> io (("memoryTypeIndex" ::: Word32))
findMemoryTypeIndexForBufferInfo :: Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> io ("memoryTypeIndex" ::: Word32)
findMemoryTypeIndexForBufferInfo Allocator
allocator BufferCreateInfo a
bufferCreateInfo AllocationCreateInfo
allocationCreateInfo = IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> (ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (BufferCreateInfo a)
pBufferCreateInfo <- ((Ptr (BufferCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr (BufferCreateInfo a))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (BufferCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO (Ptr (BufferCreateInfo a)))
-> ((Ptr (BufferCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr (BufferCreateInfo a))
forall a b. (a -> b) -> a -> b
$ BufferCreateInfo a
-> (Ptr (BufferCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (BufferCreateInfo a
bufferCreateInfo)
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex <- ((Ptr ("memoryTypeIndex" ::: Word32)
  -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("memoryTypeIndex" ::: Word32)
   -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32)
      IO
      (Ptr ("memoryTypeIndex" ::: Word32)))
-> ((Ptr ("memoryTypeIndex" ::: Word32)
     -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("memoryTypeIndex" ::: Word32))
-> (Ptr ("memoryTypeIndex" ::: Word32) -> IO ())
-> (Ptr ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("memoryTypeIndex" ::: Word32))
forall a. Int -> IO (Ptr a)
callocBytes @Word32 Int
4) Ptr ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result)
-> IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFindMemoryTypeIndexForBufferInfo" ((Allocator
-> Ptr (SomeStruct BufferCreateInfo)
-> Ptr AllocationCreateInfo
-> Ptr ("memoryTypeIndex" ::: Word32)
-> IO Result
ffiVmaFindMemoryTypeIndexForBufferInfo) (Allocator
allocator) (Ptr (BufferCreateInfo a) -> Ptr (SomeStruct BufferCreateInfo)
forall (a :: [*] -> *) (es :: [*]).
Ptr (a es) -> Ptr (SomeStruct a)
forgetExtensions Ptr (BufferCreateInfo a)
pBufferCreateInfo) Ptr AllocationCreateInfo
pAllocationCreateInfo (Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex))
  IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ())
-> IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "memoryTypeIndex" ::: Word32
pMemoryTypeIndex <- IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex
  ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32
pMemoryTypeIndex)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFindMemoryTypeIndexForImageInfo" ffiVmaFindMemoryTypeIndexForImageInfo
  :: Allocator -> Ptr (SomeStruct ImageCreateInfo) -> Ptr AllocationCreateInfo -> Ptr Word32 -> IO Result

-- | Helps to find memoryTypeIndex, given VkImageCreateInfo and
-- 'AllocationCreateInfo'.
--
-- It can be useful e.g. to determine value to be used as
-- /VmaPoolCreateInfo::memoryTypeIndex/. It internally creates a temporary,
-- dummy image that never has memory bound. It is just a convenience
-- function, equivalent to calling:
--
-- -   @vkCreateImage@
--
-- -   @vkGetImageMemoryRequirements@
--
-- -   'findMemoryTypeIndex'
--
-- -   @vkDestroyImage@
findMemoryTypeIndexForImageInfo :: forall a io
                                 . (Extendss ImageCreateInfo a, PokeChain a, MonadIO io)
                                => -- No documentation found for Nested "vmaFindMemoryTypeIndexForImageInfo" "allocator"
                                   Allocator
                                -> -- No documentation found for Nested "vmaFindMemoryTypeIndexForImageInfo" "pImageCreateInfo"
                                   (ImageCreateInfo a)
                                -> -- No documentation found for Nested "vmaFindMemoryTypeIndexForImageInfo" "pAllocationCreateInfo"
                                   AllocationCreateInfo
                                -> io (("memoryTypeIndex" ::: Word32))
findMemoryTypeIndexForImageInfo :: Allocator
-> ImageCreateInfo a
-> AllocationCreateInfo
-> io ("memoryTypeIndex" ::: Word32)
findMemoryTypeIndexForImageInfo Allocator
allocator ImageCreateInfo a
imageCreateInfo AllocationCreateInfo
allocationCreateInfo = IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> (ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
 -> io ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
-> io ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (ImageCreateInfo a)
pImageCreateInfo <- ((Ptr (ImageCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr (ImageCreateInfo a))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (ImageCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO (Ptr (ImageCreateInfo a)))
-> ((Ptr (ImageCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr (ImageCreateInfo a))
forall a b. (a -> b) -> a -> b
$ ImageCreateInfo a
-> (Ptr (ImageCreateInfo a) -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (ImageCreateInfo a
imageCreateInfo)
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex <- ((Ptr ("memoryTypeIndex" ::: Word32)
  -> IO ("memoryTypeIndex" ::: Word32))
 -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("memoryTypeIndex" ::: Word32)
   -> IO ("memoryTypeIndex" ::: Word32))
  -> IO ("memoryTypeIndex" ::: Word32))
 -> ContT
      ("memoryTypeIndex" ::: Word32)
      IO
      (Ptr ("memoryTypeIndex" ::: Word32)))
-> ((Ptr ("memoryTypeIndex" ::: Word32)
     -> IO ("memoryTypeIndex" ::: Word32))
    -> IO ("memoryTypeIndex" ::: Word32))
-> ContT
     ("memoryTypeIndex" ::: Word32)
     IO
     (Ptr ("memoryTypeIndex" ::: Word32))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("memoryTypeIndex" ::: Word32))
-> (Ptr ("memoryTypeIndex" ::: Word32) -> IO ())
-> (Ptr ("memoryTypeIndex" ::: Word32)
    -> IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("memoryTypeIndex" ::: Word32))
forall a. Int -> IO (Ptr a)
callocBytes @Word32 Int
4) Ptr ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result)
-> IO Result -> ContT ("memoryTypeIndex" ::: Word32) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFindMemoryTypeIndexForImageInfo" ((Allocator
-> Ptr (SomeStruct ImageCreateInfo)
-> Ptr AllocationCreateInfo
-> Ptr ("memoryTypeIndex" ::: Word32)
-> IO Result
ffiVmaFindMemoryTypeIndexForImageInfo) (Allocator
allocator) (Ptr (ImageCreateInfo a) -> Ptr (SomeStruct ImageCreateInfo)
forall (a :: [*] -> *) (es :: [*]).
Ptr (a es) -> Ptr (SomeStruct a)
forgetExtensions Ptr (ImageCreateInfo a)
pImageCreateInfo) Ptr AllocationCreateInfo
pAllocationCreateInfo (Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex))
  IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ())
-> IO () -> ContT ("memoryTypeIndex" ::: Word32) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "memoryTypeIndex" ::: Word32
pMemoryTypeIndex <- IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> IO ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 Ptr ("memoryTypeIndex" ::: Word32)
pPMemoryTypeIndex
  ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("memoryTypeIndex" ::: Word32)
 -> ContT
      ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32))
-> ("memoryTypeIndex" ::: Word32)
-> ContT
     ("memoryTypeIndex" ::: Word32) IO ("memoryTypeIndex" ::: Word32)
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32
pMemoryTypeIndex)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreatePool" ffiVmaCreatePool
  :: Allocator -> Ptr PoolCreateInfo -> Ptr Pool -> IO Result

-- | Allocates Vulkan device memory and creates 'Pool' object.
--
-- __Parameters__
--
-- +-----------+-------------+-----------------------------------------------+
-- |           | allocator   | Allocator object.                             |
-- +-----------+-------------+-----------------------------------------------+
-- |           | pCreateInfo | Parameters of pool to create.                 |
-- +-----------+-------------+-----------------------------------------------+
-- | out       | pPool       | Handle to created pool.                       |
-- +-----------+-------------+-----------------------------------------------+
createPool :: forall io
            . (MonadIO io)
           => -- No documentation found for Nested "vmaCreatePool" "allocator"
              Allocator
           -> -- No documentation found for Nested "vmaCreatePool" "pCreateInfo"
              PoolCreateInfo
           -> io (Pool)
createPool :: Allocator -> PoolCreateInfo -> io Pool
createPool Allocator
allocator PoolCreateInfo
createInfo = IO Pool -> io Pool
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Pool -> io Pool)
-> (ContT Pool IO Pool -> IO Pool) -> ContT Pool IO Pool -> io Pool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT Pool IO Pool -> IO Pool
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT Pool IO Pool -> io Pool) -> ContT Pool IO Pool -> io Pool
forall a b. (a -> b) -> a -> b
$ do
  Ptr PoolCreateInfo
pCreateInfo <- ((Ptr PoolCreateInfo -> IO Pool) -> IO Pool)
-> ContT Pool IO (Ptr PoolCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr PoolCreateInfo -> IO Pool) -> IO Pool)
 -> ContT Pool IO (Ptr PoolCreateInfo))
-> ((Ptr PoolCreateInfo -> IO Pool) -> IO Pool)
-> ContT Pool IO (Ptr PoolCreateInfo)
forall a b. (a -> b) -> a -> b
$ PoolCreateInfo -> (Ptr PoolCreateInfo -> IO Pool) -> IO Pool
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (PoolCreateInfo
createInfo)
  Ptr Pool
pPPool <- ((Ptr Pool -> IO Pool) -> IO Pool) -> ContT Pool IO (Ptr Pool)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Pool -> IO Pool) -> IO Pool) -> ContT Pool IO (Ptr Pool))
-> ((Ptr Pool -> IO Pool) -> IO Pool) -> ContT Pool IO (Ptr Pool)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Pool)
-> (Ptr Pool -> IO ()) -> (Ptr Pool -> IO Pool) -> IO Pool
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Pool)
forall a. Int -> IO (Ptr a)
callocBytes @Pool Int
8) Ptr Pool -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT Pool IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT Pool IO Result)
-> IO Result -> ContT Pool IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreatePool" ((Allocator -> Ptr PoolCreateInfo -> Ptr Pool -> IO Result
ffiVmaCreatePool) (Allocator
allocator) Ptr PoolCreateInfo
pCreateInfo (Ptr Pool
pPPool))
  IO () -> ContT Pool IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT Pool IO ()) -> IO () -> ContT Pool IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Pool
pPool <- IO Pool -> ContT Pool IO Pool
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Pool -> ContT Pool IO Pool) -> IO Pool -> ContT Pool IO Pool
forall a b. (a -> b) -> a -> b
$ Ptr Pool -> IO Pool
forall a. Storable a => Ptr a -> IO a
peek @Pool Ptr Pool
pPPool
  Pool -> ContT Pool IO Pool
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Pool -> ContT Pool IO Pool) -> Pool -> ContT Pool IO Pool
forall a b. (a -> b) -> a -> b
$ (Pool
pPool)

-- | A convenience wrapper to make a compatible pair of calls to 'createPool'
-- and 'destroyPool'
--
-- To ensure that 'destroyPool' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withPool :: forall io r . MonadIO io => Allocator -> PoolCreateInfo -> (io Pool -> (Pool -> io ()) -> r) -> r
withPool :: Allocator
-> PoolCreateInfo -> (io Pool -> (Pool -> io ()) -> r) -> r
withPool Allocator
allocator PoolCreateInfo
pCreateInfo io Pool -> (Pool -> io ()) -> r
b =
  io Pool -> (Pool -> io ()) -> r
b (Allocator -> PoolCreateInfo -> io Pool
forall (io :: * -> *).
MonadIO io =>
Allocator -> PoolCreateInfo -> io Pool
createPool Allocator
allocator PoolCreateInfo
pCreateInfo)
    (\(Pool
o0) -> Allocator -> Pool -> io ()
forall (io :: * -> *). MonadIO io => Allocator -> Pool -> io ()
destroyPool Allocator
allocator Pool
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDestroyPool" ffiVmaDestroyPool
  :: Allocator -> Pool -> IO ()

-- | Destroys 'Pool' object and frees Vulkan device memory.
destroyPool :: forall io
             . (MonadIO io)
            => -- No documentation found for Nested "vmaDestroyPool" "allocator"
               Allocator
            -> -- No documentation found for Nested "vmaDestroyPool" "pool"
               Pool
            -> io ()
destroyPool :: Allocator -> Pool -> io ()
destroyPool Allocator
allocator Pool
pool = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDestroyPool" ((Allocator -> Pool -> IO ()
ffiVmaDestroyPool) (Allocator
allocator) (Pool
pool))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetPoolStats" ffiVmaGetPoolStats
  :: Allocator -> Pool -> Ptr PoolStats -> IO ()

-- | Retrieves statistics of existing 'Pool' object.
--
-- __Parameters__
--
-- +-----------+------------+-----------------------------------------------+
-- |           | allocator  | Allocator object.                             |
-- +-----------+------------+-----------------------------------------------+
-- |           | pool       | Pool object.                                  |
-- +-----------+------------+-----------------------------------------------+
-- | out       | pPoolStats | Statistics of specified pool.                 |
-- +-----------+------------+-----------------------------------------------+
getPoolStats :: forall io
              . (MonadIO io)
             => -- No documentation found for Nested "vmaGetPoolStats" "allocator"
                Allocator
             -> -- No documentation found for Nested "vmaGetPoolStats" "pool"
                Pool
             -> io (PoolStats)
getPoolStats :: Allocator -> Pool -> io PoolStats
getPoolStats Allocator
allocator Pool
pool = IO PoolStats -> io PoolStats
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO PoolStats -> io PoolStats)
-> (ContT PoolStats IO PoolStats -> IO PoolStats)
-> ContT PoolStats IO PoolStats
-> io PoolStats
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT PoolStats IO PoolStats -> IO PoolStats
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT PoolStats IO PoolStats -> io PoolStats)
-> ContT PoolStats IO PoolStats -> io PoolStats
forall a b. (a -> b) -> a -> b
$ do
  Ptr PoolStats
pPPoolStats <- ((Ptr PoolStats -> IO PoolStats) -> IO PoolStats)
-> ContT PoolStats IO (Ptr PoolStats)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b. ToCStruct PoolStats => (Ptr PoolStats -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @PoolStats)
  IO () -> ContT PoolStats IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT PoolStats IO ()) -> IO () -> ContT PoolStats IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetPoolStats" ((Allocator -> Pool -> Ptr PoolStats -> IO ()
ffiVmaGetPoolStats) (Allocator
allocator) (Pool
pool) (Ptr PoolStats
pPPoolStats))
  PoolStats
pPoolStats <- IO PoolStats -> ContT PoolStats IO PoolStats
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO PoolStats -> ContT PoolStats IO PoolStats)
-> IO PoolStats -> ContT PoolStats IO PoolStats
forall a b. (a -> b) -> a -> b
$ Ptr PoolStats -> IO PoolStats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @PoolStats Ptr PoolStats
pPPoolStats
  PoolStats -> ContT PoolStats IO PoolStats
forall (f :: * -> *) a. Applicative f => a -> f a
pure (PoolStats -> ContT PoolStats IO PoolStats)
-> PoolStats -> ContT PoolStats IO PoolStats
forall a b. (a -> b) -> a -> b
$ (PoolStats
pPoolStats)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaMakePoolAllocationsLost" ffiVmaMakePoolAllocationsLost
  :: Allocator -> Pool -> Ptr CSize -> IO ()

-- | Marks all allocations in given pool as lost if they are not used in
-- current frame or /VmaPoolCreateInfo::frameInUseCount/ back from now.
--
-- __Parameters__
--
-- +-----------+----------------------+-----------------------------------------------+
-- |           | allocator            | Allocator object.                             |
-- +-----------+----------------------+-----------------------------------------------+
-- |           | pool                 | Pool.                                         |
-- +-----------+----------------------+-----------------------------------------------+
-- | out       | pLostAllocationCount | Number of allocations marked as lost.         |
-- |           |                      | Optional - pass null if you don\'t need this  |
-- |           |                      | information.                                  |
-- +-----------+----------------------+-----------------------------------------------+
makePoolAllocationsLost :: forall io
                         . (MonadIO io)
                        => -- No documentation found for Nested "vmaMakePoolAllocationsLost" "allocator"
                           Allocator
                        -> -- No documentation found for Nested "vmaMakePoolAllocationsLost" "pool"
                           Pool
                        -> io (("lostAllocationCount" ::: Word64))
makePoolAllocationsLost :: Allocator -> Pool -> io ("lostAllocationCount" ::: Word64)
makePoolAllocationsLost Allocator
allocator Pool
pool = IO ("lostAllocationCount" ::: Word64)
-> io ("lostAllocationCount" ::: Word64)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("lostAllocationCount" ::: Word64)
 -> io ("lostAllocationCount" ::: Word64))
-> (ContT
      ("lostAllocationCount" ::: Word64)
      IO
      ("lostAllocationCount" ::: Word64)
    -> IO ("lostAllocationCount" ::: Word64))
-> ContT
     ("lostAllocationCount" ::: Word64)
     IO
     ("lostAllocationCount" ::: Word64)
-> io ("lostAllocationCount" ::: Word64)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("lostAllocationCount" ::: Word64)
  IO
  ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("lostAllocationCount" ::: Word64)
   IO
   ("lostAllocationCount" ::: Word64)
 -> io ("lostAllocationCount" ::: Word64))
-> ContT
     ("lostAllocationCount" ::: Word64)
     IO
     ("lostAllocationCount" ::: Word64)
-> io ("lostAllocationCount" ::: Word64)
forall a b. (a -> b) -> a -> b
$ do
  Ptr CSize
pPLostAllocationCount <- ((Ptr CSize -> IO ("lostAllocationCount" ::: Word64))
 -> IO ("lostAllocationCount" ::: Word64))
-> ContT ("lostAllocationCount" ::: Word64) IO (Ptr CSize)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr CSize -> IO ("lostAllocationCount" ::: Word64))
  -> IO ("lostAllocationCount" ::: Word64))
 -> ContT ("lostAllocationCount" ::: Word64) IO (Ptr CSize))
-> ((Ptr CSize -> IO ("lostAllocationCount" ::: Word64))
    -> IO ("lostAllocationCount" ::: Word64))
-> ContT ("lostAllocationCount" ::: Word64) IO (Ptr CSize)
forall a b. (a -> b) -> a -> b
$ IO (Ptr CSize)
-> (Ptr CSize -> IO ())
-> (Ptr CSize -> IO ("lostAllocationCount" ::: Word64))
-> IO ("lostAllocationCount" ::: Word64)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr CSize)
forall a. Int -> IO (Ptr a)
callocBytes @CSize Int
8) Ptr CSize -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT ("lostAllocationCount" ::: Word64) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("lostAllocationCount" ::: Word64) IO ())
-> IO () -> ContT ("lostAllocationCount" ::: Word64) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaMakePoolAllocationsLost" ((Allocator -> Pool -> Ptr CSize -> IO ()
ffiVmaMakePoolAllocationsLost) (Allocator
allocator) (Pool
pool) (Ptr CSize
pPLostAllocationCount))
  CSize
pLostAllocationCount <- IO CSize -> ContT ("lostAllocationCount" ::: Word64) IO CSize
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO CSize -> ContT ("lostAllocationCount" ::: Word64) IO CSize)
-> IO CSize -> ContT ("lostAllocationCount" ::: Word64) IO CSize
forall a b. (a -> b) -> a -> b
$ Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize Ptr CSize
pPLostAllocationCount
  ("lostAllocationCount" ::: Word64)
-> ContT
     ("lostAllocationCount" ::: Word64)
     IO
     ("lostAllocationCount" ::: Word64)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("lostAllocationCount" ::: Word64)
 -> ContT
      ("lostAllocationCount" ::: Word64)
      IO
      ("lostAllocationCount" ::: Word64))
-> ("lostAllocationCount" ::: Word64)
-> ContT
     ("lostAllocationCount" ::: Word64)
     IO
     ("lostAllocationCount" ::: Word64)
forall a b. (a -> b) -> a -> b
$ ((CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
pLostAllocationCount))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCheckPoolCorruption" ffiVmaCheckPoolCorruption
  :: Allocator -> Pool -> IO Result

-- | Checks magic number in margins around all allocations in given memory
-- pool in search for corruptions.
--
-- Corruption detection is enabled only when @VMA_DEBUG_DETECT_CORRUPTION@
-- macro is defined to nonzero, @VMA_DEBUG_MARGIN@ is defined to nonzero
-- and the pool is created in memory type that is @HOST_VISIBLE@ and
-- @HOST_COHERENT@. For more information, see /Corruption detection/.
--
-- Possible return values:
--
-- -   @VK_ERROR_FEATURE_NOT_PRESENT@ - corruption detection is not enabled
--     for specified pool.
--
-- -   @VK_SUCCESS@ - corruption detection has been performed and
--     succeeded.
--
-- -   @VK_ERROR_VALIDATION_FAILED_EXT@ - corruption detection has been
--     performed and found memory corruptions around one of the
--     allocations. @VMA_ASSERT@ is also fired in that case.
--
-- -   Other value: Error returned by Vulkan, e.g. memory mapping failure.
checkPoolCorruption :: forall io
                     . (MonadIO io)
                    => -- No documentation found for Nested "vmaCheckPoolCorruption" "allocator"
                       Allocator
                    -> -- No documentation found for Nested "vmaCheckPoolCorruption" "pool"
                       Pool
                    -> io ()
checkPoolCorruption :: Allocator -> Pool -> io ()
checkPoolCorruption Allocator
allocator Pool
pool = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCheckPoolCorruption" ((Allocator -> Pool -> IO Result
ffiVmaCheckPoolCorruption) (Allocator
allocator) (Pool
pool))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetPoolName" ffiVmaGetPoolName
  :: Allocator -> Pool -> Ptr (Ptr CChar) -> IO ()

-- | Retrieves name of a custom pool.
--
-- After the call @ppName@ is either null or points to an internally-owned
-- null-terminated string containing name of the pool that was previously
-- set. The pointer becomes invalid when the pool is destroyed or its name
-- is changed using 'setPoolName'.
getPoolName :: forall io
             . (MonadIO io)
            => -- No documentation found for Nested "vmaGetPoolName" "allocator"
               Allocator
            -> -- No documentation found for Nested "vmaGetPoolName" "pool"
               Pool
            -> io (("name" ::: Ptr CChar))
getPoolName :: Allocator -> Pool -> io ("statsString" ::: Ptr CChar)
getPoolName Allocator
allocator Pool
pool = IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("statsString" ::: Ptr CChar)
 -> io ("statsString" ::: Ptr CChar))
-> (ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
    -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> IO ("statsString" ::: Ptr CChar)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
 -> io ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
-> io ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ do
  Ptr ("statsString" ::: Ptr CChar)
pPpName <- ((Ptr ("statsString" ::: Ptr CChar)
  -> IO ("statsString" ::: Ptr CChar))
 -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar)
     IO
     (Ptr ("statsString" ::: Ptr CChar))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("statsString" ::: Ptr CChar)
   -> IO ("statsString" ::: Ptr CChar))
  -> IO ("statsString" ::: Ptr CChar))
 -> ContT
      ("statsString" ::: Ptr CChar)
      IO
      (Ptr ("statsString" ::: Ptr CChar)))
-> ((Ptr ("statsString" ::: Ptr CChar)
     -> IO ("statsString" ::: Ptr CChar))
    -> IO ("statsString" ::: Ptr CChar))
-> ContT
     ("statsString" ::: Ptr CChar)
     IO
     (Ptr ("statsString" ::: Ptr CChar))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("statsString" ::: Ptr CChar))
-> (Ptr ("statsString" ::: Ptr CChar) -> IO ())
-> (Ptr ("statsString" ::: Ptr CChar)
    -> IO ("statsString" ::: Ptr CChar))
-> IO ("statsString" ::: Ptr CChar)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("statsString" ::: Ptr CChar))
forall a. Int -> IO (Ptr a)
callocBytes @(Ptr CChar) Int
8) Ptr ("statsString" ::: Ptr CChar) -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT ("statsString" ::: Ptr CChar) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("statsString" ::: Ptr CChar) IO ())
-> IO () -> ContT ("statsString" ::: Ptr CChar) IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetPoolName" ((Allocator -> Pool -> Ptr ("statsString" ::: Ptr CChar) -> IO ()
ffiVmaGetPoolName) (Allocator
allocator) (Pool
pool) (Ptr ("statsString" ::: Ptr CChar)
pPpName))
  "statsString" ::: Ptr CChar
ppName <- IO ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("statsString" ::: Ptr CChar)
 -> ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar))
-> IO ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ Ptr ("statsString" ::: Ptr CChar)
-> IO ("statsString" ::: Ptr CChar)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr CChar) Ptr ("statsString" ::: Ptr CChar)
pPpName
  ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("statsString" ::: Ptr CChar)
 -> ContT
      ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar))
-> ("statsString" ::: Ptr CChar)
-> ContT
     ("statsString" ::: Ptr CChar) IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ ("statsString" ::: Ptr CChar
ppName)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaSetPoolName" ffiVmaSetPoolName
  :: Allocator -> Pool -> Ptr CChar -> IO ()

-- | Sets name of a custom pool.
--
-- @pName@ can be either null or pointer to a null-terminated string with
-- new name for the pool. Function makes internal copy of the string, so it
-- can be changed or freed immediately after this call.
setPoolName :: forall io
             . (MonadIO io)
            => -- No documentation found for Nested "vmaSetPoolName" "allocator"
               Allocator
            -> -- No documentation found for Nested "vmaSetPoolName" "pool"
               Pool
            -> -- No documentation found for Nested "vmaSetPoolName" "pName"
               ("name" ::: Maybe ByteString)
            -> io ()
setPoolName :: Allocator -> Pool -> ("name" ::: Maybe ByteString) -> io ()
setPoolName Allocator
allocator Pool
pool "name" ::: Maybe ByteString
name = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ())
-> (ContT () IO () -> IO ()) -> ContT () IO () -> io ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT () IO () -> IO ()
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT () IO () -> io ()) -> ContT () IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  "statsString" ::: Ptr CChar
pName <- case ("name" ::: Maybe ByteString
name) of
    "name" ::: Maybe ByteString
Nothing -> ("statsString" ::: Ptr CChar)
-> ContT () IO ("statsString" ::: Ptr CChar)
forall (f :: * -> *) a. Applicative f => a -> f a
pure "statsString" ::: Ptr CChar
forall a. Ptr a
nullPtr
    Just ByteString
j -> ((("statsString" ::: Ptr CChar) -> IO ()) -> IO ())
-> ContT () IO ("statsString" ::: Ptr CChar)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((("statsString" ::: Ptr CChar) -> IO ()) -> IO ())
 -> ContT () IO ("statsString" ::: Ptr CChar))
-> ((("statsString" ::: Ptr CChar) -> IO ()) -> IO ())
-> ContT () IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ ByteString -> (("statsString" ::: Ptr CChar) -> IO ()) -> IO ()
forall a.
ByteString -> (("statsString" ::: Ptr CChar) -> IO a) -> IO a
useAsCString (ByteString
j)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaSetPoolName" ((Allocator -> Pool -> ("statsString" ::: Ptr CChar) -> IO ()
ffiVmaSetPoolName) (Allocator
allocator) (Pool
pool) "statsString" ::: Ptr CChar
pName)
  () -> ContT () IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> ContT () IO ()) -> () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaAllocateMemory" ffiVmaAllocateMemory
  :: Allocator -> Ptr MemoryRequirements -> Ptr AllocationCreateInfo -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | General purpose memory allocation.
--
-- __Parameters__
--
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocation     | Handle to allocated memory.                   |
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocationInfo | Optional. Information about allocated memory. |
-- |           |                 | It can be later fetched using function        |
-- |           |                 | 'getAllocationInfo'.                          |
-- +-----------+-----------------+-----------------------------------------------+
--
-- You should free the memory using 'freeMemory' or 'freeMemoryPages'.
--
-- It is recommended to use 'allocateMemoryForBuffer',
-- 'allocateMemoryForImage', 'createBuffer', 'createImage' instead whenever
-- possible.
allocateMemory :: forall io
                . (MonadIO io)
               => -- No documentation found for Nested "vmaAllocateMemory" "allocator"
                  Allocator
               -> -- No documentation found for Nested "vmaAllocateMemory" "pVkMemoryRequirements"
                  ("vkMemoryRequirements" ::: MemoryRequirements)
               -> -- No documentation found for Nested "vmaAllocateMemory" "pCreateInfo"
                  AllocationCreateInfo
               -> io (Allocation, AllocationInfo)
allocateMemory :: Allocator
-> ("vkMemoryRequirements" ::: MemoryRequirements)
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
allocateMemory Allocator
allocator "vkMemoryRequirements" ::: MemoryRequirements
vkMemoryRequirements AllocationCreateInfo
createInfo = IO (Allocation, AllocationInfo) -> io (Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> (ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
    -> IO (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> IO (Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
pVkMemoryRequirements <- ((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
  -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo)
     IO
     (Ptr ("vkMemoryRequirements" ::: MemoryRequirements))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
   -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT
      (Allocation, AllocationInfo)
      IO
      (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)))
-> ((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
     -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo)
     IO
     (Ptr ("vkMemoryRequirements" ::: MemoryRequirements))
forall a b. (a -> b) -> a -> b
$ ("vkMemoryRequirements" ::: MemoryRequirements)
-> (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
    -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct ("vkMemoryRequirements" ::: MemoryRequirements
vkMemoryRequirements)
  Ptr AllocationCreateInfo
pCreateInfo <- ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT
      (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
createInfo)
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT (Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Allocation, AllocationInfo) IO Result)
-> IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaAllocateMemory" ((Allocator
-> Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
-> Ptr AllocationCreateInfo
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaAllocateMemory) (Allocator
allocator) Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
pVkMemoryRequirements Ptr AllocationCreateInfo
pCreateInfo (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Allocation
pAllocation <- IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Allocation, AllocationInfo)
 -> ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo))
-> (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Allocation
pAllocation, AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'allocateMemory' and 'freeMemory'
--
-- To ensure that 'freeMemory' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withMemory :: forall io r . MonadIO io => Allocator -> MemoryRequirements -> AllocationCreateInfo -> (io (Allocation, AllocationInfo) -> ((Allocation, AllocationInfo) -> io ()) -> r) -> r
withMemory :: Allocator
-> ("vkMemoryRequirements" ::: MemoryRequirements)
-> AllocationCreateInfo
-> (io (Allocation, AllocationInfo)
    -> ((Allocation, AllocationInfo) -> io ()) -> r)
-> r
withMemory Allocator
allocator "vkMemoryRequirements" ::: MemoryRequirements
pVkMemoryRequirements AllocationCreateInfo
pCreateInfo io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b =
  io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b (Allocator
-> ("vkMemoryRequirements" ::: MemoryRequirements)
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
forall (io :: * -> *).
MonadIO io =>
Allocator
-> ("vkMemoryRequirements" ::: MemoryRequirements)
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
allocateMemory Allocator
allocator "vkMemoryRequirements" ::: MemoryRequirements
pVkMemoryRequirements AllocationCreateInfo
pCreateInfo)
    (\(Allocation
o0, AllocationInfo
_) -> Allocator -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ()
freeMemory Allocator
allocator Allocation
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaAllocateMemoryPages" ffiVmaAllocateMemoryPages
  :: Allocator -> Ptr MemoryRequirements -> Ptr AllocationCreateInfo -> CSize -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | General purpose memory allocation for multiple allocation objects at
-- once.
--
-- __Parameters__
--
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | allocator             | Allocator object.                             |
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | pVkMemoryRequirements | Memory requirements for each allocation.      |
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | pCreateInfo           | Creation parameters for each alloction.       |
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | allocationCount       | Number of allocations to make.                |
-- +-----------+-----------------------+-----------------------------------------------+
-- | out       | pAllocations          | Pointer to array that will be filled with     |
-- |           |                       | handles to created allocations.               |
-- +-----------+-----------------------+-----------------------------------------------+
-- | out       | pAllocationInfo       | Optional. Pointer to array that will be       |
-- |           |                       | filled with parameters of created             |
-- |           |                       | allocations.                                  |
-- +-----------+-----------------------+-----------------------------------------------+
--
-- You should free the memory using 'freeMemory' or 'freeMemoryPages'.
--
-- Word \"pages\" is just a suggestion to use this function to allocate
-- pieces of memory needed for sparse binding. It is just a general purpose
-- allocation function able to make multiple allocations at once. It may be
-- internally optimized to be more efficient than calling 'allocateMemory'
-- @allocationCount@ times.
--
-- All allocations are made using same parameters. All of them are created
-- out of the same memory pool and type. If any allocation fails, all
-- allocations already made within this function call are also freed, so
-- that when returned result is not @VK_SUCCESS@, @pAllocation@ array is
-- always entirely filled with @VK_NULL_HANDLE@.
allocateMemoryPages :: forall io
                     . (MonadIO io)
                    => -- No documentation found for Nested "vmaAllocateMemoryPages" "allocator"
                       Allocator
                    -> -- No documentation found for Nested "vmaAllocateMemoryPages" "pVkMemoryRequirements"
                       ("vkMemoryRequirements" ::: Vector MemoryRequirements)
                    -> -- No documentation found for Nested "vmaAllocateMemoryPages" "pCreateInfo"
                       ("createInfo" ::: Vector AllocationCreateInfo)
                    -> io (("allocations" ::: Vector Allocation), ("allocationInfo" ::: Vector AllocationInfo))
allocateMemoryPages :: Allocator
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> ("createInfo" ::: Vector AllocationCreateInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
allocateMemoryPages Allocator
allocator "vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
vkMemoryRequirements "createInfo" ::: Vector AllocationCreateInfo
createInfo = IO
  ("allocations" ::: Vector Allocation,
   "allocationInfo" ::: Vector AllocationInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO
   ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
 -> io
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> (ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("allocations" ::: Vector Allocation,
   "allocationInfo" ::: Vector AllocationInfo)
  IO
  ("allocations" ::: Vector Allocation,
   "allocationInfo" ::: Vector AllocationInfo)
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
   IO
   ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
 -> io
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
pPVkMemoryRequirements <- ((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr ("vkMemoryRequirements" ::: MemoryRequirements))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)))
-> ((Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr ("vkMemoryRequirements" ::: MemoryRequirements))
forall a b. (a -> b) -> a -> b
$ Int
-> (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @MemoryRequirements ((("vkMemoryRequirements"
 ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> Int
forall a. Vector a -> Int
Data.Vector.length ("vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
vkMemoryRequirements)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
24)
  (Int
 -> ("vkMemoryRequirements" ::: MemoryRequirements)
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i "vkMemoryRequirements" ::: MemoryRequirements
e -> ((()
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((()
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> ((()
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall a b. (a -> b) -> a -> b
$ Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
-> ("vkMemoryRequirements" ::: MemoryRequirements)
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
pPVkMemoryRequirements Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
-> Int -> Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
24 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr MemoryRequirements) ("vkMemoryRequirements" ::: MemoryRequirements
e) (IO
   ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ((()
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> (()
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ((()
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ()
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. (a -> b) -> a -> b
$ ())) ("vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
vkMemoryRequirements)
  Ptr AllocationCreateInfo
pPCreateInfo <- ((Ptr AllocationCreateInfo
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ Int
-> (Ptr AllocationCreateInfo
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @AllocationCreateInfo ((("createInfo" ::: Vector AllocationCreateInfo) -> Int
forall a. Vector a -> Int
Data.Vector.length ("createInfo" ::: Vector AllocationCreateInfo
createInfo)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
48)
  IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall a b. (a -> b) -> a -> b
$ (Int -> AllocationCreateInfo -> IO ())
-> ("createInfo" ::: Vector AllocationCreateInfo) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i AllocationCreateInfo
e -> Ptr AllocationCreateInfo -> AllocationCreateInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr AllocationCreateInfo
pPCreateInfo Ptr AllocationCreateInfo -> Int -> Ptr AllocationCreateInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
48 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr AllocationCreateInfo) (AllocationCreateInfo
e)) ("createInfo" ::: Vector AllocationCreateInfo
createInfo)
  let pVkMemoryRequirementsLength :: Int
pVkMemoryRequirementsLength = ("vkMemoryRequirements"
 ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> Int
forall a. Vector a -> Int
Data.Vector.length (("vkMemoryRequirements"
  ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
 -> Int)
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> Int
forall a b. (a -> b) -> a -> b
$ ("vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
vkMemoryRequirements)
  IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless ((("createInfo" ::: Vector AllocationCreateInfo) -> Int
forall a. Vector a -> Int
Data.Vector.length (("createInfo" ::: Vector AllocationCreateInfo) -> Int)
-> ("createInfo" ::: Vector AllocationCreateInfo) -> Int
forall a b. (a -> b) -> a -> b
$ ("createInfo" ::: Vector AllocationCreateInfo
createInfo)) Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
pVkMemoryRequirementsLength) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
    IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"pCreateInfo and pVkMemoryRequirements must have the same length" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
  Ptr Allocation
pPAllocations <- ((Ptr Allocation
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      (Ptr Allocation))
-> ((Ptr Allocation
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation ((CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationInfo
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      (Ptr AllocationInfo))
-> ((Ptr AllocationInfo
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     (Ptr AllocationInfo)
forall a b. (a -> b) -> a -> b
$ IO (Ptr AllocationInfo)
-> (Ptr AllocationInfo -> IO ())
-> (Ptr AllocationInfo
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr AllocationInfo)
forall a. Int -> IO (Ptr a)
callocBytes @AllocationInfo ((CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
48)) Ptr AllocationInfo -> IO ()
forall a. Ptr a -> IO ()
free
  [()]
_ <- (Int
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> [Int]
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     [()]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse (\Int
i -> ((()
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((()
   -> IO
        ("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo))
  -> IO
       ("allocations" ::: Vector Allocation,
        "allocationInfo" ::: Vector AllocationInfo))
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> ((()
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. ToCStruct a => Ptr a -> IO b -> IO b
pokeZeroCStruct (Ptr AllocationInfo
pPAllocationInfo Ptr AllocationInfo -> Int -> Ptr AllocationInfo
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
i Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
48) :: Ptr AllocationInfo) (IO
   ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ((()
     -> IO
          ("allocations" ::: Vector Allocation,
           "allocationInfo" ::: Vector AllocationInfo))
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> (()
    -> IO
         ("allocations" ::: Vector Allocation,
          "allocationInfo" ::: Vector AllocationInfo))
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ((()
 -> IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ()
-> IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. (a -> b) -> a -> b
$ ())) [Int
0..(CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize))) Int -> Int -> Int
forall a. Num a => a -> a -> a
- Int
1]
  Result
r <- IO Result
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      Result)
-> IO Result
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaAllocateMemoryPages" ((Allocator
-> Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
-> Ptr AllocationCreateInfo
-> CSize
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaAllocateMemoryPages) (Allocator
allocator) (Ptr ("vkMemoryRequirements" ::: MemoryRequirements)
pPVkMemoryRequirements) (Ptr AllocationCreateInfo
pPCreateInfo) ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize)) (Ptr Allocation
pPAllocations) ((Ptr AllocationInfo
pPAllocationInfo)))
  IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ())
-> IO ()
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "allocations" ::: Vector Allocation
pAllocations <- IO ("allocations" ::: Vector Allocation)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("allocations" ::: Vector Allocation)
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ("allocations" ::: Vector Allocation))
-> IO ("allocations" ::: Vector Allocation)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation)
forall a b. (a -> b) -> a -> b
$ Int
-> (Int -> IO Allocation)
-> IO ("allocations" ::: Vector Allocation)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize))) (\Int
i -> Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation ((Ptr Allocation
pPAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation)))
  "allocationInfo" ::: Vector AllocationInfo
pAllocationInfo <- IO ("allocationInfo" ::: Vector AllocationInfo)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocationInfo" ::: Vector AllocationInfo)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("allocationInfo" ::: Vector AllocationInfo)
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ("allocationInfo" ::: Vector AllocationInfo))
-> IO ("allocationInfo" ::: Vector AllocationInfo)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocationInfo" ::: Vector AllocationInfo)
forall a b. (a -> b) -> a -> b
$ Int
-> (Int -> IO AllocationInfo)
-> IO ("allocationInfo" ::: Vector AllocationInfo)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
pVkMemoryRequirementsLength :: CSize))) (\Int
i -> Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo (((Ptr AllocationInfo
pPAllocationInfo) Ptr AllocationInfo -> Int -> Ptr AllocationInfo
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
48 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr AllocationInfo)))
  ("allocations" ::: Vector Allocation,
 "allocationInfo" ::: Vector AllocationInfo)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("allocations" ::: Vector Allocation,
  "allocationInfo" ::: Vector AllocationInfo)
 -> ContT
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
      IO
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo))
-> ("allocations" ::: Vector Allocation,
    "allocationInfo" ::: Vector AllocationInfo)
-> ContT
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
     IO
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
pAllocations, "allocationInfo" ::: Vector AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'allocateMemoryPages' and 'freeMemoryPages'
--
-- To ensure that 'freeMemoryPages' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withMemoryPages :: forall io r . MonadIO io => Allocator -> Vector MemoryRequirements -> Vector AllocationCreateInfo -> (io (Vector Allocation, Vector AllocationInfo) -> ((Vector Allocation, Vector AllocationInfo) -> io ()) -> r) -> r
withMemoryPages :: Allocator
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> ("createInfo" ::: Vector AllocationCreateInfo)
-> (io
      ("allocations" ::: Vector Allocation,
       "allocationInfo" ::: Vector AllocationInfo)
    -> (("allocations" ::: Vector Allocation,
         "allocationInfo" ::: Vector AllocationInfo)
        -> io ())
    -> r)
-> r
withMemoryPages Allocator
allocator "vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
pVkMemoryRequirements "createInfo" ::: Vector AllocationCreateInfo
pCreateInfo io
  ("allocations" ::: Vector Allocation,
   "allocationInfo" ::: Vector AllocationInfo)
-> (("allocations" ::: Vector Allocation,
     "allocationInfo" ::: Vector AllocationInfo)
    -> io ())
-> r
b =
  io
  ("allocations" ::: Vector Allocation,
   "allocationInfo" ::: Vector AllocationInfo)
-> (("allocations" ::: Vector Allocation,
     "allocationInfo" ::: Vector AllocationInfo)
    -> io ())
-> r
b (Allocator
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> ("createInfo" ::: Vector AllocationCreateInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
forall (io :: * -> *).
MonadIO io =>
Allocator
-> ("vkMemoryRequirements"
    ::: Vector ("vkMemoryRequirements" ::: MemoryRequirements))
-> ("createInfo" ::: Vector AllocationCreateInfo)
-> io
     ("allocations" ::: Vector Allocation,
      "allocationInfo" ::: Vector AllocationInfo)
allocateMemoryPages Allocator
allocator "vkMemoryRequirements"
::: Vector ("vkMemoryRequirements" ::: MemoryRequirements)
pVkMemoryRequirements "createInfo" ::: Vector AllocationCreateInfo
pCreateInfo)
    (\("allocations" ::: Vector Allocation
o0, "allocationInfo" ::: Vector AllocationInfo
_) -> Allocator -> ("allocations" ::: Vector Allocation) -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> ("allocations" ::: Vector Allocation) -> io ()
freeMemoryPages Allocator
allocator "allocations" ::: Vector Allocation
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaAllocateMemoryForBuffer" ffiVmaAllocateMemoryForBuffer
  :: Allocator -> Buffer -> Ptr AllocationCreateInfo -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | __Parameters__
--
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocation     | Handle to allocated memory.                   |
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocationInfo | Optional. Information about allocated memory. |
-- |           |                 | It can be later fetched using function        |
-- |           |                 | 'getAllocationInfo'.                          |
-- +-----------+-----------------+-----------------------------------------------+
--
-- You should free the memory using 'freeMemory'.
allocateMemoryForBuffer :: forall io
                         . (MonadIO io)
                        => -- No documentation found for Nested "vmaAllocateMemoryForBuffer" "allocator"
                           Allocator
                        -> -- No documentation found for Nested "vmaAllocateMemoryForBuffer" "buffer"
                           Buffer
                        -> -- No documentation found for Nested "vmaAllocateMemoryForBuffer" "pCreateInfo"
                           AllocationCreateInfo
                        -> io (Allocation, AllocationInfo)
allocateMemoryForBuffer :: Allocator
-> Buffer
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
allocateMemoryForBuffer Allocator
allocator Buffer
buffer AllocationCreateInfo
createInfo = IO (Allocation, AllocationInfo) -> io (Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> (ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
    -> IO (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> IO (Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocationCreateInfo
pCreateInfo <- ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT
      (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
createInfo)
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT (Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Allocation, AllocationInfo) IO Result)
-> IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaAllocateMemoryForBuffer" ((Allocator
-> Buffer
-> Ptr AllocationCreateInfo
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaAllocateMemoryForBuffer) (Allocator
allocator) (Buffer
buffer) Ptr AllocationCreateInfo
pCreateInfo (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Allocation
pAllocation <- IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Allocation, AllocationInfo)
 -> ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo))
-> (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Allocation
pAllocation, AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'allocateMemoryForBuffer' and 'freeMemory'
--
-- To ensure that 'freeMemory' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withMemoryForBuffer :: forall io r . MonadIO io => Allocator -> Buffer -> AllocationCreateInfo -> (io (Allocation, AllocationInfo) -> ((Allocation, AllocationInfo) -> io ()) -> r) -> r
withMemoryForBuffer :: Allocator
-> Buffer
-> AllocationCreateInfo
-> (io (Allocation, AllocationInfo)
    -> ((Allocation, AllocationInfo) -> io ()) -> r)
-> r
withMemoryForBuffer Allocator
allocator Buffer
buffer AllocationCreateInfo
pCreateInfo io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b =
  io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b (Allocator
-> Buffer
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
forall (io :: * -> *).
MonadIO io =>
Allocator
-> Buffer
-> AllocationCreateInfo
-> io (Allocation, AllocationInfo)
allocateMemoryForBuffer Allocator
allocator Buffer
buffer AllocationCreateInfo
pCreateInfo)
    (\(Allocation
o0, AllocationInfo
_) -> Allocator -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ()
freeMemory Allocator
allocator Allocation
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaAllocateMemoryForImage" ffiVmaAllocateMemoryForImage
  :: Allocator -> Image -> Ptr AllocationCreateInfo -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | Function similar to 'allocateMemoryForBuffer'.
allocateMemoryForImage :: forall io
                        . (MonadIO io)
                       => -- No documentation found for Nested "vmaAllocateMemoryForImage" "allocator"
                          Allocator
                       -> -- No documentation found for Nested "vmaAllocateMemoryForImage" "image"
                          Image
                       -> -- No documentation found for Nested "vmaAllocateMemoryForImage" "pCreateInfo"
                          AllocationCreateInfo
                       -> io (Allocation, AllocationInfo)
allocateMemoryForImage :: Allocator
-> Image -> AllocationCreateInfo -> io (Allocation, AllocationInfo)
allocateMemoryForImage Allocator
allocator Image
image AllocationCreateInfo
createInfo = IO (Allocation, AllocationInfo) -> io (Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> (ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
    -> IO (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> IO (Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
 -> io (Allocation, AllocationInfo))
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
-> io (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocationCreateInfo
pCreateInfo <- ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT
      (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
createInfo)
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Allocation, AllocationInfo))
  -> IO (Allocation, AllocationInfo))
 -> ContT (Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Allocation, AllocationInfo))
    -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Allocation, AllocationInfo))
-> IO (Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Allocation, AllocationInfo))
 -> IO (Allocation, AllocationInfo))
-> ContT (Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Allocation, AllocationInfo) IO Result)
-> IO Result -> ContT (Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaAllocateMemoryForImage" ((Allocator
-> Image
-> Ptr AllocationCreateInfo
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaAllocateMemoryForImage) (Allocator
allocator) (Image
image) Ptr AllocationCreateInfo
pCreateInfo (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Allocation
pAllocation <- IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation -> ContT (Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Allocation, AllocationInfo)
 -> ContT
      (Allocation, AllocationInfo) IO (Allocation, AllocationInfo))
-> (Allocation, AllocationInfo)
-> ContT
     (Allocation, AllocationInfo) IO (Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Allocation
pAllocation, AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'allocateMemoryForImage' and 'freeMemory'
--
-- To ensure that 'freeMemory' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withMemoryForImage :: forall io r . MonadIO io => Allocator -> Image -> AllocationCreateInfo -> (io (Allocation, AllocationInfo) -> ((Allocation, AllocationInfo) -> io ()) -> r) -> r
withMemoryForImage :: Allocator
-> Image
-> AllocationCreateInfo
-> (io (Allocation, AllocationInfo)
    -> ((Allocation, AllocationInfo) -> io ()) -> r)
-> r
withMemoryForImage Allocator
allocator Image
image AllocationCreateInfo
pCreateInfo io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b =
  io (Allocation, AllocationInfo)
-> ((Allocation, AllocationInfo) -> io ()) -> r
b (Allocator
-> Image -> AllocationCreateInfo -> io (Allocation, AllocationInfo)
forall (io :: * -> *).
MonadIO io =>
Allocator
-> Image -> AllocationCreateInfo -> io (Allocation, AllocationInfo)
allocateMemoryForImage Allocator
allocator Image
image AllocationCreateInfo
pCreateInfo)
    (\(Allocation
o0, AllocationInfo
_) -> Allocator -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ()
freeMemory Allocator
allocator Allocation
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFreeMemory" ffiVmaFreeMemory
  :: Allocator -> Allocation -> IO ()

-- | Frees memory previously allocated using 'allocateMemory',
-- 'allocateMemoryForBuffer', or 'allocateMemoryForImage'.
--
-- Passing @VK_NULL_HANDLE@ as @allocation@ is valid. Such function call is
-- just skipped.
freeMemory :: forall io
            . (MonadIO io)
           => -- No documentation found for Nested "vmaFreeMemory" "allocator"
              Allocator
           -> -- No documentation found for Nested "vmaFreeMemory" "allocation"
              Allocation
           -> io ()
freeMemory :: Allocator -> Allocation -> io ()
freeMemory Allocator
allocator Allocation
allocation = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFreeMemory" ((Allocator -> Allocation -> IO ()
ffiVmaFreeMemory) (Allocator
allocator) (Allocation
allocation))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFreeMemoryPages" ffiVmaFreeMemoryPages
  :: Allocator -> CSize -> Ptr Allocation -> IO ()

-- | Frees memory and destroys multiple allocations.
--
-- Word \"pages\" is just a suggestion to use this function to free pieces
-- of memory used for sparse binding. It is just a general purpose function
-- to free memory and destroy allocations made using e.g. 'allocateMemory',
-- 'allocateMemoryPages' and other functions. It may be internally
-- optimized to be more efficient than calling 'freeMemory'
-- @allocationCount@ times.
--
-- Allocations in @pAllocations@ array can come from any memory pools and
-- types. Passing @VK_NULL_HANDLE@ as elements of @pAllocations@ array is
-- valid. Such entries are just skipped.
freeMemoryPages :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaFreeMemoryPages" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaFreeMemoryPages" "pAllocations"
                   ("allocations" ::: Vector Allocation)
                -> io ()
freeMemoryPages :: Allocator -> ("allocations" ::: Vector Allocation) -> io ()
freeMemoryPages Allocator
allocator "allocations" ::: Vector Allocation
allocations = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ())
-> (ContT () IO () -> IO ()) -> ContT () IO () -> io ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT () IO () -> IO ()
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT () IO () -> io ()) -> ContT () IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Ptr Allocation
pPAllocations <- ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO ()) -> IO ())
 -> ContT () IO (Ptr Allocation))
-> ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr Allocation -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Allocation ((("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length ("allocations" ::: Vector Allocation
allocations)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Allocation -> IO ())
-> ("allocations" ::: Vector Allocation) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Allocation
e -> Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Allocation
pPAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation) (Allocation
e)) ("allocations" ::: Vector Allocation
allocations)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFreeMemoryPages" ((Allocator -> CSize -> Ptr Allocation -> IO ()
ffiVmaFreeMemoryPages) (Allocator
allocator) ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral (("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)) :: CSize)) (Ptr Allocation
pPAllocations))
  () -> ContT () IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> ContT () IO ()) -> () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaGetAllocationInfo" ffiVmaGetAllocationInfo
  :: Allocator -> Allocation -> Ptr AllocationInfo -> IO ()

-- | Returns current information about specified allocation and atomically
-- marks it as used in current frame.
--
-- Current paramteres of given allocation are returned in
-- @pAllocationInfo@.
--
-- This function also atomically \"touches\" allocation - marks it as used
-- in current frame, just like 'touchAllocation'. If the allocation is in
-- lost state, @pAllocationInfo->deviceMemory == VK_NULL_HANDLE@.
--
-- Although this function uses atomics and doesn\'t lock any mutex, so it
-- should be quite efficient, you can avoid calling it too often.
--
-- -   You can retrieve same 'AllocationInfo' structure while creating your
--     resource, from function 'createBuffer', 'createImage'. You can
--     remember it if you are sure parameters don\'t change (e.g. due to
--     defragmentation or allocation becoming lost).
--
-- -   If you just want to check if allocation is not lost,
--     'touchAllocation' will work faster.
getAllocationInfo :: forall io
                   . (MonadIO io)
                  => -- No documentation found for Nested "vmaGetAllocationInfo" "allocator"
                     Allocator
                  -> -- No documentation found for Nested "vmaGetAllocationInfo" "allocation"
                     Allocation
                  -> io (AllocationInfo)
getAllocationInfo :: Allocator -> Allocation -> io AllocationInfo
getAllocationInfo Allocator
allocator Allocation
allocation = IO AllocationInfo -> io AllocationInfo
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO AllocationInfo -> io AllocationInfo)
-> (ContT AllocationInfo IO AllocationInfo -> IO AllocationInfo)
-> ContT AllocationInfo IO AllocationInfo
-> io AllocationInfo
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT AllocationInfo IO AllocationInfo -> IO AllocationInfo
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT AllocationInfo IO AllocationInfo -> io AllocationInfo)
-> ContT AllocationInfo IO AllocationInfo -> io AllocationInfo
forall a b. (a -> b) -> a -> b
$ do
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO AllocationInfo) -> IO AllocationInfo)
-> ContT AllocationInfo IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  IO () -> ContT AllocationInfo IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT AllocationInfo IO ())
-> IO () -> ContT AllocationInfo IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaGetAllocationInfo" ((Allocator -> Allocation -> Ptr AllocationInfo -> IO ()
ffiVmaGetAllocationInfo) (Allocator
allocator) (Allocation
allocation) (Ptr AllocationInfo
pPAllocationInfo))
  AllocationInfo
pAllocationInfo <- IO AllocationInfo -> ContT AllocationInfo IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo -> ContT AllocationInfo IO AllocationInfo)
-> IO AllocationInfo -> ContT AllocationInfo IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  AllocationInfo -> ContT AllocationInfo IO AllocationInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocationInfo -> ContT AllocationInfo IO AllocationInfo)
-> AllocationInfo -> ContT AllocationInfo IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ (AllocationInfo
pAllocationInfo)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaTouchAllocation" ffiVmaTouchAllocation
  :: Allocator -> Allocation -> IO Bool32

-- | Returns @VK_TRUE@ if allocation is not lost and atomically marks it as
-- used in current frame.
--
-- If the allocation has been created with
-- 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' flag, this function returns
-- @VK_TRUE@ if it\'s not in lost state, so it can still be used. It then
-- also atomically \"touches\" the allocation - marks it as used in current
-- frame, so that you can be sure it won\'t become lost in current frame or
-- next @frameInUseCount@ frames.
--
-- If the allocation is in lost state, the function returns @VK_FALSE@.
-- Memory of such allocation, as well as buffer or image bound to it,
-- should not be used. Lost allocation and the buffer\/image still need to
-- be destroyed.
--
-- If the allocation has been created without
-- 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' flag, this function always
-- returns @VK_TRUE@.
touchAllocation :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaTouchAllocation" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaTouchAllocation" "allocation"
                   Allocation
                -> io (Bool)
touchAllocation :: Allocator -> Allocation -> io Bool
touchAllocation Allocator
allocator Allocation
allocation = IO Bool -> io Bool
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Bool -> io Bool) -> IO Bool -> io Bool
forall a b. (a -> b) -> a -> b
$ do
  Bool32
r <- String -> IO Bool32 -> IO Bool32
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaTouchAllocation" ((Allocator -> Allocation -> IO Bool32
ffiVmaTouchAllocation) (Allocator
allocator) (Allocation
allocation))
  Bool -> IO Bool
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Bool -> IO Bool) -> Bool -> IO Bool
forall a b. (a -> b) -> a -> b
$ ((Bool32 -> Bool
bool32ToBool Bool32
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaSetAllocationUserData" ffiVmaSetAllocationUserData
  :: Allocator -> Allocation -> Ptr () -> IO ()

-- | Sets pUserData in given allocation to new value.
--
-- If the allocation was created with
-- VMA_ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT, pUserData must be
-- either null, or pointer to a null-terminated string. The function makes
-- local copy of the string and sets it as allocation\'s @pUserData@.
-- String passed as pUserData doesn\'t need to be valid for whole lifetime
-- of the allocation - you can free it after this call. String previously
-- pointed by allocation\'s pUserData is freed from memory.
--
-- If the flag was not used, the value of pointer @pUserData@ is just
-- copied to allocation\'s @pUserData@. It is opaque, so you can use it
-- however you want - e.g. as a pointer, ordinal number or some handle to
-- you own data.
setAllocationUserData :: forall io
                       . (MonadIO io)
                      => -- No documentation found for Nested "vmaSetAllocationUserData" "allocator"
                         Allocator
                      -> -- No documentation found for Nested "vmaSetAllocationUserData" "allocation"
                         Allocation
                      -> -- No documentation found for Nested "vmaSetAllocationUserData" "pUserData"
                         ("userData" ::: Ptr ())
                      -> io ()
setAllocationUserData :: Allocator -> Allocation -> ("userData" ::: Ptr ()) -> io ()
setAllocationUserData Allocator
allocator Allocation
allocation "userData" ::: Ptr ()
userData = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaSetAllocationUserData" ((Allocator -> Allocation -> ("userData" ::: Ptr ()) -> IO ()
ffiVmaSetAllocationUserData) (Allocator
allocator) (Allocation
allocation) ("userData" ::: Ptr ()
userData))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreateLostAllocation" ffiVmaCreateLostAllocation
  :: Allocator -> Ptr Allocation -> IO ()

-- | Creates new allocation that is in lost state from the beginning.
--
-- It can be useful if you need a dummy, non-null allocation.
--
-- You still need to destroy created object using 'freeMemory'.
--
-- Returned allocation is not tied to any specific memory pool or memory
-- type and not bound to any image or buffer. It has size = 0. It cannot be
-- turned into a real, non-empty allocation.
createLostAllocation :: forall io
                      . (MonadIO io)
                     => -- No documentation found for Nested "vmaCreateLostAllocation" "allocator"
                        Allocator
                     -> io (Allocation)
createLostAllocation :: Allocator -> io Allocation
createLostAllocation Allocator
allocator = IO Allocation -> io Allocation
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Allocation -> io Allocation)
-> (ContT Allocation IO Allocation -> IO Allocation)
-> ContT Allocation IO Allocation
-> io Allocation
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT Allocation IO Allocation -> IO Allocation
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT Allocation IO Allocation -> io Allocation)
-> ContT Allocation IO Allocation -> io Allocation
forall a b. (a -> b) -> a -> b
$ do
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO Allocation) -> IO Allocation)
-> ContT Allocation IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO Allocation) -> IO Allocation)
 -> ContT Allocation IO (Ptr Allocation))
-> ((Ptr Allocation -> IO Allocation) -> IO Allocation)
-> ContT Allocation IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO Allocation)
-> IO Allocation
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  IO () -> ContT Allocation IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT Allocation IO ())
-> IO () -> ContT Allocation IO ()
forall a b. (a -> b) -> a -> b
$ String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreateLostAllocation" ((Allocator -> Ptr Allocation -> IO ()
ffiVmaCreateLostAllocation) (Allocator
allocator) (Ptr Allocation
pPAllocation))
  Allocation
pAllocation <- IO Allocation -> ContT Allocation IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation -> ContT Allocation IO Allocation)
-> IO Allocation -> ContT Allocation IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  Allocation -> ContT Allocation IO Allocation
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Allocation -> ContT Allocation IO Allocation)
-> Allocation -> ContT Allocation IO Allocation
forall a b. (a -> b) -> a -> b
$ (Allocation
pAllocation)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'createLostAllocation' and 'freeMemory'
--
-- To ensure that 'freeMemory' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withLostAllocation :: forall io r . MonadIO io => Allocator -> (io Allocation -> (Allocation -> io ()) -> r) -> r
withLostAllocation :: Allocator -> (io Allocation -> (Allocation -> io ()) -> r) -> r
withLostAllocation Allocator
allocator io Allocation -> (Allocation -> io ()) -> r
b =
  io Allocation -> (Allocation -> io ()) -> r
b (Allocator -> io Allocation
forall (io :: * -> *). MonadIO io => Allocator -> io Allocation
createLostAllocation Allocator
allocator)
    (\(Allocation
o0) -> Allocator -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ()
freeMemory Allocator
allocator Allocation
o0)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaMapMemory" ffiVmaMapMemory
  :: Allocator -> Allocation -> Ptr (Ptr ()) -> IO Result

-- | Maps memory represented by given allocation and returns pointer to it.
--
-- Maps memory represented by given allocation to make it accessible to CPU
-- code. When succeeded, @*ppData@ contains pointer to first byte of this
-- memory. If the allocation is part of bigger @VkDeviceMemory@ block, the
-- pointer is correctly offsetted to the beginning of region assigned to
-- this particular allocation.
--
-- Mapping is internally reference-counted and synchronized, so despite raw
-- Vulkan function @vkMapMemory()@ cannot be used to map same block of
-- @VkDeviceMemory@ multiple times simultaneously, it is safe to call this
-- function on allocations assigned to the same memory block. Actual Vulkan
-- memory will be mapped on first mapping and unmapped on last unmapping.
--
-- If the function succeeded, you must call 'unmapMemory' to unmap the
-- allocation when mapping is no longer needed or before freeing the
-- allocation, at the latest.
--
-- It also safe to call this function multiple times on the same
-- allocation. You must call 'unmapMemory' same number of times as you
-- called 'mapMemory'.
--
-- It is also safe to call this function on allocation created with
-- 'ALLOCATION_CREATE_MAPPED_BIT' flag. Its memory stays mapped all the
-- time. You must still call 'unmapMemory' same number of times as you
-- called 'mapMemory'. You must not call 'unmapMemory' additional time to
-- free the \"0-th\" mapping made automatically due to
-- 'ALLOCATION_CREATE_MAPPED_BIT' flag.
--
-- This function fails when used on allocation made in memory type that is
-- not @HOST_VISIBLE@.
--
-- This function always fails when called for allocation that was created
-- with 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' flag. Such allocations
-- cannot be mapped.
--
-- This function doesn\'t automatically flush or invalidate caches. If the
-- allocation is made from a memory types that is not @HOST_COHERENT@, you
-- also need to use 'invalidateAllocation' \/ 'flushAllocation', as
-- required by Vulkan specification.
mapMemory :: forall io
           . (MonadIO io)
          => -- No documentation found for Nested "vmaMapMemory" "allocator"
             Allocator
          -> -- No documentation found for Nested "vmaMapMemory" "allocation"
             Allocation
          -> io (("data" ::: Ptr ()))
mapMemory :: Allocator -> Allocation -> io ("userData" ::: Ptr ())
mapMemory Allocator
allocator Allocation
allocation = IO ("userData" ::: Ptr ()) -> io ("userData" ::: Ptr ())
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("userData" ::: Ptr ()) -> io ("userData" ::: Ptr ()))
-> (ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
    -> IO ("userData" ::: Ptr ()))
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
-> io ("userData" ::: Ptr ())
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
-> IO ("userData" ::: Ptr ())
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
 -> io ("userData" ::: Ptr ()))
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
-> io ("userData" ::: Ptr ())
forall a b. (a -> b) -> a -> b
$ do
  Ptr ("userData" ::: Ptr ())
pPpData <- ((Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ()))
 -> IO ("userData" ::: Ptr ()))
-> ContT ("userData" ::: Ptr ()) IO (Ptr ("userData" ::: Ptr ()))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ()))
  -> IO ("userData" ::: Ptr ()))
 -> ContT ("userData" ::: Ptr ()) IO (Ptr ("userData" ::: Ptr ())))
-> ((Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ()))
    -> IO ("userData" ::: Ptr ()))
-> ContT ("userData" ::: Ptr ()) IO (Ptr ("userData" ::: Ptr ()))
forall a b. (a -> b) -> a -> b
$ IO (Ptr ("userData" ::: Ptr ()))
-> (Ptr ("userData" ::: Ptr ()) -> IO ())
-> (Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ()))
-> IO ("userData" ::: Ptr ())
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr ("userData" ::: Ptr ()))
forall a. Int -> IO (Ptr a)
callocBytes @(Ptr ()) Int
8) Ptr ("userData" ::: Ptr ()) -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result -> ContT ("userData" ::: Ptr ()) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT ("userData" ::: Ptr ()) IO Result)
-> IO Result -> ContT ("userData" ::: Ptr ()) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaMapMemory" ((Allocator -> Allocation -> Ptr ("userData" ::: Ptr ()) -> IO Result
ffiVmaMapMemory) (Allocator
allocator) (Allocation
allocation) (Ptr ("userData" ::: Ptr ())
pPpData))
  IO () -> ContT ("userData" ::: Ptr ()) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT ("userData" ::: Ptr ()) IO ())
-> IO () -> ContT ("userData" ::: Ptr ()) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "userData" ::: Ptr ()
ppData <- IO ("userData" ::: Ptr ())
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("userData" ::: Ptr ())
 -> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ()))
-> IO ("userData" ::: Ptr ())
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
forall a b. (a -> b) -> a -> b
$ Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) Ptr ("userData" ::: Ptr ())
pPpData
  ("userData" ::: Ptr ())
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("userData" ::: Ptr ())
 -> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ()))
-> ("userData" ::: Ptr ())
-> ContT ("userData" ::: Ptr ()) IO ("userData" ::: Ptr ())
forall a b. (a -> b) -> a -> b
$ ("userData" ::: Ptr ()
ppData)

-- | A convenience wrapper to make a compatible pair of calls to 'mapMemory'
-- and 'unmapMemory'
--
-- To ensure that 'unmapMemory' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withMappedMemory :: forall io r . MonadIO io => Allocator -> Allocation -> (io (Ptr ()) -> (Ptr () -> io ()) -> r) -> r
withMappedMemory :: Allocator
-> Allocation
-> (io ("userData" ::: Ptr ())
    -> (("userData" ::: Ptr ()) -> io ()) -> r)
-> r
withMappedMemory Allocator
allocator Allocation
allocation io ("userData" ::: Ptr ())
-> (("userData" ::: Ptr ()) -> io ()) -> r
b =
  io ("userData" ::: Ptr ())
-> (("userData" ::: Ptr ()) -> io ()) -> r
b (Allocator -> Allocation -> io ("userData" ::: Ptr ())
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ("userData" ::: Ptr ())
mapMemory Allocator
allocator Allocation
allocation)
    (\("userData" ::: Ptr ()
_) -> Allocator -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Allocation -> io ()
unmapMemory Allocator
allocator Allocation
allocation)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaUnmapMemory" ffiVmaUnmapMemory
  :: Allocator -> Allocation -> IO ()

-- | Unmaps memory represented by given allocation, mapped previously using
-- 'mapMemory'.
--
-- For details, see description of 'mapMemory'.
--
-- This function doesn\'t automatically flush or invalidate caches. If the
-- allocation is made from a memory types that is not @HOST_COHERENT@, you
-- also need to use 'invalidateAllocation' \/ 'flushAllocation', as
-- required by Vulkan specification.
unmapMemory :: forall io
             . (MonadIO io)
            => -- No documentation found for Nested "vmaUnmapMemory" "allocator"
               Allocator
            -> -- No documentation found for Nested "vmaUnmapMemory" "allocation"
               Allocation
            -> io ()
unmapMemory :: Allocator -> Allocation -> io ()
unmapMemory Allocator
allocator Allocation
allocation = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaUnmapMemory" ((Allocator -> Allocation -> IO ()
ffiVmaUnmapMemory) (Allocator
allocator) (Allocation
allocation))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFlushAllocation" ffiVmaFlushAllocation
  :: Allocator -> Allocation -> DeviceSize -> DeviceSize -> IO Result

-- | Flushes memory of given allocation.
--
-- Calls @vkFlushMappedMemoryRanges()@ for memory associated with given
-- range of given allocation. It needs to be called after writing to a
-- mapped memory for memory types that are not @HOST_COHERENT@. Unmap
-- operation doesn\'t do that automatically.
--
-- -   @offset@ must be relative to the beginning of allocation.
--
-- -   @size@ can be @VK_WHOLE_SIZE@. It means all memory from @offset@ the
--     the end of given allocation.
--
-- -   @offset@ and @size@ don\'t have to be aligned. They are internally
--     rounded down\/up to multiply of @nonCoherentAtomSize@.
--
-- -   If @size@ is 0, this call is ignored.
--
-- -   If memory type that the @allocation@ belongs to is not
--     @HOST_VISIBLE@ or it is @HOST_COHERENT@, this call is ignored.
--
-- Warning! @offset@ and @size@ are relative to the contents of given
-- @allocation@. If you mean whole allocation, you can pass 0 and
-- @VK_WHOLE_SIZE@, respectively. Do not pass allocation\'s offset as
-- @offset@!!!
--
-- This function returns the @VkResult@ from @vkFlushMappedMemoryRanges@ if
-- it is called, otherwise @VK_SUCCESS@.
flushAllocation :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaFlushAllocation" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaFlushAllocation" "allocation"
                   Allocation
                -> -- No documentation found for Nested "vmaFlushAllocation" "offset"
                   ("offset" ::: DeviceSize)
                -> -- No documentation found for Nested "vmaFlushAllocation" "size"
                   DeviceSize
                -> io ()
flushAllocation :: Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> io ()
flushAllocation Allocator
allocator Allocation
allocation "lostAllocationCount" ::: Word64
offset "lostAllocationCount" ::: Word64
size = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFlushAllocation" ((Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> IO Result
ffiVmaFlushAllocation) (Allocator
allocator) (Allocation
allocation) ("lostAllocationCount" ::: Word64
offset) ("lostAllocationCount" ::: Word64
size))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaInvalidateAllocation" ffiVmaInvalidateAllocation
  :: Allocator -> Allocation -> DeviceSize -> DeviceSize -> IO Result

-- | Invalidates memory of given allocation.
--
-- Calls @vkInvalidateMappedMemoryRanges()@ for memory associated with
-- given range of given allocation. It needs to be called before reading
-- from a mapped memory for memory types that are not @HOST_COHERENT@. Map
-- operation doesn\'t do that automatically.
--
-- -   @offset@ must be relative to the beginning of allocation.
--
-- -   @size@ can be @VK_WHOLE_SIZE@. It means all memory from @offset@ the
--     the end of given allocation.
--
-- -   @offset@ and @size@ don\'t have to be aligned. They are internally
--     rounded down\/up to multiply of @nonCoherentAtomSize@.
--
-- -   If @size@ is 0, this call is ignored.
--
-- -   If memory type that the @allocation@ belongs to is not
--     @HOST_VISIBLE@ or it is @HOST_COHERENT@, this call is ignored.
--
-- Warning! @offset@ and @size@ are relative to the contents of given
-- @allocation@. If you mean whole allocation, you can pass 0 and
-- @VK_WHOLE_SIZE@, respectively. Do not pass allocation\'s offset as
-- @offset@!!!
--
-- This function returns the @VkResult@ from
-- @vkInvalidateMappedMemoryRanges@ if it is called, otherwise
-- @VK_SUCCESS@.
invalidateAllocation :: forall io
                      . (MonadIO io)
                     => -- No documentation found for Nested "vmaInvalidateAllocation" "allocator"
                        Allocator
                     -> -- No documentation found for Nested "vmaInvalidateAllocation" "allocation"
                        Allocation
                     -> -- No documentation found for Nested "vmaInvalidateAllocation" "offset"
                        ("offset" ::: DeviceSize)
                     -> -- No documentation found for Nested "vmaInvalidateAllocation" "size"
                        DeviceSize
                     -> io ()
invalidateAllocation :: Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> io ()
invalidateAllocation Allocator
allocator Allocation
allocation "lostAllocationCount" ::: Word64
offset "lostAllocationCount" ::: Word64
size = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaInvalidateAllocation" ((Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> IO Result
ffiVmaInvalidateAllocation) (Allocator
allocator) (Allocation
allocation) ("lostAllocationCount" ::: Word64
offset) ("lostAllocationCount" ::: Word64
size))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaFlushAllocations" ffiVmaFlushAllocations
  :: Allocator -> Word32 -> Ptr Allocation -> Ptr DeviceSize -> Ptr DeviceSize -> IO Result

-- | Flushes memory of given set of allocations.
--
-- Calls @vkFlushMappedMemoryRanges()@ for memory associated with given
-- ranges of given allocations. For more information, see documentation of
-- 'flushAllocation'.
--
-- __Parameters__
--
-- +-----------------+--------------------------------------------------------+
-- | allocator       |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | allocationCount |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | allocations     |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | offsets         | If not null, it must point to an array of offsets of   |
-- |                 | regions to flush, relative to the beginning of         |
-- |                 | respective allocations. Null means all ofsets are      |
-- |                 | zero.                                                  |
-- +-----------------+--------------------------------------------------------+
-- | sizes           | If not null, it must point to an array of sizes of     |
-- |                 | regions to flush in respective allocations. Null means |
-- |                 | @VK_WHOLE_SIZE@ for all allocations.                   |
-- +-----------------+--------------------------------------------------------+
--
-- This function returns the @VkResult@ from @vkFlushMappedMemoryRanges@ if
-- it is called, otherwise @VK_SUCCESS@.
flushAllocations :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaFlushAllocations" "allocator"
                    Allocator
                 -> -- No documentation found for Nested "vmaFlushAllocations" "allocations"
                    ("allocations" ::: Vector Allocation)
                 -> -- No documentation found for Nested "vmaFlushAllocations" "offsets"
                    ("offsets" ::: Vector DeviceSize)
                 -> -- No documentation found for Nested "vmaFlushAllocations" "sizes"
                    ("sizes" ::: Vector DeviceSize)
                 -> io ()
flushAllocations :: Allocator
-> ("allocations" ::: Vector Allocation)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> io ()
flushAllocations Allocator
allocator "allocations" ::: Vector Allocation
allocations "offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets "offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ())
-> (ContT () IO () -> IO ()) -> ContT () IO () -> io ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT () IO () -> IO ()
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT () IO () -> io ()) -> ContT () IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  let allocationsLength :: Int
allocationsLength = ("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)
  let offsetsLength :: Int
offsetsLength = ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a b. (a -> b) -> a -> b
$ ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless (Int -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
offsetsLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
allocationsLength Bool -> Bool -> Bool
|| Int
offsetsLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
0) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
    IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"offsets and allocations must have the same length" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
  let sizesLength :: Int
sizesLength = ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a b. (a -> b) -> a -> b
$ ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless (Int -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
sizesLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
allocationsLength Bool -> Bool -> Bool
|| Int
sizesLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
0) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
    IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"sizes and allocations must have the same length" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
  Ptr Allocation
pAllocations <- ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO ()) -> IO ())
 -> ContT () IO (Ptr Allocation))
-> ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr Allocation -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Allocation ((("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length ("allocations" ::: Vector Allocation
allocations)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Allocation -> IO ())
-> ("allocations" ::: Vector Allocation) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Allocation
e -> Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Allocation
pAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation) (Allocation
e)) ("allocations" ::: Vector Allocation
allocations)
  Ptr ("lostAllocationCount" ::: Word64)
offsets' <- if ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Bool
forall a. Vector a -> Bool
Data.Vector.null ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets)
    then Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr ("lostAllocationCount" ::: Word64)
forall a. Ptr a
nullPtr
    else do
      Ptr ("lostAllocationCount" ::: Word64)
pOffsets <- ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @DeviceSize (((("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
      IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> ("lostAllocationCount" ::: Word64) -> IO ())
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i "lostAllocationCount" ::: Word64
e -> Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr ("lostAllocationCount" ::: Word64)
pOffsets Ptr ("lostAllocationCount" ::: Word64)
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr DeviceSize) ("lostAllocationCount" ::: Word64
e)) (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets))
      Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr ("lostAllocationCount" ::: Word64)
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
pOffsets
  Ptr ("lostAllocationCount" ::: Word64)
sizes' <- if ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Bool
forall a. Vector a -> Bool
Data.Vector.null ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes)
    then Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr ("lostAllocationCount" ::: Word64)
forall a. Ptr a
nullPtr
    else do
      Ptr ("lostAllocationCount" ::: Word64)
pSizes <- ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @DeviceSize (((("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
      IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> ("lostAllocationCount" ::: Word64) -> IO ())
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i "lostAllocationCount" ::: Word64
e -> Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr ("lostAllocationCount" ::: Word64)
pSizes Ptr ("lostAllocationCount" ::: Word64)
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr DeviceSize) ("lostAllocationCount" ::: Word64
e)) (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes))
      Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr ("lostAllocationCount" ::: Word64)
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
pSizes
  Result
r <- IO Result -> ContT () IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT () IO Result)
-> IO Result -> ContT () IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaFlushAllocations" ((Allocator
-> ("memoryTypeIndex" ::: Word32)
-> Ptr Allocation
-> Ptr ("lostAllocationCount" ::: Word64)
-> Ptr ("lostAllocationCount" ::: Word64)
-> IO Result
ffiVmaFlushAllocations) (Allocator
allocator) ((Int -> "memoryTypeIndex" ::: Word32
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
allocationsLength :: Word32)) (Ptr Allocation
pAllocations) Ptr ("lostAllocationCount" ::: Word64)
offsets' Ptr ("lostAllocationCount" ::: Word64)
sizes')
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaInvalidateAllocations" ffiVmaInvalidateAllocations
  :: Allocator -> Word32 -> Ptr Allocation -> Ptr DeviceSize -> Ptr DeviceSize -> IO Result

-- | Invalidates memory of given set of allocations.
--
-- Calls @vkInvalidateMappedMemoryRanges()@ for memory associated with
-- given ranges of given allocations. For more information, see
-- documentation of 'invalidateAllocation'.
--
-- __Parameters__
--
-- +-----------------+--------------------------------------------------------+
-- | allocator       |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | allocationCount |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | allocations     |                                                        |
-- +-----------------+--------------------------------------------------------+
-- | offsets         | If not null, it must point to an array of offsets of   |
-- |                 | regions to flush, relative to the beginning of         |
-- |                 | respective allocations. Null means all ofsets are      |
-- |                 | zero.                                                  |
-- +-----------------+--------------------------------------------------------+
-- | sizes           | If not null, it must point to an array of sizes of     |
-- |                 | regions to flush in respective allocations. Null means |
-- |                 | @VK_WHOLE_SIZE@ for all allocations.                   |
-- +-----------------+--------------------------------------------------------+
--
-- This function returns the @VkResult@ from
-- @vkInvalidateMappedMemoryRanges@ if it is called, otherwise
-- @VK_SUCCESS@.
invalidateAllocations :: forall io
                       . (MonadIO io)
                      => -- No documentation found for Nested "vmaInvalidateAllocations" "allocator"
                         Allocator
                      -> -- No documentation found for Nested "vmaInvalidateAllocations" "allocations"
                         ("allocations" ::: Vector Allocation)
                      -> -- No documentation found for Nested "vmaInvalidateAllocations" "offsets"
                         ("offsets" ::: Vector DeviceSize)
                      -> -- No documentation found for Nested "vmaInvalidateAllocations" "sizes"
                         ("sizes" ::: Vector DeviceSize)
                      -> io ()
invalidateAllocations :: Allocator
-> ("allocations" ::: Vector Allocation)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> io ()
invalidateAllocations Allocator
allocator "allocations" ::: Vector Allocation
allocations "offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets "offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ())
-> (ContT () IO () -> IO ()) -> ContT () IO () -> io ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT () IO () -> IO ()
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT () IO () -> io ()) -> ContT () IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  let allocationsLength :: Int
allocationsLength = ("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)
  let offsetsLength :: Int
offsetsLength = ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a b. (a -> b) -> a -> b
$ ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless (Int -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
offsetsLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
allocationsLength Bool -> Bool -> Bool
|| Int
offsetsLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
0) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
    IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"offsets and allocations must have the same length" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
  let sizesLength :: Int
sizesLength = ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int)
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a b. (a -> b) -> a -> b
$ ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless (Int -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
sizesLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
allocationsLength Bool -> Bool -> Bool
|| Int
sizesLength Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
== Int
0) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
    IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"sizes and allocations must have the same length" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
  Ptr Allocation
pAllocations <- ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO ()) -> IO ())
 -> ContT () IO (Ptr Allocation))
-> ((Ptr Allocation -> IO ()) -> IO ())
-> ContT () IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr Allocation -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Allocation ((("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length ("allocations" ::: Vector Allocation
allocations)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Allocation -> IO ())
-> ("allocations" ::: Vector Allocation) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Allocation
e -> Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Allocation
pAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation) (Allocation
e)) ("allocations" ::: Vector Allocation
allocations)
  Ptr ("lostAllocationCount" ::: Word64)
offsets' <- if ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Bool
forall a. Vector a -> Bool
Data.Vector.null ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets)
    then Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr ("lostAllocationCount" ::: Word64)
forall a. Ptr a
nullPtr
    else do
      Ptr ("lostAllocationCount" ::: Word64)
pOffsets <- ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @DeviceSize (((("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
      IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> ("lostAllocationCount" ::: Word64) -> IO ())
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i "lostAllocationCount" ::: Word64
e -> Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr ("lostAllocationCount" ::: Word64)
pOffsets Ptr ("lostAllocationCount" ::: Word64)
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr DeviceSize) ("lostAllocationCount" ::: Word64
e)) (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
offsets))
      Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr ("lostAllocationCount" ::: Word64)
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
pOffsets
  Ptr ("lostAllocationCount" ::: Word64)
sizes' <- if ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Bool
forall a. Vector a -> Bool
Data.Vector.null ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes)
    then Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr ("lostAllocationCount" ::: Word64)
forall a. Ptr a
nullPtr
    else do
      Ptr ("lostAllocationCount" ::: Word64)
pSizes <- ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> ((Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ())
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr ("lostAllocationCount" ::: Word64) -> IO ()) -> IO ()
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @DeviceSize (((("offsets" ::: Vector ("lostAllocationCount" ::: Word64)) -> Int
forall a. Vector a -> Int
Data.Vector.length ("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
      IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> ("lostAllocationCount" ::: Word64) -> IO ())
-> ("offsets" ::: Vector ("lostAllocationCount" ::: Word64))
-> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i "lostAllocationCount" ::: Word64
e -> Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr ("lostAllocationCount" ::: Word64)
pSizes Ptr ("lostAllocationCount" ::: Word64)
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr DeviceSize) ("lostAllocationCount" ::: Word64
e)) (("offsets" ::: Vector ("lostAllocationCount" ::: Word64)
sizes))
      Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Ptr ("lostAllocationCount" ::: Word64)
 -> ContT () IO (Ptr ("lostAllocationCount" ::: Word64)))
-> Ptr ("lostAllocationCount" ::: Word64)
-> ContT () IO (Ptr ("lostAllocationCount" ::: Word64))
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
pSizes
  Result
r <- IO Result -> ContT () IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT () IO Result)
-> IO Result -> ContT () IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaInvalidateAllocations" ((Allocator
-> ("memoryTypeIndex" ::: Word32)
-> Ptr Allocation
-> Ptr ("lostAllocationCount" ::: Word64)
-> Ptr ("lostAllocationCount" ::: Word64)
-> IO Result
ffiVmaInvalidateAllocations) (Allocator
allocator) ((Int -> "memoryTypeIndex" ::: Word32
forall a b. (Integral a, Num b) => a -> b
fromIntegral Int
allocationsLength :: Word32)) (Ptr Allocation
pAllocations) Ptr ("lostAllocationCount" ::: Word64)
offsets' Ptr ("lostAllocationCount" ::: Word64)
sizes')
  IO () -> ContT () IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT () IO ()) -> IO () -> ContT () IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCheckCorruption" ffiVmaCheckCorruption
  :: Allocator -> Word32 -> IO Result

-- | Checks magic number in margins around all allocations in given memory
-- types (in both default and custom pools) in search for corruptions.
--
-- __Parameters__
--
-- +----------------+--------------------------------------------------------+
-- | memoryTypeBits | Bit mask, where each bit set means that a memory type  |
-- |                | with that index should be checked.                     |
-- +----------------+--------------------------------------------------------+
--
-- Corruption detection is enabled only when @VMA_DEBUG_DETECT_CORRUPTION@
-- macro is defined to nonzero, @VMA_DEBUG_MARGIN@ is defined to nonzero
-- and only for memory types that are @HOST_VISIBLE@ and @HOST_COHERENT@.
-- For more information, see /Corruption detection/.
--
-- Possible return values:
--
-- -   @VK_ERROR_FEATURE_NOT_PRESENT@ - corruption detection is not enabled
--     for any of specified memory types.
--
-- -   @VK_SUCCESS@ - corruption detection has been performed and
--     succeeded.
--
-- -   @VK_ERROR_VALIDATION_FAILED_EXT@ - corruption detection has been
--     performed and found memory corruptions around one of the
--     allocations. @VMA_ASSERT@ is also fired in that case.
--
-- -   Other value: Error returned by Vulkan, e.g. memory mapping failure.
checkCorruption :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaCheckCorruption" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaCheckCorruption" "memoryTypeBits"
                   ("memoryTypeBits" ::: Word32)
                -> io ()
checkCorruption :: Allocator -> ("memoryTypeIndex" ::: Word32) -> io ()
checkCorruption Allocator
allocator "memoryTypeIndex" ::: Word32
memoryTypeBits = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCheckCorruption" ((Allocator -> ("memoryTypeIndex" ::: Word32) -> IO Result
ffiVmaCheckCorruption) (Allocator
allocator) ("memoryTypeIndex" ::: Word32
memoryTypeBits))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDefragmentationBegin" ffiVmaDefragmentationBegin
  :: Allocator -> Ptr DefragmentationInfo2 -> Ptr DefragmentationStats -> Ptr DefragmentationContext -> IO Result

-- | Begins defragmentation process.
--
-- __Parameters__
--
-- +-----------+-----------+-----------------------------------------------+
-- |           | allocator | Allocator object.                             |
-- +-----------+-----------+-----------------------------------------------+
-- |           | pInfo     | Structure filled with parameters of           |
-- |           |           | defragmentation.                              |
-- +-----------+-----------+-----------------------------------------------+
-- | out       | pStats    | Optional. Statistics of defragmentation. You  |
-- |           |           | can pass null if you are not interested in    |
-- |           |           | this information.                             |
-- +-----------+-----------+-----------------------------------------------+
-- | out       | pContext  | Context object that must be passed to         |
-- |           |           | 'defragmentationEnd' to finish                |
-- |           |           | defragmentation.                              |
-- +-----------+-----------+-----------------------------------------------+
--
-- __Returns__
--
-- @VK_SUCCESS@ and @*pContext == null@ if defragmentation finished within
-- this function call. @VK_NOT_READY@ and @*pContext != null@ if
-- defragmentation has been started and you need to call
-- 'defragmentationEnd' to finish it. Negative value in case of error.
--
-- Use this function instead of old, deprecated 'defragment'.
--
-- Warning! Between the call to 'defragmentationBegin' and
-- 'defragmentationEnd':
--
-- -   You should not use any of allocations passed as
--     @pInfo->pAllocations@ or any allocations that belong to pools passed
--     as @pInfo->pPools@, including calling 'getAllocationInfo',
--     'touchAllocation', or access their data.
--
-- -   Some mutexes protecting internal data structures may be locked, so
--     trying to make or free any allocations, bind buffers or images, map
--     memory, or launch another simultaneous defragmentation in between
--     may cause stall (when done on another thread) or deadlock (when done
--     on the same thread), unless you are 100% sure that defragmented
--     allocations are in different pools.
--
-- -   Information returned via @pStats@ and @pInfo->pAllocationsChanged@
--     are undefined. They become valid after call to 'defragmentationEnd'.
--
-- -   If @pInfo->commandBuffer@ is not null, you must submit that command
--     buffer and make sure it finished execution before calling
--     'defragmentationEnd'.
--
-- For more information and important limitations regarding
-- defragmentation, see documentation chapter: /Defragmentation/.
defragmentationBegin :: forall io
                      . (MonadIO io)
                     => -- No documentation found for Nested "vmaDefragmentationBegin" "allocator"
                        Allocator
                     -> -- No documentation found for Nested "vmaDefragmentationBegin" "pInfo"
                        DefragmentationInfo2
                     -> io (Result, DefragmentationStats, DefragmentationContext)
defragmentationBegin :: Allocator
-> DefragmentationInfo2
-> io (Result, DefragmentationStats, DefragmentationContext)
defragmentationBegin Allocator
allocator DefragmentationInfo2
info = IO (Result, DefragmentationStats, DefragmentationContext)
-> io (Result, DefragmentationStats, DefragmentationContext)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Result, DefragmentationStats, DefragmentationContext)
 -> io (Result, DefragmentationStats, DefragmentationContext))
-> (ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      (Result, DefragmentationStats, DefragmentationContext)
    -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Result, DefragmentationStats, DefragmentationContext)
-> io (Result, DefragmentationStats, DefragmentationContext)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Result, DefragmentationStats, DefragmentationContext)
  IO
  (Result, DefragmentationStats, DefragmentationContext)
-> IO (Result, DefragmentationStats, DefragmentationContext)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Result, DefragmentationStats, DefragmentationContext)
   IO
   (Result, DefragmentationStats, DefragmentationContext)
 -> io (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Result, DefragmentationStats, DefragmentationContext)
-> io (Result, DefragmentationStats, DefragmentationContext)
forall a b. (a -> b) -> a -> b
$ do
  Ptr DefragmentationInfo2
pInfo <- ((Ptr DefragmentationInfo2
  -> IO (Result, DefragmentationStats, DefragmentationContext))
 -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Ptr DefragmentationInfo2)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr DefragmentationInfo2
   -> IO (Result, DefragmentationStats, DefragmentationContext))
  -> IO (Result, DefragmentationStats, DefragmentationContext))
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      (Ptr DefragmentationInfo2))
-> ((Ptr DefragmentationInfo2
     -> IO (Result, DefragmentationStats, DefragmentationContext))
    -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Ptr DefragmentationInfo2)
forall a b. (a -> b) -> a -> b
$ DefragmentationInfo2
-> (Ptr DefragmentationInfo2
    -> IO (Result, DefragmentationStats, DefragmentationContext))
-> IO (Result, DefragmentationStats, DefragmentationContext)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (DefragmentationInfo2
info)
  Ptr DefragmentationStats
pPStats <- ((Ptr DefragmentationStats
  -> IO (Result, DefragmentationStats, DefragmentationContext))
 -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Ptr DefragmentationStats)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct DefragmentationStats =>
(Ptr DefragmentationStats -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @DefragmentationStats)
  Ptr DefragmentationContext
pPContext <- ((Ptr DefragmentationContext
  -> IO (Result, DefragmentationStats, DefragmentationContext))
 -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Ptr DefragmentationContext)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr DefragmentationContext
   -> IO (Result, DefragmentationStats, DefragmentationContext))
  -> IO (Result, DefragmentationStats, DefragmentationContext))
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      (Ptr DefragmentationContext))
-> ((Ptr DefragmentationContext
     -> IO (Result, DefragmentationStats, DefragmentationContext))
    -> IO (Result, DefragmentationStats, DefragmentationContext))
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Ptr DefragmentationContext)
forall a b. (a -> b) -> a -> b
$ IO (Ptr DefragmentationContext)
-> (Ptr DefragmentationContext -> IO ())
-> (Ptr DefragmentationContext
    -> IO (Result, DefragmentationStats, DefragmentationContext))
-> IO (Result, DefragmentationStats, DefragmentationContext)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr DefragmentationContext)
forall a. Int -> IO (Ptr a)
callocBytes @DefragmentationContext Int
8) Ptr DefragmentationContext -> IO ()
forall a. Ptr a -> IO ()
free
  Result
r <- IO Result
-> ContT
     (Result, DefragmentationStats, DefragmentationContext) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext) IO Result)
-> IO Result
-> ContT
     (Result, DefragmentationStats, DefragmentationContext) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDefragmentationBegin" ((Allocator
-> Ptr DefragmentationInfo2
-> Ptr DefragmentationStats
-> Ptr DefragmentationContext
-> IO Result
ffiVmaDefragmentationBegin) (Allocator
allocator) Ptr DefragmentationInfo2
pInfo (Ptr DefragmentationStats
pPStats) (Ptr DefragmentationContext
pPContext))
  IO ()
-> ContT
     (Result, DefragmentationStats, DefragmentationContext) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext) IO ())
-> IO ()
-> ContT
     (Result, DefragmentationStats, DefragmentationContext) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  DefragmentationStats
pStats <- IO DefragmentationStats
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     DefragmentationStats
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO DefragmentationStats
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      DefragmentationStats)
-> IO DefragmentationStats
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     DefragmentationStats
forall a b. (a -> b) -> a -> b
$ Ptr DefragmentationStats -> IO DefragmentationStats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @DefragmentationStats Ptr DefragmentationStats
pPStats
  DefragmentationContext
pContext <- IO DefragmentationContext
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     DefragmentationContext
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO DefragmentationContext
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      DefragmentationContext)
-> IO DefragmentationContext
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     DefragmentationContext
forall a b. (a -> b) -> a -> b
$ Ptr DefragmentationContext -> IO DefragmentationContext
forall a. Storable a => Ptr a -> IO a
peek @DefragmentationContext Ptr DefragmentationContext
pPContext
  (Result, DefragmentationStats, DefragmentationContext)
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Result, DefragmentationStats, DefragmentationContext)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Result, DefragmentationStats, DefragmentationContext)
 -> ContT
      (Result, DefragmentationStats, DefragmentationContext)
      IO
      (Result, DefragmentationStats, DefragmentationContext))
-> (Result, DefragmentationStats, DefragmentationContext)
-> ContT
     (Result, DefragmentationStats, DefragmentationContext)
     IO
     (Result, DefragmentationStats, DefragmentationContext)
forall a b. (a -> b) -> a -> b
$ (Result
r, DefragmentationStats
pStats, DefragmentationContext
pContext)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'defragmentationBegin' and 'defragmentationEnd'
--
-- To ensure that 'defragmentationEnd' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withDefragmentation :: forall io r . MonadIO io => Allocator -> DefragmentationInfo2 -> (io (Result, DefragmentationStats, DefragmentationContext) -> ((Result, DefragmentationStats, DefragmentationContext) -> io ()) -> r) -> r
withDefragmentation :: Allocator
-> DefragmentationInfo2
-> (io (Result, DefragmentationStats, DefragmentationContext)
    -> ((Result, DefragmentationStats, DefragmentationContext)
        -> io ())
    -> r)
-> r
withDefragmentation Allocator
allocator DefragmentationInfo2
pInfo io (Result, DefragmentationStats, DefragmentationContext)
-> ((Result, DefragmentationStats, DefragmentationContext)
    -> io ())
-> r
b =
  io (Result, DefragmentationStats, DefragmentationContext)
-> ((Result, DefragmentationStats, DefragmentationContext)
    -> io ())
-> r
b (Allocator
-> DefragmentationInfo2
-> io (Result, DefragmentationStats, DefragmentationContext)
forall (io :: * -> *).
MonadIO io =>
Allocator
-> DefragmentationInfo2
-> io (Result, DefragmentationStats, DefragmentationContext)
defragmentationBegin Allocator
allocator DefragmentationInfo2
pInfo)
    (\(Result
_, DefragmentationStats
_, DefragmentationContext
o2) -> Allocator -> DefragmentationContext -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> DefragmentationContext -> io ()
defragmentationEnd Allocator
allocator DefragmentationContext
o2)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDefragmentationEnd" ffiVmaDefragmentationEnd
  :: Allocator -> DefragmentationContext -> IO Result

-- | Ends defragmentation process.
--
-- Use this function to finish defragmentation started by
-- 'defragmentationBegin'. It is safe to pass @context == null@. The
-- function then does nothing.
defragmentationEnd :: forall io
                    . (MonadIO io)
                   => -- No documentation found for Nested "vmaDefragmentationEnd" "allocator"
                      Allocator
                   -> -- No documentation found for Nested "vmaDefragmentationEnd" "context"
                      DefragmentationContext
                   -> io ()
defragmentationEnd :: Allocator -> DefragmentationContext -> io ()
defragmentationEnd Allocator
allocator DefragmentationContext
context = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDefragmentationEnd" ((Allocator -> DefragmentationContext -> IO Result
ffiVmaDefragmentationEnd) (Allocator
allocator) (DefragmentationContext
context))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBeginDefragmentationPass" ffiVmaBeginDefragmentationPass
  :: Allocator -> DefragmentationContext -> Ptr DefragmentationPassInfo -> IO Result


beginDefragmentationPass :: forall io
                          . (MonadIO io)
                         => -- No documentation found for Nested "vmaBeginDefragmentationPass" "allocator"
                            Allocator
                         -> -- No documentation found for Nested "vmaBeginDefragmentationPass" "context"
                            DefragmentationContext
                         -> io (DefragmentationPassInfo)
beginDefragmentationPass :: Allocator -> DefragmentationContext -> io DefragmentationPassInfo
beginDefragmentationPass Allocator
allocator DefragmentationContext
context = IO DefragmentationPassInfo -> io DefragmentationPassInfo
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO DefragmentationPassInfo -> io DefragmentationPassInfo)
-> (ContT DefragmentationPassInfo IO DefragmentationPassInfo
    -> IO DefragmentationPassInfo)
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
-> io DefragmentationPassInfo
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT DefragmentationPassInfo IO DefragmentationPassInfo
-> IO DefragmentationPassInfo
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT DefragmentationPassInfo IO DefragmentationPassInfo
 -> io DefragmentationPassInfo)
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
-> io DefragmentationPassInfo
forall a b. (a -> b) -> a -> b
$ do
  Ptr DefragmentationPassInfo
pPInfo <- ((Ptr DefragmentationPassInfo -> IO DefragmentationPassInfo)
 -> IO DefragmentationPassInfo)
-> ContT DefragmentationPassInfo IO (Ptr DefragmentationPassInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct DefragmentationPassInfo =>
(Ptr DefragmentationPassInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @DefragmentationPassInfo)
  Result
r <- IO Result -> ContT DefragmentationPassInfo IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT DefragmentationPassInfo IO Result)
-> IO Result -> ContT DefragmentationPassInfo IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBeginDefragmentationPass" ((Allocator
-> DefragmentationContext
-> Ptr DefragmentationPassInfo
-> IO Result
ffiVmaBeginDefragmentationPass) (Allocator
allocator) (DefragmentationContext
context) (Ptr DefragmentationPassInfo
pPInfo))
  IO () -> ContT DefragmentationPassInfo IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT DefragmentationPassInfo IO ())
-> IO () -> ContT DefragmentationPassInfo IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  DefragmentationPassInfo
pInfo <- IO DefragmentationPassInfo
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO DefragmentationPassInfo
 -> ContT DefragmentationPassInfo IO DefragmentationPassInfo)
-> IO DefragmentationPassInfo
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
forall a b. (a -> b) -> a -> b
$ Ptr DefragmentationPassInfo -> IO DefragmentationPassInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @DefragmentationPassInfo Ptr DefragmentationPassInfo
pPInfo
  DefragmentationPassInfo
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationPassInfo
 -> ContT DefragmentationPassInfo IO DefragmentationPassInfo)
-> DefragmentationPassInfo
-> ContT DefragmentationPassInfo IO DefragmentationPassInfo
forall a b. (a -> b) -> a -> b
$ (DefragmentationPassInfo
pInfo)

-- | This function will call the supplied action between calls to
-- 'beginDefragmentationPass' and 'endDefragmentationPass'
--
-- Note that 'endDefragmentationPass' is *not* called if an exception is
-- thrown by the inner action.
useDefragmentationPass :: forall io r . MonadIO io => Allocator -> DefragmentationContext -> (DefragmentationPassInfo -> io r) -> io r
useDefragmentationPass :: Allocator
-> DefragmentationContext
-> (DefragmentationPassInfo -> io r)
-> io r
useDefragmentationPass Allocator
allocator DefragmentationContext
context DefragmentationPassInfo -> io r
a =
  do
    DefragmentationPassInfo
x <- Allocator -> DefragmentationContext -> io DefragmentationPassInfo
forall (io :: * -> *).
MonadIO io =>
Allocator -> DefragmentationContext -> io DefragmentationPassInfo
beginDefragmentationPass Allocator
allocator DefragmentationContext
context
    r
r <- DefragmentationPassInfo -> io r
a DefragmentationPassInfo
x
    (\(DefragmentationPassInfo
_) -> Allocator -> DefragmentationContext -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> DefragmentationContext -> io ()
endDefragmentationPass Allocator
allocator DefragmentationContext
context) DefragmentationPassInfo
x
    r -> io r
forall (f :: * -> *) a. Applicative f => a -> f a
pure r
r


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaEndDefragmentationPass" ffiVmaEndDefragmentationPass
  :: Allocator -> DefragmentationContext -> IO Result


endDefragmentationPass :: forall io
                        . (MonadIO io)
                       => -- No documentation found for Nested "vmaEndDefragmentationPass" "allocator"
                          Allocator
                       -> -- No documentation found for Nested "vmaEndDefragmentationPass" "context"
                          DefragmentationContext
                       -> io ()
endDefragmentationPass :: Allocator -> DefragmentationContext -> io ()
endDefragmentationPass Allocator
allocator DefragmentationContext
context = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaEndDefragmentationPass" ((Allocator -> DefragmentationContext -> IO Result
ffiVmaEndDefragmentationPass) (Allocator
allocator) (DefragmentationContext
context))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDefragment" ffiVmaDefragment
  :: Allocator -> Ptr Allocation -> CSize -> Ptr Bool32 -> Ptr DefragmentationInfo -> Ptr DefragmentationStats -> IO Result

-- | Deprecated. Compacts memory by moving allocations.
--
-- __Parameters__
--
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | pAllocations          | Array of allocations that can be moved during |
-- |           |                       | this compation.                               |
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | allocationCount       | Number of elements in pAllocations and        |
-- |           |                       | pAllocationsChanged arrays.                   |
-- +-----------+-----------------------+-----------------------------------------------+
-- | out       | pAllocationsChanged   | Array of boolean values that will indicate    |
-- |           |                       | whether matching allocation in pAllocations   |
-- |           |                       | array has been moved. This parameter is       |
-- |           |                       | optional. Pass null if you don\'t need this   |
-- |           |                       | information.                                  |
-- +-----------+-----------------------+-----------------------------------------------+
-- |           | pDefragmentationInfo  | Configuration parameters. Optional - pass     |
-- |           |                       | null to use default values.                   |
-- +-----------+-----------------------+-----------------------------------------------+
-- | out       | pDefragmentationStats | Statistics returned by the function. Optional |
-- |           |                       | - pass null if you don\'t need this           |
-- |           |                       | information.                                  |
-- +-----------+-----------------------+-----------------------------------------------+
--
-- __Returns__
--
-- @VK_SUCCESS@ if completed, negative error code in case of error.
--
-- /Deprecated/
--
-- This is a part of the old interface. It is recommended to use structure
-- 'DefragmentationInfo2' and function 'defragmentationBegin' instead.
--
-- This function works by moving allocations to different places (different
-- @VkDeviceMemory@ objects and\/or different offsets) in order to optimize
-- memory usage. Only allocations that are in @pAllocations@ array can be
-- moved. All other allocations are considered nonmovable in this call.
-- Basic rules:
--
-- -   Only allocations made in memory types that have
--     @VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT@ and
--     @VK_MEMORY_PROPERTY_HOST_COHERENT_BIT@ flags can be compacted. You
--     may pass other allocations but it makes no sense - these will never
--     be moved.
--
-- -   Custom pools created with 'POOL_CREATE_LINEAR_ALGORITHM_BIT' or
--     'POOL_CREATE_BUDDY_ALGORITHM_BIT' flag are not defragmented.
--     Allocations passed to this function that come from such pools are
--     ignored.
--
-- -   Allocations created with 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT' or
--     created as dedicated allocations for any other reason are also
--     ignored.
--
-- -   Both allocations made with or without 'ALLOCATION_CREATE_MAPPED_BIT'
--     flag can be compacted. If not persistently mapped, memory will be
--     mapped temporarily inside this function if needed.
--
-- -   You must not pass same 'Allocation' object multiple times in
--     @pAllocations@ array.
--
-- The function also frees empty @VkDeviceMemory@ blocks.
--
-- Warning: This function may be time-consuming, so you shouldn\'t call it
-- too often (like after every resource creation\/destruction). You can
-- call it on special occasions (like when reloading a game level or when
-- you just destroyed a lot of objects). Calling it every frame may be OK,
-- but you should measure that on your platform.
--
-- For more information, see /Defragmentation/ chapter.
defragment :: forall io
            . (MonadIO io)
           => -- No documentation found for Nested "vmaDefragment" "allocator"
              Allocator
           -> -- No documentation found for Nested "vmaDefragment" "pAllocations"
              ("allocations" ::: Vector Allocation)
           -> -- No documentation found for Nested "vmaDefragment" "pDefragmentationInfo"
              ("defragmentationInfo" ::: Maybe DefragmentationInfo)
           -> io (("allocationsChanged" ::: Vector Bool), DefragmentationStats)
defragment :: Allocator
-> ("allocations" ::: Vector Allocation)
-> ("defragmentationInfo" ::: Maybe DefragmentationInfo)
-> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
defragment Allocator
allocator "allocations" ::: Vector Allocation
allocations "defragmentationInfo" ::: Maybe DefragmentationInfo
defragmentationInfo = IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
 -> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> (ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
  IO
  ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
   IO
   ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
 -> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> io ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall a b. (a -> b) -> a -> b
$ do
  Ptr Allocation
pPAllocations <- ((Ptr Allocation
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation
   -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      (Ptr Allocation))
-> ((Ptr Allocation
     -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ Int
-> (Ptr Allocation
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Allocation ((("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length ("allocations" ::: Vector Allocation
allocations)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
  IO ()
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ())
-> IO ()
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Allocation -> IO ())
-> ("allocations" ::: Vector Allocation) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Allocation
e -> Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Allocation
pPAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation) (Allocation
e)) ("allocations" ::: Vector Allocation
allocations)
  Ptr Bool32
pPAllocationsChanged <- ((Ptr Bool32
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr Bool32)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Bool32
   -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      (Ptr Bool32))
-> ((Ptr Bool32
     -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr Bool32)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Bool32)
-> (Ptr Bool32 -> IO ())
-> (Ptr Bool32
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Bool32)
forall a. Int -> IO (Ptr a)
callocBytes @Bool32 ((CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral (("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)) :: CSize))) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
4)) Ptr Bool32 -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr DefragmentationInfo
pDefragmentationInfo <- case ("defragmentationInfo" ::: Maybe DefragmentationInfo
defragmentationInfo) of
    "defragmentationInfo" ::: Maybe DefragmentationInfo
Nothing -> Ptr DefragmentationInfo
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr DefragmentationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr DefragmentationInfo
forall a. Ptr a
nullPtr
    Just DefragmentationInfo
j -> ((Ptr DefragmentationInfo
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr DefragmentationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr DefragmentationInfo
   -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      (Ptr DefragmentationInfo))
-> ((Ptr DefragmentationInfo
     -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr DefragmentationInfo)
forall a b. (a -> b) -> a -> b
$ DefragmentationInfo
-> (Ptr DefragmentationInfo
    -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (DefragmentationInfo
j)
  Ptr DefragmentationStats
pPDefragmentationStats <- ((Ptr DefragmentationStats
  -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
 -> IO ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     (Ptr DefragmentationStats)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct DefragmentationStats =>
(Ptr DefragmentationStats -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @DefragmentationStats)
  Result
r <- IO Result
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      Result)
-> IO Result
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDefragment" ((Allocator
-> Ptr Allocation
-> CSize
-> Ptr Bool32
-> Ptr DefragmentationInfo
-> Ptr DefragmentationStats
-> IO Result
ffiVmaDefragment) (Allocator
allocator) (Ptr Allocation
pPAllocations) ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral (("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)) :: CSize)) (Ptr Bool32
pPAllocationsChanged) Ptr DefragmentationInfo
pDefragmentationInfo (Ptr DefragmentationStats
pPDefragmentationStats))
  IO ()
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ()
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ())
-> IO ()
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  "allocationsChanged" ::: Vector Bool
pAllocationsChanged <- IO ("allocationsChanged" ::: Vector Bool)
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool)
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO ("allocationsChanged" ::: Vector Bool)
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      ("allocationsChanged" ::: Vector Bool))
-> IO ("allocationsChanged" ::: Vector Bool)
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool)
forall a b. (a -> b) -> a -> b
$ Int
-> (Int -> IO Bool) -> IO ("allocationsChanged" ::: Vector Bool)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (CSize -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral ((Int -> CSize
forall a b. (Integral a, Num b) => a -> b
fromIntegral (("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)) :: CSize))) (\Int
i -> do
    Bool32
pAllocationsChangedElem <- Ptr Bool32 -> IO Bool32
forall a. Storable a => Ptr a -> IO a
peek @Bool32 ((Ptr Bool32
pPAllocationsChanged Ptr Bool32 -> Int -> Ptr Bool32
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
4 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Bool32))
    Bool -> IO Bool
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Bool -> IO Bool) -> Bool -> IO Bool
forall a b. (a -> b) -> a -> b
$ Bool32 -> Bool
bool32ToBool Bool32
pAllocationsChangedElem)
  DefragmentationStats
pDefragmentationStats <- IO DefragmentationStats
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     DefragmentationStats
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO DefragmentationStats
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      DefragmentationStats)
-> IO DefragmentationStats
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     DefragmentationStats
forall a b. (a -> b) -> a -> b
$ Ptr DefragmentationStats -> IO DefragmentationStats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @DefragmentationStats Ptr DefragmentationStats
pPDefragmentationStats
  ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (("allocationsChanged" ::: Vector Bool, DefragmentationStats)
 -> ContT
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
      IO
      ("allocationsChanged" ::: Vector Bool, DefragmentationStats))
-> ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
-> ContT
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
     IO
     ("allocationsChanged" ::: Vector Bool, DefragmentationStats)
forall a b. (a -> b) -> a -> b
$ ("allocationsChanged" ::: Vector Bool
pAllocationsChanged, DefragmentationStats
pDefragmentationStats)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBindBufferMemory" ffiVmaBindBufferMemory
  :: Allocator -> Allocation -> Buffer -> IO Result

-- | Binds buffer to allocation.
--
-- Binds specified buffer to region of memory represented by specified
-- allocation. Gets @VkDeviceMemory@ handle and offset from the allocation.
-- If you want to create a buffer, allocate memory for it and bind them
-- together separately, you should use this function for binding instead of
-- standard @vkBindBufferMemory()@, because it ensures proper
-- synchronization so that when a @VkDeviceMemory@ object is used by
-- multiple allocations, calls to @vkBind*Memory()@ or @vkMapMemory()@
-- won\'t happen from multiple threads simultaneously (which is illegal in
-- Vulkan).
--
-- It is recommended to use function 'createBuffer' instead of this one.
bindBufferMemory :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaBindBufferMemory" "allocator"
                    Allocator
                 -> -- No documentation found for Nested "vmaBindBufferMemory" "allocation"
                    Allocation
                 -> -- No documentation found for Nested "vmaBindBufferMemory" "buffer"
                    Buffer
                 -> io ()
bindBufferMemory :: Allocator -> Allocation -> Buffer -> io ()
bindBufferMemory Allocator
allocator Allocation
allocation Buffer
buffer = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBindBufferMemory" ((Allocator -> Allocation -> Buffer -> IO Result
ffiVmaBindBufferMemory) (Allocator
allocator) (Allocation
allocation) (Buffer
buffer))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBindBufferMemory2" ffiVmaBindBufferMemory2
  :: Allocator -> Allocation -> DeviceSize -> Buffer -> Ptr () -> IO Result

-- | Binds buffer to allocation with additional parameters.
--
-- __Parameters__
--
-- +-----------------------+--------------------------------------------------------+
-- | allocationLocalOffset | Additional offset to be added while binding, relative  |
-- |                       | to the beginning of the @allocation@. Normally it      |
-- |                       | should be 0.                                           |
-- +-----------------------+--------------------------------------------------------+
-- | pNext                 | A chain of structures to be attached to                |
-- |                       | @VkBindBufferMemoryInfoKHR@ structure used internally. |
-- |                       | Normally it should be null.                            |
-- +-----------------------+--------------------------------------------------------+
--
-- This function is similar to 'bindBufferMemory', but it provides
-- additional parameters.
--
-- If @pNext@ is not null, 'Allocator' object must have been created with
-- 'ALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT' flag or with
-- /VmaAllocatorCreateInfo::vulkanApiVersion/ @>= VK_API_VERSION_1_1@.
-- Otherwise the call fails.
bindBufferMemory2 :: forall io
                   . (MonadIO io)
                  => -- No documentation found for Nested "vmaBindBufferMemory2" "allocator"
                     Allocator
                  -> -- No documentation found for Nested "vmaBindBufferMemory2" "allocation"
                     Allocation
                  -> -- No documentation found for Nested "vmaBindBufferMemory2" "allocationLocalOffset"
                     ("allocationLocalOffset" ::: DeviceSize)
                  -> -- No documentation found for Nested "vmaBindBufferMemory2" "buffer"
                     Buffer
                  -> -- No documentation found for Nested "vmaBindBufferMemory2" "pNext"
                     ("next" ::: Ptr ())
                  -> io ()
bindBufferMemory2 :: Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> Buffer
-> ("userData" ::: Ptr ())
-> io ()
bindBufferMemory2 Allocator
allocator Allocation
allocation "lostAllocationCount" ::: Word64
allocationLocalOffset Buffer
buffer "userData" ::: Ptr ()
next = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBindBufferMemory2" ((Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> Buffer
-> ("userData" ::: Ptr ())
-> IO Result
ffiVmaBindBufferMemory2) (Allocator
allocator) (Allocation
allocation) ("lostAllocationCount" ::: Word64
allocationLocalOffset) (Buffer
buffer) ("userData" ::: Ptr ()
next))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBindImageMemory" ffiVmaBindImageMemory
  :: Allocator -> Allocation -> Image -> IO Result

-- | Binds image to allocation.
--
-- Binds specified image to region of memory represented by specified
-- allocation. Gets @VkDeviceMemory@ handle and offset from the allocation.
-- If you want to create an image, allocate memory for it and bind them
-- together separately, you should use this function for binding instead of
-- standard @vkBindImageMemory()@, because it ensures proper
-- synchronization so that when a @VkDeviceMemory@ object is used by
-- multiple allocations, calls to @vkBind*Memory()@ or @vkMapMemory()@
-- won\'t happen from multiple threads simultaneously (which is illegal in
-- Vulkan).
--
-- It is recommended to use function 'createImage' instead of this one.
bindImageMemory :: forall io
                 . (MonadIO io)
                => -- No documentation found for Nested "vmaBindImageMemory" "allocator"
                   Allocator
                -> -- No documentation found for Nested "vmaBindImageMemory" "allocation"
                   Allocation
                -> -- No documentation found for Nested "vmaBindImageMemory" "image"
                   Image
                -> io ()
bindImageMemory :: Allocator -> Allocation -> Image -> io ()
bindImageMemory Allocator
allocator Allocation
allocation Image
image = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBindImageMemory" ((Allocator -> Allocation -> Image -> IO Result
ffiVmaBindImageMemory) (Allocator
allocator) (Allocation
allocation) (Image
image))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaBindImageMemory2" ffiVmaBindImageMemory2
  :: Allocator -> Allocation -> DeviceSize -> Image -> Ptr () -> IO Result

-- | Binds image to allocation with additional parameters.
--
-- __Parameters__
--
-- +-----------------------+--------------------------------------------------------+
-- | allocationLocalOffset | Additional offset to be added while binding, relative  |
-- |                       | to the beginning of the @allocation@. Normally it      |
-- |                       | should be 0.                                           |
-- +-----------------------+--------------------------------------------------------+
-- | pNext                 | A chain of structures to be attached to                |
-- |                       | @VkBindImageMemoryInfoKHR@ structure used internally.  |
-- |                       | Normally it should be null.                            |
-- +-----------------------+--------------------------------------------------------+
--
-- This function is similar to 'bindImageMemory', but it provides
-- additional parameters.
--
-- If @pNext@ is not null, 'Allocator' object must have been created with
-- 'ALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT' flag or with
-- /VmaAllocatorCreateInfo::vulkanApiVersion/ @>= VK_API_VERSION_1_1@.
-- Otherwise the call fails.
bindImageMemory2 :: forall io
                  . (MonadIO io)
                 => -- No documentation found for Nested "vmaBindImageMemory2" "allocator"
                    Allocator
                 -> -- No documentation found for Nested "vmaBindImageMemory2" "allocation"
                    Allocation
                 -> -- No documentation found for Nested "vmaBindImageMemory2" "allocationLocalOffset"
                    ("allocationLocalOffset" ::: DeviceSize)
                 -> -- No documentation found for Nested "vmaBindImageMemory2" "image"
                    Image
                 -> -- No documentation found for Nested "vmaBindImageMemory2" "pNext"
                    ("next" ::: Ptr ())
                 -> io ()
bindImageMemory2 :: Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> Image
-> ("userData" ::: Ptr ())
-> io ()
bindImageMemory2 Allocator
allocator Allocation
allocation "lostAllocationCount" ::: Word64
allocationLocalOffset Image
image "userData" ::: Ptr ()
next = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  Result
r <- String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaBindImageMemory2" ((Allocator
-> Allocation
-> ("lostAllocationCount" ::: Word64)
-> Image
-> ("userData" ::: Ptr ())
-> IO Result
ffiVmaBindImageMemory2) (Allocator
allocator) (Allocation
allocation) ("lostAllocationCount" ::: Word64
allocationLocalOffset) (Image
image) ("userData" ::: Ptr ()
next))
  Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreateBuffer" ffiVmaCreateBuffer
  :: Allocator -> Ptr (SomeStruct BufferCreateInfo) -> Ptr AllocationCreateInfo -> Ptr Buffer -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | __Parameters__
--
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pBuffer         | Buffer that was created.                      |
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocation     | Allocation that was created.                  |
-- +-----------+-----------------+-----------------------------------------------+
-- | out       | pAllocationInfo | Optional. Information about allocated memory. |
-- |           |                 | It can be later fetched using function        |
-- |           |                 | 'getAllocationInfo'.                          |
-- +-----------+-----------------+-----------------------------------------------+
--
-- This function automatically:
--
-- 1.  Creates buffer.
--
-- 2.  Allocates appropriate memory for it.
--
-- 3.  Binds the buffer with the memory.
--
-- If any of these operations fail, buffer and allocation are not created,
-- returned value is negative error code, *pBuffer and *pAllocation are
-- null.
--
-- If the function succeeded, you must destroy both buffer and allocation
-- when you no longer need them using either convenience function
-- 'destroyBuffer' or separately, using @vkDestroyBuffer()@ and
-- 'freeMemory'.
--
-- If 'ALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT' flag was used,
-- VK_KHR_dedicated_allocation extension is used internally to query driver
-- whether it requires or prefers the new buffer to have dedicated
-- allocation. If yes, and if dedicated allocation is possible
-- (/VmaAllocationCreateInfo::pool/ is null and
-- 'ALLOCATION_CREATE_NEVER_ALLOCATE_BIT' is not used), it creates
-- dedicated allocation for this buffer, just like when using
-- 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT'.
--
-- Note
--
-- This function creates a new @VkBuffer@. Sub-allocation of parts of one
-- large buffer, although recommended as a good practice, is out of scope
-- of this library and could be implemented by the user as a higher-level
-- logic on top of VMA.
createBuffer :: forall a io
              . (Extendss BufferCreateInfo a, PokeChain a, MonadIO io)
             => -- No documentation found for Nested "vmaCreateBuffer" "allocator"
                Allocator
             -> -- No documentation found for Nested "vmaCreateBuffer" "pBufferCreateInfo"
                (BufferCreateInfo a)
             -> -- No documentation found for Nested "vmaCreateBuffer" "pAllocationCreateInfo"
                AllocationCreateInfo
             -> io (Buffer, Allocation, AllocationInfo)
createBuffer :: Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> io (Buffer, Allocation, AllocationInfo)
createBuffer Allocator
allocator BufferCreateInfo a
bufferCreateInfo AllocationCreateInfo
allocationCreateInfo = IO (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Buffer, Allocation, AllocationInfo)
 -> io (Buffer, Allocation, AllocationInfo))
-> (ContT
      (Buffer, Allocation, AllocationInfo)
      IO
      (Buffer, Allocation, AllocationInfo)
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Buffer, Allocation, AllocationInfo)
  IO
  (Buffer, Allocation, AllocationInfo)
-> IO (Buffer, Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Buffer, Allocation, AllocationInfo)
   IO
   (Buffer, Allocation, AllocationInfo)
 -> io (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (BufferCreateInfo a)
pBufferCreateInfo <- ((Ptr (BufferCreateInfo a)
  -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (BufferCreateInfo a)
   -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT
      (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a)))
-> ((Ptr (BufferCreateInfo a)
     -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a))
forall a b. (a -> b) -> a -> b
$ BufferCreateInfo a
-> (Ptr (BufferCreateInfo a)
    -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (BufferCreateInfo a
bufferCreateInfo)
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo
  -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo
   -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT
      (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo
     -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo
    -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr Buffer
pPBuffer <- ((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer))
-> ((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Buffer)
-> (Ptr Buffer -> IO ())
-> (Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Buffer)
forall a. Int -> IO (Ptr a)
callocBytes @Buffer Int
8) Ptr Buffer -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Buffer, Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Buffer, Allocation, AllocationInfo) IO Result)
-> IO Result
-> ContT (Buffer, Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreateBuffer" ((Allocator
-> Ptr (SomeStruct BufferCreateInfo)
-> Ptr AllocationCreateInfo
-> Ptr Buffer
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaCreateBuffer) (Allocator
allocator) (Ptr (BufferCreateInfo a) -> Ptr (SomeStruct BufferCreateInfo)
forall (a :: [*] -> *) (es :: [*]).
Ptr (a es) -> Ptr (SomeStruct a)
forgetExtensions Ptr (BufferCreateInfo a)
pBufferCreateInfo) Ptr AllocationCreateInfo
pAllocationCreateInfo (Ptr Buffer
pPBuffer) (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Buffer
pBuffer <- IO Buffer -> ContT (Buffer, Allocation, AllocationInfo) IO Buffer
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Buffer -> ContT (Buffer, Allocation, AllocationInfo) IO Buffer)
-> IO Buffer
-> ContT (Buffer, Allocation, AllocationInfo) IO Buffer
forall a b. (a -> b) -> a -> b
$ Ptr Buffer -> IO Buffer
forall a. Storable a => Ptr a -> IO a
peek @Buffer Ptr Buffer
pPBuffer
  Allocation
pAllocation <- IO Allocation
-> ContT (Buffer, Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation
 -> ContT (Buffer, Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Buffer, Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Buffer, Allocation, AllocationInfo)
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Buffer, Allocation, AllocationInfo)
 -> ContT
      (Buffer, Allocation, AllocationInfo)
      IO
      (Buffer, Allocation, AllocationInfo))
-> (Buffer, Allocation, AllocationInfo)
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Buffer
pBuffer, Allocation
pAllocation, AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'createBuffer' and 'destroyBuffer'
--
-- To ensure that 'destroyBuffer' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withBuffer :: forall a io r . (Extendss BufferCreateInfo a, PokeChain a, MonadIO io) => Allocator -> BufferCreateInfo a -> AllocationCreateInfo -> (io (Buffer, Allocation, AllocationInfo) -> ((Buffer, Allocation, AllocationInfo) -> io ()) -> r) -> r
withBuffer :: Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> (io (Buffer, Allocation, AllocationInfo)
    -> ((Buffer, Allocation, AllocationInfo) -> io ()) -> r)
-> r
withBuffer Allocator
allocator BufferCreateInfo a
pBufferCreateInfo AllocationCreateInfo
pAllocationCreateInfo io (Buffer, Allocation, AllocationInfo)
-> ((Buffer, Allocation, AllocationInfo) -> io ()) -> r
b =
  io (Buffer, Allocation, AllocationInfo)
-> ((Buffer, Allocation, AllocationInfo) -> io ()) -> r
b (Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> io (Buffer, Allocation, AllocationInfo)
forall (a :: [*]) (io :: * -> *).
(Extendss BufferCreateInfo a, PokeChain a, MonadIO io) =>
Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> io (Buffer, Allocation, AllocationInfo)
createBuffer Allocator
allocator BufferCreateInfo a
pBufferCreateInfo AllocationCreateInfo
pAllocationCreateInfo)
    (\(Buffer
o0, Allocation
o1, AllocationInfo
_) -> Allocator -> Buffer -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Buffer -> Allocation -> io ()
destroyBuffer Allocator
allocator Buffer
o0 Allocation
o1)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreateBufferWithAlignment" ffiVmaCreateBufferWithAlignment
  :: Allocator -> Ptr (SomeStruct BufferCreateInfo) -> Ptr AllocationCreateInfo -> DeviceSize -> Ptr Buffer -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | Creates a buffer with additional minimum alignment.
--
-- Similar to 'createBuffer' but provides additional parameter
-- @minAlignment@ which allows to specify custom, minimum alignment to be
-- used when placing the buffer inside a larger memory block, which may be
-- needed e.g. for interop with OpenGL.
createBufferWithAlignment :: forall a io
                           . (Extendss BufferCreateInfo a, PokeChain a, MonadIO io)
                          => -- No documentation found for Nested "vmaCreateBufferWithAlignment" "allocator"
                             Allocator
                          -> -- No documentation found for Nested "vmaCreateBufferWithAlignment" "pBufferCreateInfo"
                             (BufferCreateInfo a)
                          -> -- No documentation found for Nested "vmaCreateBufferWithAlignment" "pAllocationCreateInfo"
                             AllocationCreateInfo
                          -> -- No documentation found for Nested "vmaCreateBufferWithAlignment" "minAlignment"
                             ("minAlignment" ::: DeviceSize)
                          -> io (Buffer, Allocation, AllocationInfo)
createBufferWithAlignment :: Allocator
-> BufferCreateInfo a
-> AllocationCreateInfo
-> ("lostAllocationCount" ::: Word64)
-> io (Buffer, Allocation, AllocationInfo)
createBufferWithAlignment Allocator
allocator BufferCreateInfo a
bufferCreateInfo AllocationCreateInfo
allocationCreateInfo "lostAllocationCount" ::: Word64
minAlignment = IO (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Buffer, Allocation, AllocationInfo)
 -> io (Buffer, Allocation, AllocationInfo))
-> (ContT
      (Buffer, Allocation, AllocationInfo)
      IO
      (Buffer, Allocation, AllocationInfo)
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Buffer, Allocation, AllocationInfo)
  IO
  (Buffer, Allocation, AllocationInfo)
-> IO (Buffer, Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Buffer, Allocation, AllocationInfo)
   IO
   (Buffer, Allocation, AllocationInfo)
 -> io (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
-> io (Buffer, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (BufferCreateInfo a)
pBufferCreateInfo <- ((Ptr (BufferCreateInfo a)
  -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (BufferCreateInfo a)
   -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT
      (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a)))
-> ((Ptr (BufferCreateInfo a)
     -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr (BufferCreateInfo a))
forall a b. (a -> b) -> a -> b
$ BufferCreateInfo a
-> (Ptr (BufferCreateInfo a)
    -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (BufferCreateInfo a
bufferCreateInfo)
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo
  -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo
   -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT
      (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo
     -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo
    -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr Buffer
pPBuffer <- ((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer))
-> ((Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Buffer)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Buffer)
-> (Ptr Buffer -> IO ())
-> (Ptr Buffer -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Buffer)
forall a. Int -> IO (Ptr a)
callocBytes @Buffer Int
8) Ptr Buffer -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
  -> IO (Buffer, Allocation, AllocationInfo))
 -> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
    -> IO (Buffer, Allocation, AllocationInfo))
-> ContT (Buffer, Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Buffer, Allocation, AllocationInfo))
-> IO (Buffer, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Buffer, Allocation, AllocationInfo))
 -> IO (Buffer, Allocation, AllocationInfo))
-> ContT
     (Buffer, Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Buffer, Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Buffer, Allocation, AllocationInfo) IO Result)
-> IO Result
-> ContT (Buffer, Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreateBufferWithAlignment" ((Allocator
-> Ptr (SomeStruct BufferCreateInfo)
-> Ptr AllocationCreateInfo
-> ("lostAllocationCount" ::: Word64)
-> Ptr Buffer
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaCreateBufferWithAlignment) (Allocator
allocator) (Ptr (BufferCreateInfo a) -> Ptr (SomeStruct BufferCreateInfo)
forall (a :: [*] -> *) (es :: [*]).
Ptr (a es) -> Ptr (SomeStruct a)
forgetExtensions Ptr (BufferCreateInfo a)
pBufferCreateInfo) Ptr AllocationCreateInfo
pAllocationCreateInfo ("lostAllocationCount" ::: Word64
minAlignment) (Ptr Buffer
pPBuffer) (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Buffer, Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Buffer
pBuffer <- IO Buffer -> ContT (Buffer, Allocation, AllocationInfo) IO Buffer
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Buffer -> ContT (Buffer, Allocation, AllocationInfo) IO Buffer)
-> IO Buffer
-> ContT (Buffer, Allocation, AllocationInfo) IO Buffer
forall a b. (a -> b) -> a -> b
$ Ptr Buffer -> IO Buffer
forall a. Storable a => Ptr a -> IO a
peek @Buffer Ptr Buffer
pPBuffer
  Allocation
pAllocation <- IO Allocation
-> ContT (Buffer, Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation
 -> ContT (Buffer, Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Buffer, Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Buffer, Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Buffer, Allocation, AllocationInfo)
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Buffer, Allocation, AllocationInfo)
 -> ContT
      (Buffer, Allocation, AllocationInfo)
      IO
      (Buffer, Allocation, AllocationInfo))
-> (Buffer, Allocation, AllocationInfo)
-> ContT
     (Buffer, Allocation, AllocationInfo)
     IO
     (Buffer, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Buffer
pBuffer, Allocation
pAllocation, AllocationInfo
pAllocationInfo)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDestroyBuffer" ffiVmaDestroyBuffer
  :: Allocator -> Buffer -> Allocation -> IO ()

-- | Destroys Vulkan buffer and frees allocated memory.
--
-- This is just a convenience function equivalent to:
--
-- > vkDestroyBuffer(device, buffer, allocationCallbacks);
-- > vmaFreeMemory(allocator, allocation);
--
-- It it safe to pass null as buffer and\/or allocation.
destroyBuffer :: forall io
               . (MonadIO io)
              => -- No documentation found for Nested "vmaDestroyBuffer" "allocator"
                 Allocator
              -> -- No documentation found for Nested "vmaDestroyBuffer" "buffer"
                 Buffer
              -> -- No documentation found for Nested "vmaDestroyBuffer" "allocation"
                 Allocation
              -> io ()
destroyBuffer :: Allocator -> Buffer -> Allocation -> io ()
destroyBuffer Allocator
allocator Buffer
buffer Allocation
allocation = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDestroyBuffer" ((Allocator -> Buffer -> Allocation -> IO ()
ffiVmaDestroyBuffer) (Allocator
allocator) (Buffer
buffer) (Allocation
allocation))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaCreateImage" ffiVmaCreateImage
  :: Allocator -> Ptr (SomeStruct ImageCreateInfo) -> Ptr AllocationCreateInfo -> Ptr Image -> Ptr Allocation -> Ptr AllocationInfo -> IO Result

-- | Function similar to 'createBuffer'.
createImage :: forall a io
             . (Extendss ImageCreateInfo a, PokeChain a, MonadIO io)
            => -- No documentation found for Nested "vmaCreateImage" "allocator"
               Allocator
            -> -- No documentation found for Nested "vmaCreateImage" "pImageCreateInfo"
               (ImageCreateInfo a)
            -> -- No documentation found for Nested "vmaCreateImage" "pAllocationCreateInfo"
               AllocationCreateInfo
            -> io (Image, Allocation, AllocationInfo)
createImage :: Allocator
-> ImageCreateInfo a
-> AllocationCreateInfo
-> io (Image, Allocation, AllocationInfo)
createImage Allocator
allocator ImageCreateInfo a
imageCreateInfo AllocationCreateInfo
allocationCreateInfo = IO (Image, Allocation, AllocationInfo)
-> io (Image, Allocation, AllocationInfo)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Image, Allocation, AllocationInfo)
 -> io (Image, Allocation, AllocationInfo))
-> (ContT
      (Image, Allocation, AllocationInfo)
      IO
      (Image, Allocation, AllocationInfo)
    -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo)
     IO
     (Image, Allocation, AllocationInfo)
-> io (Image, Allocation, AllocationInfo)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ContT
  (Image, Allocation, AllocationInfo)
  IO
  (Image, Allocation, AllocationInfo)
-> IO (Image, Allocation, AllocationInfo)
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT
   (Image, Allocation, AllocationInfo)
   IO
   (Image, Allocation, AllocationInfo)
 -> io (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo)
     IO
     (Image, Allocation, AllocationInfo)
-> io (Image, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ do
  Ptr (ImageCreateInfo a)
pImageCreateInfo <- ((Ptr (ImageCreateInfo a)
  -> IO (Image, Allocation, AllocationInfo))
 -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo) IO (Ptr (ImageCreateInfo a))
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr (ImageCreateInfo a)
   -> IO (Image, Allocation, AllocationInfo))
  -> IO (Image, Allocation, AllocationInfo))
 -> ContT
      (Image, Allocation, AllocationInfo) IO (Ptr (ImageCreateInfo a)))
-> ((Ptr (ImageCreateInfo a)
     -> IO (Image, Allocation, AllocationInfo))
    -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo) IO (Ptr (ImageCreateInfo a))
forall a b. (a -> b) -> a -> b
$ ImageCreateInfo a
-> (Ptr (ImageCreateInfo a)
    -> IO (Image, Allocation, AllocationInfo))
-> IO (Image, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (ImageCreateInfo a
imageCreateInfo)
  Ptr AllocationCreateInfo
pAllocationCreateInfo <- ((Ptr AllocationCreateInfo
  -> IO (Image, Allocation, AllocationInfo))
 -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCreateInfo
   -> IO (Image, Allocation, AllocationInfo))
  -> IO (Image, Allocation, AllocationInfo))
 -> ContT
      (Image, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo))
-> ((Ptr AllocationCreateInfo
     -> IO (Image, Allocation, AllocationInfo))
    -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo) IO (Ptr AllocationCreateInfo)
forall a b. (a -> b) -> a -> b
$ AllocationCreateInfo
-> (Ptr AllocationCreateInfo
    -> IO (Image, Allocation, AllocationInfo))
-> IO (Image, Allocation, AllocationInfo)
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCreateInfo
allocationCreateInfo)
  Ptr Image
pPImage <- ((Ptr Image -> IO (Image, Allocation, AllocationInfo))
 -> IO (Image, Allocation, AllocationInfo))
-> ContT (Image, Allocation, AllocationInfo) IO (Ptr Image)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Image -> IO (Image, Allocation, AllocationInfo))
  -> IO (Image, Allocation, AllocationInfo))
 -> ContT (Image, Allocation, AllocationInfo) IO (Ptr Image))
-> ((Ptr Image -> IO (Image, Allocation, AllocationInfo))
    -> IO (Image, Allocation, AllocationInfo))
-> ContT (Image, Allocation, AllocationInfo) IO (Ptr Image)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Image)
-> (Ptr Image -> IO ())
-> (Ptr Image -> IO (Image, Allocation, AllocationInfo))
-> IO (Image, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Image)
forall a. Int -> IO (Ptr a)
callocBytes @Image Int
8) Ptr Image -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr Allocation
pPAllocation <- ((Ptr Allocation -> IO (Image, Allocation, AllocationInfo))
 -> IO (Image, Allocation, AllocationInfo))
-> ContT (Image, Allocation, AllocationInfo) IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO (Image, Allocation, AllocationInfo))
  -> IO (Image, Allocation, AllocationInfo))
 -> ContT (Image, Allocation, AllocationInfo) IO (Ptr Allocation))
-> ((Ptr Allocation -> IO (Image, Allocation, AllocationInfo))
    -> IO (Image, Allocation, AllocationInfo))
-> ContT (Image, Allocation, AllocationInfo) IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ IO (Ptr Allocation)
-> (Ptr Allocation -> IO ())
-> (Ptr Allocation -> IO (Image, Allocation, AllocationInfo))
-> IO (Image, Allocation, AllocationInfo)
forall a b c. IO a -> (a -> IO b) -> (a -> IO c) -> IO c
bracket (Int -> IO (Ptr Allocation)
forall a. Int -> IO (Ptr a)
callocBytes @Allocation Int
8) Ptr Allocation -> IO ()
forall a. Ptr a -> IO ()
free
  Ptr AllocationInfo
pPAllocationInfo <- ((Ptr AllocationInfo -> IO (Image, Allocation, AllocationInfo))
 -> IO (Image, Allocation, AllocationInfo))
-> ContT
     (Image, Allocation, AllocationInfo) IO (Ptr AllocationInfo)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (forall b.
ToCStruct AllocationInfo =>
(Ptr AllocationInfo -> IO b) -> IO b
forall a b. ToCStruct a => (Ptr a -> IO b) -> IO b
withZeroCStruct @AllocationInfo)
  Result
r <- IO Result -> ContT (Image, Allocation, AllocationInfo) IO Result
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Result -> ContT (Image, Allocation, AllocationInfo) IO Result)
-> IO Result -> ContT (Image, Allocation, AllocationInfo) IO Result
forall a b. (a -> b) -> a -> b
$ String -> IO Result -> IO Result
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaCreateImage" ((Allocator
-> Ptr (SomeStruct ImageCreateInfo)
-> Ptr AllocationCreateInfo
-> Ptr Image
-> Ptr Allocation
-> Ptr AllocationInfo
-> IO Result
ffiVmaCreateImage) (Allocator
allocator) (Ptr (ImageCreateInfo a) -> Ptr (SomeStruct ImageCreateInfo)
forall (a :: [*] -> *) (es :: [*]).
Ptr (a es) -> Ptr (SomeStruct a)
forgetExtensions Ptr (ImageCreateInfo a)
pImageCreateInfo) Ptr AllocationCreateInfo
pAllocationCreateInfo (Ptr Image
pPImage) (Ptr Allocation
pPAllocation) (Ptr AllocationInfo
pPAllocationInfo))
  IO () -> ContT (Image, Allocation, AllocationInfo) IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT (Image, Allocation, AllocationInfo) IO ())
-> IO () -> ContT (Image, Allocation, AllocationInfo) IO ()
forall a b. (a -> b) -> a -> b
$ Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
when (Result
r Result -> Result -> Bool
forall a. Ord a => a -> a -> Bool
< Result
SUCCESS) (VulkanException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (Result -> VulkanException
VulkanException Result
r))
  Image
pImage <- IO Image -> ContT (Image, Allocation, AllocationInfo) IO Image
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Image -> ContT (Image, Allocation, AllocationInfo) IO Image)
-> IO Image -> ContT (Image, Allocation, AllocationInfo) IO Image
forall a b. (a -> b) -> a -> b
$ Ptr Image -> IO Image
forall a. Storable a => Ptr a -> IO a
peek @Image Ptr Image
pPImage
  Allocation
pAllocation <- IO Allocation
-> ContT (Image, Allocation, AllocationInfo) IO Allocation
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO Allocation
 -> ContT (Image, Allocation, AllocationInfo) IO Allocation)
-> IO Allocation
-> ContT (Image, Allocation, AllocationInfo) IO Allocation
forall a b. (a -> b) -> a -> b
$ Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation Ptr Allocation
pPAllocation
  AllocationInfo
pAllocationInfo <- IO AllocationInfo
-> ContT (Image, Allocation, AllocationInfo) IO AllocationInfo
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO AllocationInfo
 -> ContT (Image, Allocation, AllocationInfo) IO AllocationInfo)
-> IO AllocationInfo
-> ContT (Image, Allocation, AllocationInfo) IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationInfo Ptr AllocationInfo
pPAllocationInfo
  (Image, Allocation, AllocationInfo)
-> ContT
     (Image, Allocation, AllocationInfo)
     IO
     (Image, Allocation, AllocationInfo)
forall (f :: * -> *) a. Applicative f => a -> f a
pure ((Image, Allocation, AllocationInfo)
 -> ContT
      (Image, Allocation, AllocationInfo)
      IO
      (Image, Allocation, AllocationInfo))
-> (Image, Allocation, AllocationInfo)
-> ContT
     (Image, Allocation, AllocationInfo)
     IO
     (Image, Allocation, AllocationInfo)
forall a b. (a -> b) -> a -> b
$ (Image
pImage, Allocation
pAllocation, AllocationInfo
pAllocationInfo)

-- | A convenience wrapper to make a compatible pair of calls to
-- 'createImage' and 'destroyImage'
--
-- To ensure that 'destroyImage' is always called: pass
-- 'Control.Exception.bracket' (or the allocate function from your
-- favourite resource management library) as the last argument.
-- To just extract the pair pass '(,)' as the last argument.
--
withImage :: forall a io r . (Extendss ImageCreateInfo a, PokeChain a, MonadIO io) => Allocator -> ImageCreateInfo a -> AllocationCreateInfo -> (io (Image, Allocation, AllocationInfo) -> ((Image, Allocation, AllocationInfo) -> io ()) -> r) -> r
withImage :: Allocator
-> ImageCreateInfo a
-> AllocationCreateInfo
-> (io (Image, Allocation, AllocationInfo)
    -> ((Image, Allocation, AllocationInfo) -> io ()) -> r)
-> r
withImage Allocator
allocator ImageCreateInfo a
pImageCreateInfo AllocationCreateInfo
pAllocationCreateInfo io (Image, Allocation, AllocationInfo)
-> ((Image, Allocation, AllocationInfo) -> io ()) -> r
b =
  io (Image, Allocation, AllocationInfo)
-> ((Image, Allocation, AllocationInfo) -> io ()) -> r
b (Allocator
-> ImageCreateInfo a
-> AllocationCreateInfo
-> io (Image, Allocation, AllocationInfo)
forall (a :: [*]) (io :: * -> *).
(Extendss ImageCreateInfo a, PokeChain a, MonadIO io) =>
Allocator
-> ImageCreateInfo a
-> AllocationCreateInfo
-> io (Image, Allocation, AllocationInfo)
createImage Allocator
allocator ImageCreateInfo a
pImageCreateInfo AllocationCreateInfo
pAllocationCreateInfo)
    (\(Image
o0, Allocation
o1, AllocationInfo
_) -> Allocator -> Image -> Allocation -> io ()
forall (io :: * -> *).
MonadIO io =>
Allocator -> Image -> Allocation -> io ()
destroyImage Allocator
allocator Image
o0 Allocation
o1)


foreign import ccall
#if !defined(SAFE_FOREIGN_CALLS)
  unsafe
#endif
  "vmaDestroyImage" ffiVmaDestroyImage
  :: Allocator -> Image -> Allocation -> IO ()

-- | Destroys Vulkan image and frees allocated memory.
--
-- This is just a convenience function equivalent to:
--
-- > vkDestroyImage(device, image, allocationCallbacks);
-- > vmaFreeMemory(allocator, allocation);
--
-- It it safe to pass null as image and\/or allocation.
destroyImage :: forall io
              . (MonadIO io)
             => -- No documentation found for Nested "vmaDestroyImage" "allocator"
                Allocator
             -> -- No documentation found for Nested "vmaDestroyImage" "image"
                Image
             -> -- No documentation found for Nested "vmaDestroyImage" "allocation"
                Allocation
             -> io ()
destroyImage :: Allocator -> Image -> Allocation -> io ()
destroyImage Allocator
allocator Image
image Allocation
allocation = IO () -> io ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> io ()) -> IO () -> io ()
forall a b. (a -> b) -> a -> b
$ do
  String -> IO () -> IO ()
forall a. String -> IO a -> IO a
traceAroundEvent String
"vmaDestroyImage" ((Allocator -> Image -> Allocation -> IO ()
ffiVmaDestroyImage) (Allocator
allocator) (Image
image) (Allocation
allocation))
  () -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure (() -> IO ()) -> () -> IO ()
forall a b. (a -> b) -> a -> b
$ ()


type FN_vkAllocateMemory = Ptr Device_T -> ("pAllocateInfo" ::: Ptr (SomeStruct MemoryAllocateInfo)) -> ("pAllocator" ::: Ptr AllocationCallbacks) -> ("pMemory" ::: Ptr DeviceMemory) -> IO Result
-- No documentation found for TopLevel "PFN_vkAllocateMemory"
type PFN_vkAllocateMemory = FunPtr FN_vkAllocateMemory


type FN_vkBindBufferMemory = Ptr Device_T -> Buffer -> DeviceMemory -> ("memoryOffset" ::: DeviceSize) -> IO Result
-- No documentation found for TopLevel "PFN_vkBindBufferMemory"
type PFN_vkBindBufferMemory = FunPtr FN_vkBindBufferMemory


type FN_vkBindBufferMemory2KHR = Ptr Device_T -> ("bindInfoCount" ::: Word32) -> ("pBindInfos" ::: Ptr (SomeStruct BindBufferMemoryInfo)) -> IO Result
-- No documentation found for TopLevel "PFN_vkBindBufferMemory2KHR"
type PFN_vkBindBufferMemory2KHR = FunPtr FN_vkBindBufferMemory2KHR


type FN_vkBindImageMemory = Ptr Device_T -> Image -> DeviceMemory -> ("memoryOffset" ::: DeviceSize) -> IO Result
-- No documentation found for TopLevel "PFN_vkBindImageMemory"
type PFN_vkBindImageMemory = FunPtr FN_vkBindImageMemory


type FN_vkBindImageMemory2KHR = Ptr Device_T -> ("bindInfoCount" ::: Word32) -> ("pBindInfos" ::: Ptr (SomeStruct BindImageMemoryInfo)) -> IO Result
-- No documentation found for TopLevel "PFN_vkBindImageMemory2KHR"
type PFN_vkBindImageMemory2KHR = FunPtr FN_vkBindImageMemory2KHR


type FN_vkCmdCopyBuffer = Ptr CommandBuffer_T -> ("srcBuffer" ::: Buffer) -> ("dstBuffer" ::: Buffer) -> ("regionCount" ::: Word32) -> ("pRegions" ::: Ptr BufferCopy) -> IO ()
-- No documentation found for TopLevel "PFN_vkCmdCopyBuffer"
type PFN_vkCmdCopyBuffer = FunPtr FN_vkCmdCopyBuffer


type FN_vkCreateBuffer = Ptr Device_T -> ("pCreateInfo" ::: Ptr (SomeStruct BufferCreateInfo)) -> ("pAllocator" ::: Ptr AllocationCallbacks) -> ("pBuffer" ::: Ptr Buffer) -> IO Result
-- No documentation found for TopLevel "PFN_vkCreateBuffer"
type PFN_vkCreateBuffer = FunPtr FN_vkCreateBuffer


type FN_vkCreateImage = Ptr Device_T -> ("pCreateInfo" ::: Ptr (SomeStruct ImageCreateInfo)) -> ("pAllocator" ::: Ptr AllocationCallbacks) -> ("pImage" ::: Ptr Image) -> IO Result
-- No documentation found for TopLevel "PFN_vkCreateImage"
type PFN_vkCreateImage = FunPtr FN_vkCreateImage


type FN_vkDestroyBuffer = Ptr Device_T -> Buffer -> ("pAllocator" ::: Ptr AllocationCallbacks) -> IO ()
-- No documentation found for TopLevel "PFN_vkDestroyBuffer"
type PFN_vkDestroyBuffer = FunPtr FN_vkDestroyBuffer


type FN_vkDestroyImage = Ptr Device_T -> Image -> ("pAllocator" ::: Ptr AllocationCallbacks) -> IO ()
-- No documentation found for TopLevel "PFN_vkDestroyImage"
type PFN_vkDestroyImage = FunPtr FN_vkDestroyImage


type FN_vkFlushMappedMemoryRanges = Ptr Device_T -> ("memoryRangeCount" ::: Word32) -> ("pMemoryRanges" ::: Ptr MappedMemoryRange) -> IO Result
-- No documentation found for TopLevel "PFN_vkFlushMappedMemoryRanges"
type PFN_vkFlushMappedMemoryRanges = FunPtr FN_vkFlushMappedMemoryRanges


type FN_vkFreeMemory = Ptr Device_T -> DeviceMemory -> ("pAllocator" ::: Ptr AllocationCallbacks) -> IO ()
-- No documentation found for TopLevel "PFN_vkFreeMemory"
type PFN_vkFreeMemory = FunPtr FN_vkFreeMemory


type FN_vkGetBufferMemoryRequirements = Ptr Device_T -> Buffer -> ("pMemoryRequirements" ::: Ptr MemoryRequirements) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetBufferMemoryRequirements"
type PFN_vkGetBufferMemoryRequirements = FunPtr FN_vkGetBufferMemoryRequirements


type FN_vkGetBufferMemoryRequirements2KHR = Ptr Device_T -> ("pInfo" ::: Ptr BufferMemoryRequirementsInfo2) -> ("pMemoryRequirements" ::: Ptr (SomeStruct MemoryRequirements2)) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetBufferMemoryRequirements2KHR"
type PFN_vkGetBufferMemoryRequirements2KHR = FunPtr FN_vkGetBufferMemoryRequirements2KHR


type FN_vkGetImageMemoryRequirements = Ptr Device_T -> Image -> ("pMemoryRequirements" ::: Ptr MemoryRequirements) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetImageMemoryRequirements"
type PFN_vkGetImageMemoryRequirements = FunPtr FN_vkGetImageMemoryRequirements


type FN_vkGetImageMemoryRequirements2KHR = Ptr Device_T -> ("pInfo" ::: Ptr (SomeStruct ImageMemoryRequirementsInfo2)) -> ("pMemoryRequirements" ::: Ptr (SomeStruct MemoryRequirements2)) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetImageMemoryRequirements2KHR"
type PFN_vkGetImageMemoryRequirements2KHR = FunPtr FN_vkGetImageMemoryRequirements2KHR


type FN_vkGetPhysicalDeviceMemoryProperties = Ptr PhysicalDevice_T -> ("pMemoryProperties" ::: Ptr PhysicalDeviceMemoryProperties) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetPhysicalDeviceMemoryProperties"
type PFN_vkGetPhysicalDeviceMemoryProperties = FunPtr FN_vkGetPhysicalDeviceMemoryProperties


type FN_vkGetPhysicalDeviceMemoryProperties2KHR = Ptr PhysicalDevice_T -> ("pMemoryProperties" ::: Ptr (SomeStruct PhysicalDeviceMemoryProperties2)) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetPhysicalDeviceMemoryProperties2KHR"
type PFN_vkGetPhysicalDeviceMemoryProperties2KHR = FunPtr FN_vkGetPhysicalDeviceMemoryProperties2KHR


type FN_vkGetPhysicalDeviceProperties = Ptr PhysicalDevice_T -> ("pProperties" ::: Ptr PhysicalDeviceProperties) -> IO ()
-- No documentation found for TopLevel "PFN_vkGetPhysicalDeviceProperties"
type PFN_vkGetPhysicalDeviceProperties = FunPtr FN_vkGetPhysicalDeviceProperties


type FN_vkInvalidateMappedMemoryRanges = Ptr Device_T -> ("memoryRangeCount" ::: Word32) -> ("pMemoryRanges" ::: Ptr MappedMemoryRange) -> IO Result
-- No documentation found for TopLevel "PFN_vkInvalidateMappedMemoryRanges"
type PFN_vkInvalidateMappedMemoryRanges = FunPtr FN_vkInvalidateMappedMemoryRanges


type FN_vkMapMemory = Ptr Device_T -> DeviceMemory -> ("offset" ::: DeviceSize) -> DeviceSize -> MemoryMapFlags -> ("ppData" ::: Ptr (Ptr ())) -> IO Result
-- No documentation found for TopLevel "PFN_vkMapMemory"
type PFN_vkMapMemory = FunPtr FN_vkMapMemory


type FN_vkUnmapMemory = Ptr Device_T -> DeviceMemory -> IO ()
-- No documentation found for TopLevel "PFN_vkUnmapMemory"
type PFN_vkUnmapMemory = FunPtr FN_vkUnmapMemory


-- | VmaAllocator
--
-- Represents main object of this library initialized.
--
-- Fill structure 'AllocatorCreateInfo' and call function 'createAllocator'
-- to create it. Call function 'destroyAllocator' to destroy it.
--
-- It is recommended to create just one object of this type per @VkDevice@
-- object, right after Vulkan is initialized and keep it alive until before
-- Vulkan device is destroyed.
newtype Allocator = Allocator Word64
  deriving newtype (Allocator -> Allocator -> Bool
(Allocator -> Allocator -> Bool)
-> (Allocator -> Allocator -> Bool) -> Eq Allocator
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Allocator -> Allocator -> Bool
$c/= :: Allocator -> Allocator -> Bool
== :: Allocator -> Allocator -> Bool
$c== :: Allocator -> Allocator -> Bool
Eq, Eq Allocator
Eq Allocator
-> (Allocator -> Allocator -> Ordering)
-> (Allocator -> Allocator -> Bool)
-> (Allocator -> Allocator -> Bool)
-> (Allocator -> Allocator -> Bool)
-> (Allocator -> Allocator -> Bool)
-> (Allocator -> Allocator -> Allocator)
-> (Allocator -> Allocator -> Allocator)
-> Ord Allocator
Allocator -> Allocator -> Bool
Allocator -> Allocator -> Ordering
Allocator -> Allocator -> Allocator
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: Allocator -> Allocator -> Allocator
$cmin :: Allocator -> Allocator -> Allocator
max :: Allocator -> Allocator -> Allocator
$cmax :: Allocator -> Allocator -> Allocator
>= :: Allocator -> Allocator -> Bool
$c>= :: Allocator -> Allocator -> Bool
> :: Allocator -> Allocator -> Bool
$c> :: Allocator -> Allocator -> Bool
<= :: Allocator -> Allocator -> Bool
$c<= :: Allocator -> Allocator -> Bool
< :: Allocator -> Allocator -> Bool
$c< :: Allocator -> Allocator -> Bool
compare :: Allocator -> Allocator -> Ordering
$ccompare :: Allocator -> Allocator -> Ordering
$cp1Ord :: Eq Allocator
Ord, Ptr b -> Int -> IO Allocator
Ptr b -> Int -> Allocator -> IO ()
Ptr Allocator -> IO Allocator
Ptr Allocator -> Int -> IO Allocator
Ptr Allocator -> Int -> Allocator -> IO ()
Ptr Allocator -> Allocator -> IO ()
Allocator -> Int
(Allocator -> Int)
-> (Allocator -> Int)
-> (Ptr Allocator -> Int -> IO Allocator)
-> (Ptr Allocator -> Int -> Allocator -> IO ())
-> (forall b. Ptr b -> Int -> IO Allocator)
-> (forall b. Ptr b -> Int -> Allocator -> IO ())
-> (Ptr Allocator -> IO Allocator)
-> (Ptr Allocator -> Allocator -> IO ())
-> Storable Allocator
forall b. Ptr b -> Int -> IO Allocator
forall b. Ptr b -> Int -> Allocator -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr Allocator -> Allocator -> IO ()
$cpoke :: Ptr Allocator -> Allocator -> IO ()
peek :: Ptr Allocator -> IO Allocator
$cpeek :: Ptr Allocator -> IO Allocator
pokeByteOff :: Ptr b -> Int -> Allocator -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> Allocator -> IO ()
peekByteOff :: Ptr b -> Int -> IO Allocator
$cpeekByteOff :: forall b. Ptr b -> Int -> IO Allocator
pokeElemOff :: Ptr Allocator -> Int -> Allocator -> IO ()
$cpokeElemOff :: Ptr Allocator -> Int -> Allocator -> IO ()
peekElemOff :: Ptr Allocator -> Int -> IO Allocator
$cpeekElemOff :: Ptr Allocator -> Int -> IO Allocator
alignment :: Allocator -> Int
$calignment :: Allocator -> Int
sizeOf :: Allocator -> Int
$csizeOf :: Allocator -> Int
Storable, Allocator
Allocator -> Zero Allocator
forall a. a -> Zero a
zero :: Allocator
$czero :: Allocator
Zero)
  deriving anyclass (Eq Allocator
Zero Allocator
Eq Allocator -> Zero Allocator -> IsHandle Allocator
forall a. Eq a -> Zero a -> IsHandle a
$cp2IsHandle :: Zero Allocator
$cp1IsHandle :: Eq Allocator
IsHandle)
instance Show Allocator where
  showsPrec :: Int -> Allocator -> ShowS
showsPrec Int
p (Allocator "lostAllocationCount" ::: Word64
x) = Bool -> ShowS -> ShowS
showParen (Int
p Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
>= Int
11) (String -> ShowS
showString String
"Allocator 0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("lostAllocationCount" ::: Word64) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "lostAllocationCount" ::: Word64
x)


type FN_vmaAllocateDeviceMemoryFunction = Allocator -> ("memoryType" ::: Word32) -> DeviceMemory -> DeviceSize -> ("pUserData" ::: Ptr ()) -> IO ()
-- No documentation found for TopLevel "PFN_vmaAllocateDeviceMemoryFunction"
type PFN_vmaAllocateDeviceMemoryFunction = FunPtr FN_vmaAllocateDeviceMemoryFunction


type FN_vmaFreeDeviceMemoryFunction = Allocator -> ("memoryType" ::: Word32) -> DeviceMemory -> DeviceSize -> ("pUserData" ::: Ptr ()) -> IO ()
-- No documentation found for TopLevel "PFN_vmaFreeDeviceMemoryFunction"
type PFN_vmaFreeDeviceMemoryFunction = FunPtr FN_vmaFreeDeviceMemoryFunction


-- | VmaDeviceMemoryCallbacks
--
-- Set of callbacks that the library will call for @vkAllocateMemory@ and
-- @vkFreeMemory@.
--
-- Provided for informative purpose, e.g. to gather statistics about number
-- of allocations or total amount of memory allocated in Vulkan.
--
-- Used in /VmaAllocatorCreateInfo::pDeviceMemoryCallbacks/.
data DeviceMemoryCallbacks = DeviceMemoryCallbacks
  { -- | Optional, can be null.
    DeviceMemoryCallbacks -> PFN_vmaAllocateDeviceMemoryFunction
pfnAllocate :: PFN_vmaAllocateDeviceMemoryFunction
  , -- | Optional, can be null.
    DeviceMemoryCallbacks -> PFN_vmaAllocateDeviceMemoryFunction
pfnFree :: PFN_vmaFreeDeviceMemoryFunction
  , -- | Optional, can be null.
    DeviceMemoryCallbacks -> "userData" ::: Ptr ()
userData :: Ptr ()
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DeviceMemoryCallbacks)
#endif
deriving instance Show DeviceMemoryCallbacks

instance ToCStruct DeviceMemoryCallbacks where
  withCStruct :: DeviceMemoryCallbacks
-> (Ptr DeviceMemoryCallbacks -> IO b) -> IO b
withCStruct DeviceMemoryCallbacks
x Ptr DeviceMemoryCallbacks -> IO b
f = Int -> (Ptr DeviceMemoryCallbacks -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
24 ((Ptr DeviceMemoryCallbacks -> IO b) -> IO b)
-> (Ptr DeviceMemoryCallbacks -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DeviceMemoryCallbacks
p -> Ptr DeviceMemoryCallbacks -> DeviceMemoryCallbacks -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DeviceMemoryCallbacks
p DeviceMemoryCallbacks
x (Ptr DeviceMemoryCallbacks -> IO b
f Ptr DeviceMemoryCallbacks
p)
  pokeCStruct :: Ptr DeviceMemoryCallbacks -> DeviceMemoryCallbacks -> IO b -> IO b
pokeCStruct Ptr DeviceMemoryCallbacks
p DeviceMemoryCallbacks{"userData" ::: Ptr ()
PFN_vmaAllocateDeviceMemoryFunction
userData :: "userData" ::: Ptr ()
pfnFree :: PFN_vmaAllocateDeviceMemoryFunction
pfnAllocate :: PFN_vmaAllocateDeviceMemoryFunction
$sel:userData:DeviceMemoryCallbacks :: DeviceMemoryCallbacks -> "userData" ::: Ptr ()
$sel:pfnFree:DeviceMemoryCallbacks :: DeviceMemoryCallbacks -> PFN_vmaAllocateDeviceMemoryFunction
$sel:pfnAllocate:DeviceMemoryCallbacks :: DeviceMemoryCallbacks -> PFN_vmaAllocateDeviceMemoryFunction
..} IO b
f = do
    Ptr PFN_vmaAllocateDeviceMemoryFunction
-> PFN_vmaAllocateDeviceMemoryFunction -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks
-> Int -> Ptr PFN_vmaAllocateDeviceMemoryFunction
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr PFN_vmaAllocateDeviceMemoryFunction)) (PFN_vmaAllocateDeviceMemoryFunction
pfnAllocate)
    Ptr PFN_vmaAllocateDeviceMemoryFunction
-> PFN_vmaAllocateDeviceMemoryFunction -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks
-> Int -> Ptr PFN_vmaAllocateDeviceMemoryFunction
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr PFN_vmaFreeDeviceMemoryFunction)) (PFN_vmaAllocateDeviceMemoryFunction
pfnFree)
    Ptr ("userData" ::: Ptr ()) -> ("userData" ::: Ptr ()) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr ()))) ("userData" ::: Ptr ()
userData)
    IO b
f
  cStructSize :: Int
cStructSize = Int
24
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DeviceMemoryCallbacks -> IO b -> IO b
pokeZeroCStruct Ptr DeviceMemoryCallbacks
_ IO b
f = IO b
f

instance FromCStruct DeviceMemoryCallbacks where
  peekCStruct :: Ptr DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
peekCStruct Ptr DeviceMemoryCallbacks
p = do
    PFN_vmaAllocateDeviceMemoryFunction
pfnAllocate <- Ptr PFN_vmaAllocateDeviceMemoryFunction
-> IO PFN_vmaAllocateDeviceMemoryFunction
forall a. Storable a => Ptr a -> IO a
peek @PFN_vmaAllocateDeviceMemoryFunction ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks
-> Int -> Ptr PFN_vmaAllocateDeviceMemoryFunction
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr PFN_vmaAllocateDeviceMemoryFunction))
    PFN_vmaAllocateDeviceMemoryFunction
pfnFree <- Ptr PFN_vmaAllocateDeviceMemoryFunction
-> IO PFN_vmaAllocateDeviceMemoryFunction
forall a. Storable a => Ptr a -> IO a
peek @PFN_vmaFreeDeviceMemoryFunction ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks
-> Int -> Ptr PFN_vmaAllocateDeviceMemoryFunction
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr PFN_vmaFreeDeviceMemoryFunction))
    "userData" ::: Ptr ()
pUserData <- Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) ((Ptr DeviceMemoryCallbacks
p Ptr DeviceMemoryCallbacks -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr ())))
    DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks)
-> DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
forall a b. (a -> b) -> a -> b
$ PFN_vmaAllocateDeviceMemoryFunction
-> PFN_vmaAllocateDeviceMemoryFunction
-> ("userData" ::: Ptr ())
-> DeviceMemoryCallbacks
DeviceMemoryCallbacks
             PFN_vmaAllocateDeviceMemoryFunction
pfnAllocate PFN_vmaAllocateDeviceMemoryFunction
pfnFree "userData" ::: Ptr ()
pUserData

instance Storable DeviceMemoryCallbacks where
  sizeOf :: DeviceMemoryCallbacks -> Int
sizeOf ~DeviceMemoryCallbacks
_ = Int
24
  alignment :: DeviceMemoryCallbacks -> Int
alignment ~DeviceMemoryCallbacks
_ = Int
8
  peek :: Ptr DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
peek = Ptr DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr DeviceMemoryCallbacks -> DeviceMemoryCallbacks -> IO ()
poke Ptr DeviceMemoryCallbacks
ptr DeviceMemoryCallbacks
poked = Ptr DeviceMemoryCallbacks
-> DeviceMemoryCallbacks -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DeviceMemoryCallbacks
ptr DeviceMemoryCallbacks
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero DeviceMemoryCallbacks where
  zero :: DeviceMemoryCallbacks
zero = PFN_vmaAllocateDeviceMemoryFunction
-> PFN_vmaAllocateDeviceMemoryFunction
-> ("userData" ::: Ptr ())
-> DeviceMemoryCallbacks
DeviceMemoryCallbacks
           PFN_vmaAllocateDeviceMemoryFunction
forall a. Zero a => a
zero
           PFN_vmaAllocateDeviceMemoryFunction
forall a. Zero a => a
zero
           "userData" ::: Ptr ()
forall a. Zero a => a
zero


type AllocatorCreateFlags = AllocatorCreateFlagBits

-- | Flags for created 'Allocator'.
newtype AllocatorCreateFlagBits = AllocatorCreateFlagBits Flags
  deriving newtype (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
(AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> Eq AllocatorCreateFlagBits
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c/= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
== :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c== :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
Eq, Eq AllocatorCreateFlagBits
Eq AllocatorCreateFlagBits
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Ordering)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> Ord AllocatorCreateFlagBits
AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Ordering
AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$cmin :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
max :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$cmax :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
>= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c>= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
> :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c> :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
<= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c<= :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
< :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
$c< :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Bool
compare :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Ordering
$ccompare :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> Ordering
$cp1Ord :: Eq AllocatorCreateFlagBits
Ord, Ptr b -> Int -> IO AllocatorCreateFlagBits
Ptr b -> Int -> AllocatorCreateFlagBits -> IO ()
Ptr AllocatorCreateFlagBits -> IO AllocatorCreateFlagBits
Ptr AllocatorCreateFlagBits -> Int -> IO AllocatorCreateFlagBits
Ptr AllocatorCreateFlagBits
-> Int -> AllocatorCreateFlagBits -> IO ()
Ptr AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> IO ()
AllocatorCreateFlagBits -> Int
(AllocatorCreateFlagBits -> Int)
-> (AllocatorCreateFlagBits -> Int)
-> (Ptr AllocatorCreateFlagBits
    -> Int -> IO AllocatorCreateFlagBits)
-> (Ptr AllocatorCreateFlagBits
    -> Int -> AllocatorCreateFlagBits -> IO ())
-> (forall b. Ptr b -> Int -> IO AllocatorCreateFlagBits)
-> (forall b. Ptr b -> Int -> AllocatorCreateFlagBits -> IO ())
-> (Ptr AllocatorCreateFlagBits -> IO AllocatorCreateFlagBits)
-> (Ptr AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> IO ())
-> Storable AllocatorCreateFlagBits
forall b. Ptr b -> Int -> IO AllocatorCreateFlagBits
forall b. Ptr b -> Int -> AllocatorCreateFlagBits -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> IO ()
$cpoke :: Ptr AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> IO ()
peek :: Ptr AllocatorCreateFlagBits -> IO AllocatorCreateFlagBits
$cpeek :: Ptr AllocatorCreateFlagBits -> IO AllocatorCreateFlagBits
pokeByteOff :: Ptr b -> Int -> AllocatorCreateFlagBits -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> AllocatorCreateFlagBits -> IO ()
peekByteOff :: Ptr b -> Int -> IO AllocatorCreateFlagBits
$cpeekByteOff :: forall b. Ptr b -> Int -> IO AllocatorCreateFlagBits
pokeElemOff :: Ptr AllocatorCreateFlagBits
-> Int -> AllocatorCreateFlagBits -> IO ()
$cpokeElemOff :: Ptr AllocatorCreateFlagBits
-> Int -> AllocatorCreateFlagBits -> IO ()
peekElemOff :: Ptr AllocatorCreateFlagBits -> Int -> IO AllocatorCreateFlagBits
$cpeekElemOff :: Ptr AllocatorCreateFlagBits -> Int -> IO AllocatorCreateFlagBits
alignment :: AllocatorCreateFlagBits -> Int
$calignment :: AllocatorCreateFlagBits -> Int
sizeOf :: AllocatorCreateFlagBits -> Int
$csizeOf :: AllocatorCreateFlagBits -> Int
Storable, AllocatorCreateFlagBits
AllocatorCreateFlagBits -> Zero AllocatorCreateFlagBits
forall a. a -> Zero a
zero :: AllocatorCreateFlagBits
$czero :: AllocatorCreateFlagBits
Zero, Eq AllocatorCreateFlagBits
AllocatorCreateFlagBits
Eq AllocatorCreateFlagBits
-> (AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits
    -> AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> AllocatorCreateFlagBits
-> (Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> Bool)
-> (AllocatorCreateFlagBits -> Maybe Int)
-> (AllocatorCreateFlagBits -> Int)
-> (AllocatorCreateFlagBits -> Bool)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits)
-> (AllocatorCreateFlagBits -> Int)
-> Bits AllocatorCreateFlagBits
Int -> AllocatorCreateFlagBits
AllocatorCreateFlagBits -> Bool
AllocatorCreateFlagBits -> Int
AllocatorCreateFlagBits -> Maybe Int
AllocatorCreateFlagBits -> AllocatorCreateFlagBits
AllocatorCreateFlagBits -> Int -> Bool
AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
popCount :: AllocatorCreateFlagBits -> Int
$cpopCount :: AllocatorCreateFlagBits -> Int
rotateR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$crotateR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
rotateL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$crotateL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
unsafeShiftR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cunsafeShiftR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
shiftR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cshiftR :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
unsafeShiftL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cunsafeShiftL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
shiftL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cshiftL :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
isSigned :: AllocatorCreateFlagBits -> Bool
$cisSigned :: AllocatorCreateFlagBits -> Bool
bitSize :: AllocatorCreateFlagBits -> Int
$cbitSize :: AllocatorCreateFlagBits -> Int
bitSizeMaybe :: AllocatorCreateFlagBits -> Maybe Int
$cbitSizeMaybe :: AllocatorCreateFlagBits -> Maybe Int
testBit :: AllocatorCreateFlagBits -> Int -> Bool
$ctestBit :: AllocatorCreateFlagBits -> Int -> Bool
complementBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$ccomplementBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
clearBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cclearBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
setBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$csetBit :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
bit :: Int -> AllocatorCreateFlagBits
$cbit :: Int -> AllocatorCreateFlagBits
zeroBits :: AllocatorCreateFlagBits
$czeroBits :: AllocatorCreateFlagBits
rotate :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$crotate :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
shift :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
$cshift :: AllocatorCreateFlagBits -> Int -> AllocatorCreateFlagBits
complement :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$ccomplement :: AllocatorCreateFlagBits -> AllocatorCreateFlagBits
xor :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$cxor :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
.|. :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$c.|. :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
.&. :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$c.&. :: AllocatorCreateFlagBits
-> AllocatorCreateFlagBits -> AllocatorCreateFlagBits
$cp1Bits :: Eq AllocatorCreateFlagBits
Bits, Bits AllocatorCreateFlagBits
Bits AllocatorCreateFlagBits
-> (AllocatorCreateFlagBits -> Int)
-> (AllocatorCreateFlagBits -> Int)
-> (AllocatorCreateFlagBits -> Int)
-> FiniteBits AllocatorCreateFlagBits
AllocatorCreateFlagBits -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
countTrailingZeros :: AllocatorCreateFlagBits -> Int
$ccountTrailingZeros :: AllocatorCreateFlagBits -> Int
countLeadingZeros :: AllocatorCreateFlagBits -> Int
$ccountLeadingZeros :: AllocatorCreateFlagBits -> Int
finiteBitSize :: AllocatorCreateFlagBits -> Int
$cfiniteBitSize :: AllocatorCreateFlagBits -> Int
$cp1FiniteBits :: Bits AllocatorCreateFlagBits
FiniteBits)

-- | Allocator and all objects created from it will not be synchronized
-- internally, so you must guarantee they are used from only one thread at
-- a time or synchronized externally by you.
--
-- Using this flag may increase performance because internal mutexes are
-- not used.
pattern $bALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT    = AllocatorCreateFlagBits 0x00000001
-- | Enables usage of VK_KHR_dedicated_allocation extension.
--
-- The flag works only if /VmaAllocatorCreateInfo::vulkanApiVersion/
-- @== VK_API_VERSION_1_0@. When it\'s @VK_API_VERSION_1_1@, the flag is
-- ignored because the extension has been promoted to Vulkan 1.1.
--
-- Using this extension will automatically allocate dedicated blocks of
-- memory for some buffers and images instead of suballocating place for
-- them out of bigger memory blocks (as if you explicitly used
-- 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT' flag) when it is recommended by
-- the driver. It may improve performance on some GPUs.
--
-- You may set this flag only if you found out that following device
-- extensions are supported, you enabled them while creating Vulkan device
-- passed as /VmaAllocatorCreateInfo::device/, and you want them to be used
-- internally by this library:
--
-- -   VK_KHR_get_memory_requirements2 (device extension)
--
-- -   VK_KHR_dedicated_allocation (device extension)
--
-- When this flag is set, you can experience following warnings reported by
-- Vulkan validation layer. You can ignore them.
--
-- vkBindBufferMemory(): Binding memory to buffer 0x2d but
-- vkGetBufferMemoryRequirements() has not been called on that buffer.
pattern $bALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT   = AllocatorCreateFlagBits 0x00000002
-- | Enables usage of VK_KHR_bind_memory2 extension.
--
-- The flag works only if /VmaAllocatorCreateInfo::vulkanApiVersion/
-- @== VK_API_VERSION_1_0@. When it\'s @VK_API_VERSION_1_1@, the flag is
-- ignored because the extension has been promoted to Vulkan 1.1.
--
-- You may set this flag only if you found out that this device extension
-- is supported, you enabled it while creating Vulkan device passed as
-- /VmaAllocatorCreateInfo::device/, and you want it to be used internally
-- by this library.
--
-- The extension provides functions @vkBindBufferMemory2KHR@ and
-- @vkBindImageMemory2KHR@, which allow to pass a chain of @pNext@
-- structures while binding. This flag is required if you use @pNext@
-- parameter in 'bindBufferMemory2' or 'bindImageMemory2'.
pattern $bALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT           = AllocatorCreateFlagBits 0x00000004
-- | Enables usage of VK_EXT_memory_budget extension.
--
-- You may set this flag only if you found out that this device extension
-- is supported, you enabled it while creating Vulkan device passed as
-- /VmaAllocatorCreateInfo::device/, and you want it to be used internally
-- by this library, along with another instance extension
-- VK_KHR_get_physical_device_properties2, which is required by it (or
-- Vulkan 1.1, where this extension is promoted).
--
-- The extension provides query for current memory usage and budget, which
-- will probably be more accurate than an estimation used by the library
-- otherwise.
pattern $bALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT          = AllocatorCreateFlagBits 0x00000008
-- | Enables usage of VK_AMD_device_coherent_memory extension.
--
-- You may set this flag only if you:
--
-- -   found out that this device extension is supported and enabled it
--     while creating Vulkan device passed as
--     /VmaAllocatorCreateInfo::device/,
--
-- -   checked that
--     @VkPhysicalDeviceCoherentMemoryFeaturesAMD::deviceCoherentMemory@ is
--     true and set it while creating the Vulkan device,
--
-- -   want it to be used internally by this library.
--
-- The extension and accompanying device feature provide access to memory
-- types with @VK_MEMORY_PROPERTY_DEVICE_COHERENT_BIT_AMD@ and
-- @VK_MEMORY_PROPERTY_DEVICE_UNCACHED_BIT_AMD@ flags. They are useful
-- mostly for writing breadcrumb markers - a common method for debugging
-- GPU crash\/hang\/TDR.
--
-- When the extension is not enabled, such memory types are still
-- enumerated, but their usage is illegal. To protect from this error, if
-- you don\'t create the allocator with this flag, it will refuse to
-- allocate any memory or create a custom pool in such memory type,
-- returning @VK_ERROR_FEATURE_NOT_PRESENT@.
pattern $bALLOCATOR_CREATE_AMD_DEVICE_COHERENT_MEMORY_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_AMD_DEVICE_COHERENT_MEMORY_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_AMD_DEVICE_COHERENT_MEMORY_BIT = AllocatorCreateFlagBits 0x00000010
-- | Enables usage of \"buffer device address\" feature, which allows you to
-- use function @vkGetBufferDeviceAddress*@ to get raw GPU pointer to a
-- buffer and pass it for usage inside a shader.
--
-- You may set this flag only if you:
--
-- 1.  (For Vulkan version \< 1.2) Found as available and enabled device
--     extension VK_KHR_buffer_device_address. This extension is promoted
--     to core Vulkan 1.2.
--
-- 2.  Found as available and enabled device feature
--     @VkPhysicalDeviceBufferDeviceAddressFeatures::bufferDeviceAddress@.
--
-- When this flag is set, you can create buffers with
-- @VK_BUFFER_USAGE_SHADER_DEVICE_ADDRESS_BIT@ using VMA. The library
-- automatically adds @VK_MEMORY_ALLOCATE_DEVICE_ADDRESS_BIT@ to allocated
-- memory blocks wherever it might be needed.
--
-- For more information, see documentation chapter /Enabling buffer device
-- address/.
pattern $bALLOCATOR_CREATE_BUFFER_DEVICE_ADDRESS_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_BUFFER_DEVICE_ADDRESS_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_BUFFER_DEVICE_ADDRESS_BIT      = AllocatorCreateFlagBits 0x00000020
-- | Enables usage of VK_EXT_memory_priority extension in the library.
--
-- You may set this flag only if you found available and enabled this
-- device extension, along with
-- @VkPhysicalDeviceMemoryPriorityFeaturesEXT::memoryPriority == VK_TRUE@,
-- while creating Vulkan device passed as /VmaAllocatorCreateInfo::device/.
--
-- When this flag is used, /VmaAllocationCreateInfo::priority/ and
-- /VmaPoolCreateInfo::priority/ are used to set priorities of allocated
-- Vulkan memory. Without it, these variables are ignored.
--
-- A priority must be a floating-point value between 0 and 1, indicating
-- the priority of the allocation relative to other memory allocations.
-- Larger values are higher priority. The granularity of the priorities is
-- implementation-dependent. It is automatically passed to every call to
-- @vkAllocateMemory@ done by the library using structure
-- @VkMemoryPriorityAllocateInfoEXT@. The value to be used for default
-- priority is 0.5. For more details, see the documentation of the
-- VK_EXT_memory_priority extension.
pattern $bALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT :: AllocatorCreateFlagBits
$mALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT :: forall r.
AllocatorCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT        = AllocatorCreateFlagBits 0x00000040

conNameAllocatorCreateFlagBits :: String
conNameAllocatorCreateFlagBits :: String
conNameAllocatorCreateFlagBits = String
"AllocatorCreateFlagBits"

enumPrefixAllocatorCreateFlagBits :: String
enumPrefixAllocatorCreateFlagBits :: String
enumPrefixAllocatorCreateFlagBits = String
"ALLOCATOR_CREATE_"

showTableAllocatorCreateFlagBits :: [(AllocatorCreateFlagBits, String)]
showTableAllocatorCreateFlagBits :: [(AllocatorCreateFlagBits, String)]
showTableAllocatorCreateFlagBits =
  [ (AllocatorCreateFlagBits
ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT   , String
"EXTERNALLY_SYNCHRONIZED_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_KHR_DEDICATED_ALLOCATION_BIT  , String
"KHR_DEDICATED_ALLOCATION_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_KHR_BIND_MEMORY2_BIT          , String
"KHR_BIND_MEMORY2_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT         , String
"EXT_MEMORY_BUDGET_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_AMD_DEVICE_COHERENT_MEMORY_BIT, String
"AMD_DEVICE_COHERENT_MEMORY_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_BUFFER_DEVICE_ADDRESS_BIT     , String
"BUFFER_DEVICE_ADDRESS_BIT")
  , (AllocatorCreateFlagBits
ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT       , String
"EXT_MEMORY_PRIORITY_BIT")
  ]

instance Show AllocatorCreateFlagBits where
  showsPrec :: Int -> AllocatorCreateFlagBits -> ShowS
showsPrec = String
-> [(AllocatorCreateFlagBits, String)]
-> String
-> (AllocatorCreateFlagBits -> "memoryTypeIndex" ::: Word32)
-> (("memoryTypeIndex" ::: Word32) -> ShowS)
-> Int
-> AllocatorCreateFlagBits
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixAllocatorCreateFlagBits
                            [(AllocatorCreateFlagBits, String)]
showTableAllocatorCreateFlagBits
                            String
conNameAllocatorCreateFlagBits
                            (\(AllocatorCreateFlagBits "memoryTypeIndex" ::: Word32
x) -> "memoryTypeIndex" ::: Word32
x)
                            (\"memoryTypeIndex" ::: Word32
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("memoryTypeIndex" ::: Word32) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "memoryTypeIndex" ::: Word32
x)

instance Read AllocatorCreateFlagBits where
  readPrec :: ReadPrec AllocatorCreateFlagBits
readPrec = String
-> [(AllocatorCreateFlagBits, String)]
-> String
-> (("memoryTypeIndex" ::: Word32) -> AllocatorCreateFlagBits)
-> ReadPrec AllocatorCreateFlagBits
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixAllocatorCreateFlagBits
                          [(AllocatorCreateFlagBits, String)]
showTableAllocatorCreateFlagBits
                          String
conNameAllocatorCreateFlagBits
                          ("memoryTypeIndex" ::: Word32) -> AllocatorCreateFlagBits
AllocatorCreateFlagBits


-- | VmaVulkanFunctions
--
-- Pointers to some Vulkan functions - a subset used by the library.
--
-- Used in /VmaAllocatorCreateInfo::pVulkanFunctions/.
data VulkanFunctions = VulkanFunctions
  { 
    VulkanFunctions -> PFN_vkGetPhysicalDeviceProperties
vkGetPhysicalDeviceProperties :: PFN_vkGetPhysicalDeviceProperties
  , 
    VulkanFunctions -> PFN_vkGetPhysicalDeviceMemoryProperties
vkGetPhysicalDeviceMemoryProperties :: PFN_vkGetPhysicalDeviceMemoryProperties
  , 
    VulkanFunctions -> PFN_vkAllocateMemory
vkAllocateMemory :: PFN_vkAllocateMemory
  , 
    VulkanFunctions -> PFN_vkFreeMemory
vkFreeMemory :: PFN_vkFreeMemory
  , 
    VulkanFunctions -> PFN_vkMapMemory
vkMapMemory :: PFN_vkMapMemory
  , 
    VulkanFunctions -> PFN_vkUnmapMemory
vkUnmapMemory :: PFN_vkUnmapMemory
  , 
    VulkanFunctions -> PFN_vkFlushMappedMemoryRanges
vkFlushMappedMemoryRanges :: PFN_vkFlushMappedMemoryRanges
  , 
    VulkanFunctions -> PFN_vkFlushMappedMemoryRanges
vkInvalidateMappedMemoryRanges :: PFN_vkInvalidateMappedMemoryRanges
  , 
    VulkanFunctions -> PFN_vkBindBufferMemory
vkBindBufferMemory :: PFN_vkBindBufferMemory
  , 
    VulkanFunctions -> PFN_vkBindImageMemory
vkBindImageMemory :: PFN_vkBindImageMemory
  , 
    VulkanFunctions -> PFN_vkGetBufferMemoryRequirements
vkGetBufferMemoryRequirements :: PFN_vkGetBufferMemoryRequirements
  , 
    VulkanFunctions -> PFN_vkGetImageMemoryRequirements
vkGetImageMemoryRequirements :: PFN_vkGetImageMemoryRequirements
  , 
    VulkanFunctions -> PFN_vkCreateBuffer
vkCreateBuffer :: PFN_vkCreateBuffer
  , 
    VulkanFunctions -> PFN_vkDestroyBuffer
vkDestroyBuffer :: PFN_vkDestroyBuffer
  , 
    VulkanFunctions -> PFN_vkCreateImage
vkCreateImage :: PFN_vkCreateImage
  , 
    VulkanFunctions -> PFN_vkDestroyImage
vkDestroyImage :: PFN_vkDestroyImage
  , 
    VulkanFunctions -> PFN_vkCmdCopyBuffer
vkCmdCopyBuffer :: PFN_vkCmdCopyBuffer
  , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetBufferMemoryRequirements2KHR"
    VulkanFunctions -> PFN_vkGetBufferMemoryRequirements2KHR
vkGetBufferMemoryRequirements2KHR :: PFN_vkGetBufferMemoryRequirements2KHR
  , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetImageMemoryRequirements2KHR"
    VulkanFunctions -> PFN_vkGetImageMemoryRequirements2KHR
vkGetImageMemoryRequirements2KHR :: PFN_vkGetImageMemoryRequirements2KHR
  , -- No documentation found for Nested "VmaVulkanFunctions" "vkBindBufferMemory2KHR"
    VulkanFunctions -> PFN_vkBindBufferMemory2KHR
vkBindBufferMemory2KHR :: PFN_vkBindBufferMemory2KHR
  , -- No documentation found for Nested "VmaVulkanFunctions" "vkBindImageMemory2KHR"
    VulkanFunctions -> PFN_vkBindImageMemory2KHR
vkBindImageMemory2KHR :: PFN_vkBindImageMemory2KHR
  , -- No documentation found for Nested "VmaVulkanFunctions" "vkGetPhysicalDeviceMemoryProperties2KHR"
    VulkanFunctions -> PFN_vkGetPhysicalDeviceMemoryProperties2KHR
vkGetPhysicalDeviceMemoryProperties2KHR :: PFN_vkGetPhysicalDeviceMemoryProperties2KHR
  }
  deriving (Typeable, VulkanFunctions -> VulkanFunctions -> Bool
(VulkanFunctions -> VulkanFunctions -> Bool)
-> (VulkanFunctions -> VulkanFunctions -> Bool)
-> Eq VulkanFunctions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VulkanFunctions -> VulkanFunctions -> Bool
$c/= :: VulkanFunctions -> VulkanFunctions -> Bool
== :: VulkanFunctions -> VulkanFunctions -> Bool
$c== :: VulkanFunctions -> VulkanFunctions -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (VulkanFunctions)
#endif
deriving instance Show VulkanFunctions

instance ToCStruct VulkanFunctions where
  withCStruct :: VulkanFunctions -> (Ptr VulkanFunctions -> IO b) -> IO b
withCStruct VulkanFunctions
x Ptr VulkanFunctions -> IO b
f = Int -> (Ptr VulkanFunctions -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
176 ((Ptr VulkanFunctions -> IO b) -> IO b)
-> (Ptr VulkanFunctions -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr VulkanFunctions
p -> Ptr VulkanFunctions -> VulkanFunctions -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr VulkanFunctions
p VulkanFunctions
x (Ptr VulkanFunctions -> IO b
f Ptr VulkanFunctions
p)
  pokeCStruct :: Ptr VulkanFunctions -> VulkanFunctions -> IO b -> IO b
pokeCStruct Ptr VulkanFunctions
p VulkanFunctions{PFN_vkCmdCopyBuffer
PFN_vkBindBufferMemory2KHR
PFN_vkBindImageMemory2KHR
PFN_vkFlushMappedMemoryRanges
PFN_vkGetImageMemoryRequirements2KHR
PFN_vkAllocateMemory
PFN_vkCreateImage
PFN_vkCreateBuffer
PFN_vkGetBufferMemoryRequirements2KHR
PFN_vkGetBufferMemoryRequirements
PFN_vkDestroyBuffer
PFN_vkBindBufferMemory
PFN_vkUnmapMemory
PFN_vkMapMemory
PFN_vkFreeMemory
PFN_vkGetImageMemoryRequirements
PFN_vkDestroyImage
PFN_vkBindImageMemory
PFN_vkGetPhysicalDeviceMemoryProperties2KHR
PFN_vkGetPhysicalDeviceMemoryProperties
PFN_vkGetPhysicalDeviceProperties
vkGetPhysicalDeviceMemoryProperties2KHR :: PFN_vkGetPhysicalDeviceMemoryProperties2KHR
vkBindImageMemory2KHR :: PFN_vkBindImageMemory2KHR
vkBindBufferMemory2KHR :: PFN_vkBindBufferMemory2KHR
vkGetImageMemoryRequirements2KHR :: PFN_vkGetImageMemoryRequirements2KHR
vkGetBufferMemoryRequirements2KHR :: PFN_vkGetBufferMemoryRequirements2KHR
vkCmdCopyBuffer :: PFN_vkCmdCopyBuffer
vkDestroyImage :: PFN_vkDestroyImage
vkCreateImage :: PFN_vkCreateImage
vkDestroyBuffer :: PFN_vkDestroyBuffer
vkCreateBuffer :: PFN_vkCreateBuffer
vkGetImageMemoryRequirements :: PFN_vkGetImageMemoryRequirements
vkGetBufferMemoryRequirements :: PFN_vkGetBufferMemoryRequirements
vkBindImageMemory :: PFN_vkBindImageMemory
vkBindBufferMemory :: PFN_vkBindBufferMemory
vkInvalidateMappedMemoryRanges :: PFN_vkFlushMappedMemoryRanges
vkFlushMappedMemoryRanges :: PFN_vkFlushMappedMemoryRanges
vkUnmapMemory :: PFN_vkUnmapMemory
vkMapMemory :: PFN_vkMapMemory
vkFreeMemory :: PFN_vkFreeMemory
vkAllocateMemory :: PFN_vkAllocateMemory
vkGetPhysicalDeviceMemoryProperties :: PFN_vkGetPhysicalDeviceMemoryProperties
vkGetPhysicalDeviceProperties :: PFN_vkGetPhysicalDeviceProperties
$sel:vkGetPhysicalDeviceMemoryProperties2KHR:VulkanFunctions :: VulkanFunctions -> PFN_vkGetPhysicalDeviceMemoryProperties2KHR
$sel:vkBindImageMemory2KHR:VulkanFunctions :: VulkanFunctions -> PFN_vkBindImageMemory2KHR
$sel:vkBindBufferMemory2KHR:VulkanFunctions :: VulkanFunctions -> PFN_vkBindBufferMemory2KHR
$sel:vkGetImageMemoryRequirements2KHR:VulkanFunctions :: VulkanFunctions -> PFN_vkGetImageMemoryRequirements2KHR
$sel:vkGetBufferMemoryRequirements2KHR:VulkanFunctions :: VulkanFunctions -> PFN_vkGetBufferMemoryRequirements2KHR
$sel:vkCmdCopyBuffer:VulkanFunctions :: VulkanFunctions -> PFN_vkCmdCopyBuffer
$sel:vkDestroyImage:VulkanFunctions :: VulkanFunctions -> PFN_vkDestroyImage
$sel:vkCreateImage:VulkanFunctions :: VulkanFunctions -> PFN_vkCreateImage
$sel:vkDestroyBuffer:VulkanFunctions :: VulkanFunctions -> PFN_vkDestroyBuffer
$sel:vkCreateBuffer:VulkanFunctions :: VulkanFunctions -> PFN_vkCreateBuffer
$sel:vkGetImageMemoryRequirements:VulkanFunctions :: VulkanFunctions -> PFN_vkGetImageMemoryRequirements
$sel:vkGetBufferMemoryRequirements:VulkanFunctions :: VulkanFunctions -> PFN_vkGetBufferMemoryRequirements
$sel:vkBindImageMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkBindImageMemory
$sel:vkBindBufferMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkBindBufferMemory
$sel:vkInvalidateMappedMemoryRanges:VulkanFunctions :: VulkanFunctions -> PFN_vkFlushMappedMemoryRanges
$sel:vkFlushMappedMemoryRanges:VulkanFunctions :: VulkanFunctions -> PFN_vkFlushMappedMemoryRanges
$sel:vkUnmapMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkUnmapMemory
$sel:vkMapMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkMapMemory
$sel:vkFreeMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkFreeMemory
$sel:vkAllocateMemory:VulkanFunctions :: VulkanFunctions -> PFN_vkAllocateMemory
$sel:vkGetPhysicalDeviceMemoryProperties:VulkanFunctions :: VulkanFunctions -> PFN_vkGetPhysicalDeviceMemoryProperties
$sel:vkGetPhysicalDeviceProperties:VulkanFunctions :: VulkanFunctions -> PFN_vkGetPhysicalDeviceProperties
..} IO b
f = do
    Ptr PFN_vkGetPhysicalDeviceProperties
-> PFN_vkGetPhysicalDeviceProperties -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetPhysicalDeviceProperties
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr PFN_vkGetPhysicalDeviceProperties)) (PFN_vkGetPhysicalDeviceProperties
vkGetPhysicalDeviceProperties)
    Ptr PFN_vkGetPhysicalDeviceMemoryProperties
-> PFN_vkGetPhysicalDeviceMemoryProperties -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetPhysicalDeviceMemoryProperties
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr PFN_vkGetPhysicalDeviceMemoryProperties)) (PFN_vkGetPhysicalDeviceMemoryProperties
vkGetPhysicalDeviceMemoryProperties)
    Ptr PFN_vkAllocateMemory -> PFN_vkAllocateMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkAllocateMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr PFN_vkAllocateMemory)) (PFN_vkAllocateMemory
vkAllocateMemory)
    Ptr PFN_vkFreeMemory -> PFN_vkFreeMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFreeMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr PFN_vkFreeMemory)) (PFN_vkFreeMemory
vkFreeMemory)
    Ptr PFN_vkMapMemory -> PFN_vkMapMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkMapMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr PFN_vkMapMemory)) (PFN_vkMapMemory
vkMapMemory)
    Ptr PFN_vkUnmapMemory -> PFN_vkUnmapMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkUnmapMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr PFN_vkUnmapMemory)) (PFN_vkUnmapMemory
vkUnmapMemory)
    Ptr PFN_vkFlushMappedMemoryRanges
-> PFN_vkFlushMappedMemoryRanges -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFlushMappedMemoryRanges
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr PFN_vkFlushMappedMemoryRanges)) (PFN_vkFlushMappedMemoryRanges
vkFlushMappedMemoryRanges)
    Ptr PFN_vkFlushMappedMemoryRanges
-> PFN_vkFlushMappedMemoryRanges -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFlushMappedMemoryRanges
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr PFN_vkInvalidateMappedMemoryRanges)) (PFN_vkFlushMappedMemoryRanges
vkInvalidateMappedMemoryRanges)
    Ptr PFN_vkBindBufferMemory -> PFN_vkBindBufferMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindBufferMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr PFN_vkBindBufferMemory)) (PFN_vkBindBufferMemory
vkBindBufferMemory)
    Ptr PFN_vkBindImageMemory -> PFN_vkBindImageMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindImageMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr PFN_vkBindImageMemory)) (PFN_vkBindImageMemory
vkBindImageMemory)
    Ptr PFN_vkGetBufferMemoryRequirements
-> PFN_vkGetBufferMemoryRequirements -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetBufferMemoryRequirements
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
80 :: Ptr PFN_vkGetBufferMemoryRequirements)) (PFN_vkGetBufferMemoryRequirements
vkGetBufferMemoryRequirements)
    Ptr PFN_vkGetImageMemoryRequirements
-> PFN_vkGetImageMemoryRequirements -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetImageMemoryRequirements
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
88 :: Ptr PFN_vkGetImageMemoryRequirements)) (PFN_vkGetImageMemoryRequirements
vkGetImageMemoryRequirements)
    Ptr PFN_vkCreateBuffer -> PFN_vkCreateBuffer -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCreateBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
96 :: Ptr PFN_vkCreateBuffer)) (PFN_vkCreateBuffer
vkCreateBuffer)
    Ptr PFN_vkDestroyBuffer -> PFN_vkDestroyBuffer -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkDestroyBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
104 :: Ptr PFN_vkDestroyBuffer)) (PFN_vkDestroyBuffer
vkDestroyBuffer)
    Ptr PFN_vkCreateImage -> PFN_vkCreateImage -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCreateImage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
112 :: Ptr PFN_vkCreateImage)) (PFN_vkCreateImage
vkCreateImage)
    Ptr PFN_vkDestroyImage -> PFN_vkDestroyImage -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkDestroyImage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
120 :: Ptr PFN_vkDestroyImage)) (PFN_vkDestroyImage
vkDestroyImage)
    Ptr PFN_vkCmdCopyBuffer -> PFN_vkCmdCopyBuffer -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCmdCopyBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
128 :: Ptr PFN_vkCmdCopyBuffer)) (PFN_vkCmdCopyBuffer
vkCmdCopyBuffer)
    Ptr PFN_vkGetBufferMemoryRequirements2KHR
-> PFN_vkGetBufferMemoryRequirements2KHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetBufferMemoryRequirements2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
136 :: Ptr PFN_vkGetBufferMemoryRequirements2KHR)) (PFN_vkGetBufferMemoryRequirements2KHR
vkGetBufferMemoryRequirements2KHR)
    Ptr PFN_vkGetImageMemoryRequirements2KHR
-> PFN_vkGetImageMemoryRequirements2KHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetImageMemoryRequirements2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
144 :: Ptr PFN_vkGetImageMemoryRequirements2KHR)) (PFN_vkGetImageMemoryRequirements2KHR
vkGetImageMemoryRequirements2KHR)
    Ptr PFN_vkBindBufferMemory2KHR
-> PFN_vkBindBufferMemory2KHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindBufferMemory2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
152 :: Ptr PFN_vkBindBufferMemory2KHR)) (PFN_vkBindBufferMemory2KHR
vkBindBufferMemory2KHR)
    Ptr PFN_vkBindImageMemory2KHR -> PFN_vkBindImageMemory2KHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindImageMemory2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
160 :: Ptr PFN_vkBindImageMemory2KHR)) (PFN_vkBindImageMemory2KHR
vkBindImageMemory2KHR)
    Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR
-> PFN_vkGetPhysicalDeviceMemoryProperties2KHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
168 :: Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR)) (PFN_vkGetPhysicalDeviceMemoryProperties2KHR
vkGetPhysicalDeviceMemoryProperties2KHR)
    IO b
f
  cStructSize :: Int
cStructSize = Int
176
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr VulkanFunctions -> IO b -> IO b
pokeZeroCStruct Ptr VulkanFunctions
_ IO b
f = IO b
f

instance FromCStruct VulkanFunctions where
  peekCStruct :: Ptr VulkanFunctions -> IO VulkanFunctions
peekCStruct Ptr VulkanFunctions
p = do
    PFN_vkGetPhysicalDeviceProperties
vkGetPhysicalDeviceProperties <- Ptr PFN_vkGetPhysicalDeviceProperties
-> IO PFN_vkGetPhysicalDeviceProperties
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetPhysicalDeviceProperties ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetPhysicalDeviceProperties
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr PFN_vkGetPhysicalDeviceProperties))
    PFN_vkGetPhysicalDeviceMemoryProperties
vkGetPhysicalDeviceMemoryProperties <- Ptr PFN_vkGetPhysicalDeviceMemoryProperties
-> IO PFN_vkGetPhysicalDeviceMemoryProperties
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetPhysicalDeviceMemoryProperties ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetPhysicalDeviceMemoryProperties
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr PFN_vkGetPhysicalDeviceMemoryProperties))
    PFN_vkAllocateMemory
vkAllocateMemory <- Ptr PFN_vkAllocateMemory -> IO PFN_vkAllocateMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkAllocateMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkAllocateMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr PFN_vkAllocateMemory))
    PFN_vkFreeMemory
vkFreeMemory <- Ptr PFN_vkFreeMemory -> IO PFN_vkFreeMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkFreeMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFreeMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr PFN_vkFreeMemory))
    PFN_vkMapMemory
vkMapMemory <- Ptr PFN_vkMapMemory -> IO PFN_vkMapMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkMapMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkMapMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr PFN_vkMapMemory))
    PFN_vkUnmapMemory
vkUnmapMemory <- Ptr PFN_vkUnmapMemory -> IO PFN_vkUnmapMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkUnmapMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkUnmapMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr PFN_vkUnmapMemory))
    PFN_vkFlushMappedMemoryRanges
vkFlushMappedMemoryRanges <- Ptr PFN_vkFlushMappedMemoryRanges
-> IO PFN_vkFlushMappedMemoryRanges
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkFlushMappedMemoryRanges ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFlushMappedMemoryRanges
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr PFN_vkFlushMappedMemoryRanges))
    PFN_vkFlushMappedMemoryRanges
vkInvalidateMappedMemoryRanges <- Ptr PFN_vkFlushMappedMemoryRanges
-> IO PFN_vkFlushMappedMemoryRanges
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkInvalidateMappedMemoryRanges ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkFlushMappedMemoryRanges
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr PFN_vkInvalidateMappedMemoryRanges))
    PFN_vkBindBufferMemory
vkBindBufferMemory <- Ptr PFN_vkBindBufferMemory -> IO PFN_vkBindBufferMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkBindBufferMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindBufferMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr PFN_vkBindBufferMemory))
    PFN_vkBindImageMemory
vkBindImageMemory <- Ptr PFN_vkBindImageMemory -> IO PFN_vkBindImageMemory
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkBindImageMemory ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindImageMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr PFN_vkBindImageMemory))
    PFN_vkGetBufferMemoryRequirements
vkGetBufferMemoryRequirements <- Ptr PFN_vkGetBufferMemoryRequirements
-> IO PFN_vkGetBufferMemoryRequirements
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetBufferMemoryRequirements ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetBufferMemoryRequirements
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
80 :: Ptr PFN_vkGetBufferMemoryRequirements))
    PFN_vkGetImageMemoryRequirements
vkGetImageMemoryRequirements <- Ptr PFN_vkGetImageMemoryRequirements
-> IO PFN_vkGetImageMemoryRequirements
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetImageMemoryRequirements ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkGetImageMemoryRequirements
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
88 :: Ptr PFN_vkGetImageMemoryRequirements))
    PFN_vkCreateBuffer
vkCreateBuffer <- Ptr PFN_vkCreateBuffer -> IO PFN_vkCreateBuffer
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkCreateBuffer ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCreateBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
96 :: Ptr PFN_vkCreateBuffer))
    PFN_vkDestroyBuffer
vkDestroyBuffer <- Ptr PFN_vkDestroyBuffer -> IO PFN_vkDestroyBuffer
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkDestroyBuffer ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkDestroyBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
104 :: Ptr PFN_vkDestroyBuffer))
    PFN_vkCreateImage
vkCreateImage <- Ptr PFN_vkCreateImage -> IO PFN_vkCreateImage
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkCreateImage ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCreateImage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
112 :: Ptr PFN_vkCreateImage))
    PFN_vkDestroyImage
vkDestroyImage <- Ptr PFN_vkDestroyImage -> IO PFN_vkDestroyImage
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkDestroyImage ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkDestroyImage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
120 :: Ptr PFN_vkDestroyImage))
    PFN_vkCmdCopyBuffer
vkCmdCopyBuffer <- Ptr PFN_vkCmdCopyBuffer -> IO PFN_vkCmdCopyBuffer
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkCmdCopyBuffer ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkCmdCopyBuffer
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
128 :: Ptr PFN_vkCmdCopyBuffer))
    PFN_vkGetBufferMemoryRequirements2KHR
vkGetBufferMemoryRequirements2KHR <- Ptr PFN_vkGetBufferMemoryRequirements2KHR
-> IO PFN_vkGetBufferMemoryRequirements2KHR
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetBufferMemoryRequirements2KHR ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetBufferMemoryRequirements2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
136 :: Ptr PFN_vkGetBufferMemoryRequirements2KHR))
    PFN_vkGetImageMemoryRequirements2KHR
vkGetImageMemoryRequirements2KHR <- Ptr PFN_vkGetImageMemoryRequirements2KHR
-> IO PFN_vkGetImageMemoryRequirements2KHR
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetImageMemoryRequirements2KHR ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetImageMemoryRequirements2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
144 :: Ptr PFN_vkGetImageMemoryRequirements2KHR))
    PFN_vkBindBufferMemory2KHR
vkBindBufferMemory2KHR <- Ptr PFN_vkBindBufferMemory2KHR -> IO PFN_vkBindBufferMemory2KHR
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkBindBufferMemory2KHR ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindBufferMemory2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
152 :: Ptr PFN_vkBindBufferMemory2KHR))
    PFN_vkBindImageMemory2KHR
vkBindImageMemory2KHR <- Ptr PFN_vkBindImageMemory2KHR -> IO PFN_vkBindImageMemory2KHR
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkBindImageMemory2KHR ((Ptr VulkanFunctions
p Ptr VulkanFunctions -> Int -> Ptr PFN_vkBindImageMemory2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
160 :: Ptr PFN_vkBindImageMemory2KHR))
    PFN_vkGetPhysicalDeviceMemoryProperties2KHR
vkGetPhysicalDeviceMemoryProperties2KHR <- Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR
-> IO PFN_vkGetPhysicalDeviceMemoryProperties2KHR
forall a. Storable a => Ptr a -> IO a
peek @PFN_vkGetPhysicalDeviceMemoryProperties2KHR ((Ptr VulkanFunctions
p Ptr VulkanFunctions
-> Int -> Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
168 :: Ptr PFN_vkGetPhysicalDeviceMemoryProperties2KHR))
    VulkanFunctions -> IO VulkanFunctions
forall (f :: * -> *) a. Applicative f => a -> f a
pure (VulkanFunctions -> IO VulkanFunctions)
-> VulkanFunctions -> IO VulkanFunctions
forall a b. (a -> b) -> a -> b
$ PFN_vkGetPhysicalDeviceProperties
-> PFN_vkGetPhysicalDeviceMemoryProperties
-> PFN_vkAllocateMemory
-> PFN_vkFreeMemory
-> PFN_vkMapMemory
-> PFN_vkUnmapMemory
-> PFN_vkFlushMappedMemoryRanges
-> PFN_vkFlushMappedMemoryRanges
-> PFN_vkBindBufferMemory
-> PFN_vkBindImageMemory
-> PFN_vkGetBufferMemoryRequirements
-> PFN_vkGetImageMemoryRequirements
-> PFN_vkCreateBuffer
-> PFN_vkDestroyBuffer
-> PFN_vkCreateImage
-> PFN_vkDestroyImage
-> PFN_vkCmdCopyBuffer
-> PFN_vkGetBufferMemoryRequirements2KHR
-> PFN_vkGetImageMemoryRequirements2KHR
-> PFN_vkBindBufferMemory2KHR
-> PFN_vkBindImageMemory2KHR
-> PFN_vkGetPhysicalDeviceMemoryProperties2KHR
-> VulkanFunctions
VulkanFunctions
             PFN_vkGetPhysicalDeviceProperties
vkGetPhysicalDeviceProperties PFN_vkGetPhysicalDeviceMemoryProperties
vkGetPhysicalDeviceMemoryProperties PFN_vkAllocateMemory
vkAllocateMemory PFN_vkFreeMemory
vkFreeMemory PFN_vkMapMemory
vkMapMemory PFN_vkUnmapMemory
vkUnmapMemory PFN_vkFlushMappedMemoryRanges
vkFlushMappedMemoryRanges PFN_vkFlushMappedMemoryRanges
vkInvalidateMappedMemoryRanges PFN_vkBindBufferMemory
vkBindBufferMemory PFN_vkBindImageMemory
vkBindImageMemory PFN_vkGetBufferMemoryRequirements
vkGetBufferMemoryRequirements PFN_vkGetImageMemoryRequirements
vkGetImageMemoryRequirements PFN_vkCreateBuffer
vkCreateBuffer PFN_vkDestroyBuffer
vkDestroyBuffer PFN_vkCreateImage
vkCreateImage PFN_vkDestroyImage
vkDestroyImage PFN_vkCmdCopyBuffer
vkCmdCopyBuffer PFN_vkGetBufferMemoryRequirements2KHR
vkGetBufferMemoryRequirements2KHR PFN_vkGetImageMemoryRequirements2KHR
vkGetImageMemoryRequirements2KHR PFN_vkBindBufferMemory2KHR
vkBindBufferMemory2KHR PFN_vkBindImageMemory2KHR
vkBindImageMemory2KHR PFN_vkGetPhysicalDeviceMemoryProperties2KHR
vkGetPhysicalDeviceMemoryProperties2KHR

instance Storable VulkanFunctions where
  sizeOf :: VulkanFunctions -> Int
sizeOf ~VulkanFunctions
_ = Int
176
  alignment :: VulkanFunctions -> Int
alignment ~VulkanFunctions
_ = Int
8
  peek :: Ptr VulkanFunctions -> IO VulkanFunctions
peek = Ptr VulkanFunctions -> IO VulkanFunctions
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr VulkanFunctions -> VulkanFunctions -> IO ()
poke Ptr VulkanFunctions
ptr VulkanFunctions
poked = Ptr VulkanFunctions -> VulkanFunctions -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr VulkanFunctions
ptr VulkanFunctions
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero VulkanFunctions where
  zero :: VulkanFunctions
zero = PFN_vkGetPhysicalDeviceProperties
-> PFN_vkGetPhysicalDeviceMemoryProperties
-> PFN_vkAllocateMemory
-> PFN_vkFreeMemory
-> PFN_vkMapMemory
-> PFN_vkUnmapMemory
-> PFN_vkFlushMappedMemoryRanges
-> PFN_vkFlushMappedMemoryRanges
-> PFN_vkBindBufferMemory
-> PFN_vkBindImageMemory
-> PFN_vkGetBufferMemoryRequirements
-> PFN_vkGetImageMemoryRequirements
-> PFN_vkCreateBuffer
-> PFN_vkDestroyBuffer
-> PFN_vkCreateImage
-> PFN_vkDestroyImage
-> PFN_vkCmdCopyBuffer
-> PFN_vkGetBufferMemoryRequirements2KHR
-> PFN_vkGetImageMemoryRequirements2KHR
-> PFN_vkBindBufferMemory2KHR
-> PFN_vkBindImageMemory2KHR
-> PFN_vkGetPhysicalDeviceMemoryProperties2KHR
-> VulkanFunctions
VulkanFunctions
           PFN_vkGetPhysicalDeviceProperties
forall a. Zero a => a
zero
           PFN_vkGetPhysicalDeviceMemoryProperties
forall a. Zero a => a
zero
           PFN_vkAllocateMemory
forall a. Zero a => a
zero
           PFN_vkFreeMemory
forall a. Zero a => a
zero
           PFN_vkMapMemory
forall a. Zero a => a
zero
           PFN_vkUnmapMemory
forall a. Zero a => a
zero
           PFN_vkFlushMappedMemoryRanges
forall a. Zero a => a
zero
           PFN_vkFlushMappedMemoryRanges
forall a. Zero a => a
zero
           PFN_vkBindBufferMemory
forall a. Zero a => a
zero
           PFN_vkBindImageMemory
forall a. Zero a => a
zero
           PFN_vkGetBufferMemoryRequirements
forall a. Zero a => a
zero
           PFN_vkGetImageMemoryRequirements
forall a. Zero a => a
zero
           PFN_vkCreateBuffer
forall a. Zero a => a
zero
           PFN_vkDestroyBuffer
forall a. Zero a => a
zero
           PFN_vkCreateImage
forall a. Zero a => a
zero
           PFN_vkDestroyImage
forall a. Zero a => a
zero
           PFN_vkCmdCopyBuffer
forall a. Zero a => a
zero
           PFN_vkGetBufferMemoryRequirements2KHR
forall a. Zero a => a
zero
           PFN_vkGetImageMemoryRequirements2KHR
forall a. Zero a => a
zero
           PFN_vkBindBufferMemory2KHR
forall a. Zero a => a
zero
           PFN_vkBindImageMemory2KHR
forall a. Zero a => a
zero
           PFN_vkGetPhysicalDeviceMemoryProperties2KHR
forall a. Zero a => a
zero


type RecordFlags = RecordFlagBits

-- | Flags to be used in /VmaRecordSettings::flags/.
newtype RecordFlagBits = RecordFlagBits Flags
  deriving newtype (RecordFlagBits -> RecordFlagBits -> Bool
(RecordFlagBits -> RecordFlagBits -> Bool)
-> (RecordFlagBits -> RecordFlagBits -> Bool) -> Eq RecordFlagBits
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: RecordFlagBits -> RecordFlagBits -> Bool
$c/= :: RecordFlagBits -> RecordFlagBits -> Bool
== :: RecordFlagBits -> RecordFlagBits -> Bool
$c== :: RecordFlagBits -> RecordFlagBits -> Bool
Eq, Eq RecordFlagBits
Eq RecordFlagBits
-> (RecordFlagBits -> RecordFlagBits -> Ordering)
-> (RecordFlagBits -> RecordFlagBits -> Bool)
-> (RecordFlagBits -> RecordFlagBits -> Bool)
-> (RecordFlagBits -> RecordFlagBits -> Bool)
-> (RecordFlagBits -> RecordFlagBits -> Bool)
-> (RecordFlagBits -> RecordFlagBits -> RecordFlagBits)
-> (RecordFlagBits -> RecordFlagBits -> RecordFlagBits)
-> Ord RecordFlagBits
RecordFlagBits -> RecordFlagBits -> Bool
RecordFlagBits -> RecordFlagBits -> Ordering
RecordFlagBits -> RecordFlagBits -> RecordFlagBits
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$cmin :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
max :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$cmax :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
>= :: RecordFlagBits -> RecordFlagBits -> Bool
$c>= :: RecordFlagBits -> RecordFlagBits -> Bool
> :: RecordFlagBits -> RecordFlagBits -> Bool
$c> :: RecordFlagBits -> RecordFlagBits -> Bool
<= :: RecordFlagBits -> RecordFlagBits -> Bool
$c<= :: RecordFlagBits -> RecordFlagBits -> Bool
< :: RecordFlagBits -> RecordFlagBits -> Bool
$c< :: RecordFlagBits -> RecordFlagBits -> Bool
compare :: RecordFlagBits -> RecordFlagBits -> Ordering
$ccompare :: RecordFlagBits -> RecordFlagBits -> Ordering
$cp1Ord :: Eq RecordFlagBits
Ord, Ptr b -> Int -> IO RecordFlagBits
Ptr b -> Int -> RecordFlagBits -> IO ()
Ptr RecordFlagBits -> IO RecordFlagBits
Ptr RecordFlagBits -> Int -> IO RecordFlagBits
Ptr RecordFlagBits -> Int -> RecordFlagBits -> IO ()
Ptr RecordFlagBits -> RecordFlagBits -> IO ()
RecordFlagBits -> Int
(RecordFlagBits -> Int)
-> (RecordFlagBits -> Int)
-> (Ptr RecordFlagBits -> Int -> IO RecordFlagBits)
-> (Ptr RecordFlagBits -> Int -> RecordFlagBits -> IO ())
-> (forall b. Ptr b -> Int -> IO RecordFlagBits)
-> (forall b. Ptr b -> Int -> RecordFlagBits -> IO ())
-> (Ptr RecordFlagBits -> IO RecordFlagBits)
-> (Ptr RecordFlagBits -> RecordFlagBits -> IO ())
-> Storable RecordFlagBits
forall b. Ptr b -> Int -> IO RecordFlagBits
forall b. Ptr b -> Int -> RecordFlagBits -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr RecordFlagBits -> RecordFlagBits -> IO ()
$cpoke :: Ptr RecordFlagBits -> RecordFlagBits -> IO ()
peek :: Ptr RecordFlagBits -> IO RecordFlagBits
$cpeek :: Ptr RecordFlagBits -> IO RecordFlagBits
pokeByteOff :: Ptr b -> Int -> RecordFlagBits -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> RecordFlagBits -> IO ()
peekByteOff :: Ptr b -> Int -> IO RecordFlagBits
$cpeekByteOff :: forall b. Ptr b -> Int -> IO RecordFlagBits
pokeElemOff :: Ptr RecordFlagBits -> Int -> RecordFlagBits -> IO ()
$cpokeElemOff :: Ptr RecordFlagBits -> Int -> RecordFlagBits -> IO ()
peekElemOff :: Ptr RecordFlagBits -> Int -> IO RecordFlagBits
$cpeekElemOff :: Ptr RecordFlagBits -> Int -> IO RecordFlagBits
alignment :: RecordFlagBits -> Int
$calignment :: RecordFlagBits -> Int
sizeOf :: RecordFlagBits -> Int
$csizeOf :: RecordFlagBits -> Int
Storable, RecordFlagBits
RecordFlagBits -> Zero RecordFlagBits
forall a. a -> Zero a
zero :: RecordFlagBits
$czero :: RecordFlagBits
Zero, Eq RecordFlagBits
RecordFlagBits
Eq RecordFlagBits
-> (RecordFlagBits -> RecordFlagBits -> RecordFlagBits)
-> (RecordFlagBits -> RecordFlagBits -> RecordFlagBits)
-> (RecordFlagBits -> RecordFlagBits -> RecordFlagBits)
-> (RecordFlagBits -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> RecordFlagBits
-> (Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> Bool)
-> (RecordFlagBits -> Maybe Int)
-> (RecordFlagBits -> Int)
-> (RecordFlagBits -> Bool)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int -> RecordFlagBits)
-> (RecordFlagBits -> Int)
-> Bits RecordFlagBits
Int -> RecordFlagBits
RecordFlagBits -> Bool
RecordFlagBits -> Int
RecordFlagBits -> Maybe Int
RecordFlagBits -> RecordFlagBits
RecordFlagBits -> Int -> Bool
RecordFlagBits -> Int -> RecordFlagBits
RecordFlagBits -> RecordFlagBits -> RecordFlagBits
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
popCount :: RecordFlagBits -> Int
$cpopCount :: RecordFlagBits -> Int
rotateR :: RecordFlagBits -> Int -> RecordFlagBits
$crotateR :: RecordFlagBits -> Int -> RecordFlagBits
rotateL :: RecordFlagBits -> Int -> RecordFlagBits
$crotateL :: RecordFlagBits -> Int -> RecordFlagBits
unsafeShiftR :: RecordFlagBits -> Int -> RecordFlagBits
$cunsafeShiftR :: RecordFlagBits -> Int -> RecordFlagBits
shiftR :: RecordFlagBits -> Int -> RecordFlagBits
$cshiftR :: RecordFlagBits -> Int -> RecordFlagBits
unsafeShiftL :: RecordFlagBits -> Int -> RecordFlagBits
$cunsafeShiftL :: RecordFlagBits -> Int -> RecordFlagBits
shiftL :: RecordFlagBits -> Int -> RecordFlagBits
$cshiftL :: RecordFlagBits -> Int -> RecordFlagBits
isSigned :: RecordFlagBits -> Bool
$cisSigned :: RecordFlagBits -> Bool
bitSize :: RecordFlagBits -> Int
$cbitSize :: RecordFlagBits -> Int
bitSizeMaybe :: RecordFlagBits -> Maybe Int
$cbitSizeMaybe :: RecordFlagBits -> Maybe Int
testBit :: RecordFlagBits -> Int -> Bool
$ctestBit :: RecordFlagBits -> Int -> Bool
complementBit :: RecordFlagBits -> Int -> RecordFlagBits
$ccomplementBit :: RecordFlagBits -> Int -> RecordFlagBits
clearBit :: RecordFlagBits -> Int -> RecordFlagBits
$cclearBit :: RecordFlagBits -> Int -> RecordFlagBits
setBit :: RecordFlagBits -> Int -> RecordFlagBits
$csetBit :: RecordFlagBits -> Int -> RecordFlagBits
bit :: Int -> RecordFlagBits
$cbit :: Int -> RecordFlagBits
zeroBits :: RecordFlagBits
$czeroBits :: RecordFlagBits
rotate :: RecordFlagBits -> Int -> RecordFlagBits
$crotate :: RecordFlagBits -> Int -> RecordFlagBits
shift :: RecordFlagBits -> Int -> RecordFlagBits
$cshift :: RecordFlagBits -> Int -> RecordFlagBits
complement :: RecordFlagBits -> RecordFlagBits
$ccomplement :: RecordFlagBits -> RecordFlagBits
xor :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$cxor :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
.|. :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$c.|. :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
.&. :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$c.&. :: RecordFlagBits -> RecordFlagBits -> RecordFlagBits
$cp1Bits :: Eq RecordFlagBits
Bits, Bits RecordFlagBits
Bits RecordFlagBits
-> (RecordFlagBits -> Int)
-> (RecordFlagBits -> Int)
-> (RecordFlagBits -> Int)
-> FiniteBits RecordFlagBits
RecordFlagBits -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
countTrailingZeros :: RecordFlagBits -> Int
$ccountTrailingZeros :: RecordFlagBits -> Int
countLeadingZeros :: RecordFlagBits -> Int
$ccountLeadingZeros :: RecordFlagBits -> Int
finiteBitSize :: RecordFlagBits -> Int
$cfiniteBitSize :: RecordFlagBits -> Int
$cp1FiniteBits :: Bits RecordFlagBits
FiniteBits)

-- | Enables flush after recording every function call.
--
-- Enable it if you expect your application to crash, which may leave
-- recording file truncated. It may degrade performance though.
pattern $bRECORD_FLUSH_AFTER_CALL_BIT :: RecordFlagBits
$mRECORD_FLUSH_AFTER_CALL_BIT :: forall r. RecordFlagBits -> (Void# -> r) -> (Void# -> r) -> r
RECORD_FLUSH_AFTER_CALL_BIT = RecordFlagBits 0x00000001

conNameRecordFlagBits :: String
conNameRecordFlagBits :: String
conNameRecordFlagBits = String
"RecordFlagBits"

enumPrefixRecordFlagBits :: String
enumPrefixRecordFlagBits :: String
enumPrefixRecordFlagBits = String
"RECORD_FLUSH_AFTER_CALL_BIT"

showTableRecordFlagBits :: [(RecordFlagBits, String)]
showTableRecordFlagBits :: [(RecordFlagBits, String)]
showTableRecordFlagBits = [(RecordFlagBits
RECORD_FLUSH_AFTER_CALL_BIT, String
"")]

instance Show RecordFlagBits where
  showsPrec :: Int -> RecordFlagBits -> ShowS
showsPrec = String
-> [(RecordFlagBits, String)]
-> String
-> (RecordFlagBits -> "memoryTypeIndex" ::: Word32)
-> (("memoryTypeIndex" ::: Word32) -> ShowS)
-> Int
-> RecordFlagBits
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixRecordFlagBits
                            [(RecordFlagBits, String)]
showTableRecordFlagBits
                            String
conNameRecordFlagBits
                            (\(RecordFlagBits "memoryTypeIndex" ::: Word32
x) -> "memoryTypeIndex" ::: Word32
x)
                            (\"memoryTypeIndex" ::: Word32
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("memoryTypeIndex" ::: Word32) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "memoryTypeIndex" ::: Word32
x)

instance Read RecordFlagBits where
  readPrec :: ReadPrec RecordFlagBits
readPrec = String
-> [(RecordFlagBits, String)]
-> String
-> (("memoryTypeIndex" ::: Word32) -> RecordFlagBits)
-> ReadPrec RecordFlagBits
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixRecordFlagBits [(RecordFlagBits, String)]
showTableRecordFlagBits String
conNameRecordFlagBits ("memoryTypeIndex" ::: Word32) -> RecordFlagBits
RecordFlagBits


-- | VmaRecordSettings
--
-- Parameters for recording calls to VMA functions. To be used in
-- /VmaAllocatorCreateInfo::pRecordSettings/.
data RecordSettings = RecordSettings
  { -- | Flags for recording. Use 'RecordFlagBits' enum.
    RecordSettings -> RecordFlagBits
flags :: RecordFlags
  , -- | Path to the file that should be written by the recording.
    --
    -- Suggested extension: \"csv\". If the file already exists, it will be
    -- overwritten. It will be opened for the whole time 'Allocator' object is
    -- alive. If opening this file fails, creation of the whole allocator
    -- object fails.
    RecordSettings -> ByteString
filePath :: ByteString
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (RecordSettings)
#endif
deriving instance Show RecordSettings

instance ToCStruct RecordSettings where
  withCStruct :: RecordSettings -> (Ptr RecordSettings -> IO b) -> IO b
withCStruct RecordSettings
x Ptr RecordSettings -> IO b
f = Int -> (Ptr RecordSettings -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
16 ((Ptr RecordSettings -> IO b) -> IO b)
-> (Ptr RecordSettings -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr RecordSettings
p -> Ptr RecordSettings -> RecordSettings -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr RecordSettings
p RecordSettings
x (Ptr RecordSettings -> IO b
f Ptr RecordSettings
p)
  pokeCStruct :: Ptr RecordSettings -> RecordSettings -> IO b -> IO b
pokeCStruct Ptr RecordSettings
p RecordSettings{ByteString
RecordFlagBits
filePath :: ByteString
flags :: RecordFlagBits
$sel:filePath:RecordSettings :: RecordSettings -> ByteString
$sel:flags:RecordSettings :: RecordSettings -> RecordFlagBits
..} IO b
f = ContT b IO b -> IO b
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT b IO b -> IO b) -> ContT b IO b -> IO b
forall a b. (a -> b) -> a -> b
$ do
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr RecordFlagBits -> RecordFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr RecordFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr RecordFlags)) (RecordFlagBits
flags)
    "statsString" ::: Ptr CChar
pFilePath'' <- ((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
-> ContT b IO ("statsString" ::: Ptr CChar)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
 -> ContT b IO ("statsString" ::: Ptr CChar))
-> ((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
-> ContT b IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ ByteString -> (("statsString" ::: Ptr CChar) -> IO b) -> IO b
forall a.
ByteString -> (("statsString" ::: Ptr CChar) -> IO a) -> IO a
useAsCString (ByteString
filePath)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("statsString" ::: Ptr CChar)
-> ("statsString" ::: Ptr CChar) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr ("statsString" ::: Ptr CChar)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr CChar))) "statsString" ::: Ptr CChar
pFilePath''
    IO b -> ContT b IO b
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO b -> ContT b IO b) -> IO b -> ContT b IO b
forall a b. (a -> b) -> a -> b
$ IO b
f
  cStructSize :: Int
cStructSize = Int
16
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr RecordSettings -> IO b -> IO b
pokeZeroCStruct Ptr RecordSettings
p IO b
f = ContT b IO b -> IO b
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT b IO b -> IO b) -> ContT b IO b -> IO b
forall a b. (a -> b) -> a -> b
$ do
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr RecordFlagBits -> RecordFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr RecordFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr RecordFlags)) (RecordFlagBits
forall a. Zero a => a
zero)
    "statsString" ::: Ptr CChar
pFilePath'' <- ((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
-> ContT b IO ("statsString" ::: Ptr CChar)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
 -> ContT b IO ("statsString" ::: Ptr CChar))
-> ((("statsString" ::: Ptr CChar) -> IO b) -> IO b)
-> ContT b IO ("statsString" ::: Ptr CChar)
forall a b. (a -> b) -> a -> b
$ ByteString -> (("statsString" ::: Ptr CChar) -> IO b) -> IO b
forall a.
ByteString -> (("statsString" ::: Ptr CChar) -> IO a) -> IO a
useAsCString (ByteString
forall a. Monoid a => a
mempty)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("statsString" ::: Ptr CChar)
-> ("statsString" ::: Ptr CChar) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr ("statsString" ::: Ptr CChar)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr CChar))) "statsString" ::: Ptr CChar
pFilePath''
    IO b -> ContT b IO b
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO b -> ContT b IO b) -> IO b -> ContT b IO b
forall a b. (a -> b) -> a -> b
$ IO b
f

instance FromCStruct RecordSettings where
  peekCStruct :: Ptr RecordSettings -> IO RecordSettings
peekCStruct Ptr RecordSettings
p = do
    RecordFlagBits
flags <- Ptr RecordFlagBits -> IO RecordFlagBits
forall a. Storable a => Ptr a -> IO a
peek @RecordFlags ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr RecordFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr RecordFlags))
    ByteString
pFilePath <- ("statsString" ::: Ptr CChar) -> IO ByteString
packCString (("statsString" ::: Ptr CChar) -> IO ByteString)
-> IO ("statsString" ::: Ptr CChar) -> IO ByteString
forall (m :: * -> *) a b. Monad m => (a -> m b) -> m a -> m b
=<< Ptr ("statsString" ::: Ptr CChar)
-> IO ("statsString" ::: Ptr CChar)
forall a. Storable a => Ptr a -> IO a
peek ((Ptr RecordSettings
p Ptr RecordSettings -> Int -> Ptr ("statsString" ::: Ptr CChar)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr CChar)))
    RecordSettings -> IO RecordSettings
forall (f :: * -> *) a. Applicative f => a -> f a
pure (RecordSettings -> IO RecordSettings)
-> RecordSettings -> IO RecordSettings
forall a b. (a -> b) -> a -> b
$ RecordFlagBits -> ByteString -> RecordSettings
RecordSettings
             RecordFlagBits
flags ByteString
pFilePath

instance Zero RecordSettings where
  zero :: RecordSettings
zero = RecordFlagBits -> ByteString -> RecordSettings
RecordSettings
           RecordFlagBits
forall a. Zero a => a
zero
           ByteString
forall a. Monoid a => a
mempty


-- | VmaAllocatorCreateInfo
--
-- Description of a Allocator to be created.
data AllocatorCreateInfo = AllocatorCreateInfo
  { -- | Flags for created allocator. Use 'AllocatorCreateFlagBits' enum.
    AllocatorCreateInfo -> AllocatorCreateFlagBits
flags :: AllocatorCreateFlags
  , -- | Vulkan physical device.
    --
    -- It must be valid throughout whole lifetime of created allocator.
    AllocatorCreateInfo -> Ptr PhysicalDevice_T
physicalDevice :: Ptr PhysicalDevice_T
  , -- | Vulkan device.
    --
    -- It must be valid throughout whole lifetime of created allocator.
    AllocatorCreateInfo -> Ptr Device_T
device :: Ptr Device_T
  , -- | Preferred size of a single @VkDeviceMemory@ block to be allocated from
    -- large heaps > 1 GiB. Optional.
    --
    -- Set to 0 to use default, which is currently 256 MiB.
    AllocatorCreateInfo -> "lostAllocationCount" ::: Word64
preferredLargeHeapBlockSize :: DeviceSize
  , -- | Custom CPU memory allocation callbacks. Optional.
    --
    -- Optional, can be null. When specified, will also be used for all
    -- CPU-side memory allocations.
    AllocatorCreateInfo -> Maybe AllocationCallbacks
allocationCallbacks :: Maybe AllocationCallbacks
  , -- | Informative callbacks for @vkAllocateMemory@, @vkFreeMemory@. Optional.
    --
    -- Optional, can be null.
    AllocatorCreateInfo -> Maybe DeviceMemoryCallbacks
deviceMemoryCallbacks :: Maybe DeviceMemoryCallbacks
  , -- | Maximum number of additional frames that are in use at the same time as
    -- current frame.
    --
    -- This value is used only when you make allocations with
    -- VMA_ALLOCATION_CREATE_CAN_BECOME_LOST_BIT flag. Such allocation cannot
    -- become lost if allocation.lastUseFrameIndex >=
    -- allocator.currentFrameIndex - frameInUseCount.
    --
    -- For example, if you double-buffer your command buffers, so resources
    -- used for rendering in previous frame may still be in use by the GPU at
    -- the moment you allocate resources needed for the current frame, set this
    -- value to 1.
    --
    -- If you want to allow any allocations other than used in the current
    -- frame to become lost, set this value to 0.
    AllocatorCreateInfo -> "memoryTypeIndex" ::: Word32
frameInUseCount :: Word32
  , -- | Either null or a pointer to an array of limits on maximum number of
    -- bytes that can be allocated out of particular Vulkan memory heap.
    --
    -- If not NULL, it must be a pointer to an array of
    -- @VkPhysicalDeviceMemoryProperties::memoryHeapCount@ elements, defining
    -- limit on maximum number of bytes that can be allocated out of particular
    -- Vulkan memory heap.
    --
    -- Any of the elements may be equal to @VK_WHOLE_SIZE@, which means no
    -- limit on that heap. This is also the default in case of @pHeapSizeLimit@
    -- = NULL.
    --
    -- If there is a limit defined for a heap:
    --
    -- -   If user tries to allocate more memory from that heap using this
    --     allocator, the allocation fails with
    --     @VK_ERROR_OUT_OF_DEVICE_MEMORY@.
    --
    -- -   If the limit is smaller than heap size reported in
    --     @VkMemoryHeap::size@, the value of this limit will be reported
    --     instead when using 'getMemoryProperties'.
    --
    -- Warning! Using this feature may not be equivalent to installing a GPU
    -- with smaller amount of memory, because graphics driver doesn\'t
    -- necessary fail new allocations with @VK_ERROR_OUT_OF_DEVICE_MEMORY@
    -- result when memory capacity is exceeded. It may return success and just
    -- silently migrate some device memory blocks to system RAM. This driver
    -- behavior can also be controlled using
    -- VK_AMD_memory_overallocation_behavior extension.
    AllocatorCreateInfo -> Ptr ("lostAllocationCount" ::: Word64)
heapSizeLimit :: Ptr DeviceSize
  , -- | Pointers to Vulkan functions. Can be null.
    --
    -- For details see /Pointers to Vulkan functions/.
    AllocatorCreateInfo -> Maybe VulkanFunctions
vulkanFunctions :: Maybe VulkanFunctions
  , -- | Parameters for recording of VMA calls. Can be null.
    --
    -- If not null, it enables recording of calls to VMA functions to a file.
    -- If support for recording is not enabled using @VMA_RECORDING_ENABLED@
    -- macro, creation of the allocator object fails with
    -- @VK_ERROR_FEATURE_NOT_PRESENT@.
    AllocatorCreateInfo -> Maybe RecordSettings
recordSettings :: Maybe RecordSettings
  , -- | Handle to Vulkan instance object.
    --
    -- Starting from version 3.0.0 this member is no longer optional, it must
    -- be set!
    AllocatorCreateInfo -> Ptr Instance_T
instance' :: Ptr Instance_T
  , -- | Optional. The highest version of Vulkan that the application is designed
    -- to use.
    --
    -- It must be a value in the format as created by macro @VK_MAKE_VERSION@
    -- or a constant like: @VK_API_VERSION_1_1@, @VK_API_VERSION_1_0@. The
    -- patch version number specified is ignored. Only the major and minor
    -- versions are considered. It must be less or equal (preferably equal) to
    -- value as passed to @vkCreateInstance@ as
    -- @VkApplicationInfo::apiVersion@. Only versions 1.0, 1.1, 1.2 are
    -- supported by the current implementation. Leaving it initialized to zero
    -- is equivalent to @VK_API_VERSION_1_0@.
    AllocatorCreateInfo -> "memoryTypeIndex" ::: Word32
vulkanApiVersion :: Word32
  , -- | Either null or a pointer to an array of external memory handle types for
    -- each Vulkan memory type.
    --
    -- If not NULL, it must be a pointer to an array of
    -- @VkPhysicalDeviceMemoryProperties::memoryTypeCount@ elements, defining
    -- external memory handle types of particular Vulkan memory type, to be
    -- passed using @VkExportMemoryAllocateInfoKHR@.
    --
    -- Any of the elements may be equal to 0, which means not to use
    -- @VkExportMemoryAllocateInfoKHR@ on this memory type. This is also the
    -- default in case of @pTypeExternalMemoryHandleTypes@ = NULL.
    AllocatorCreateInfo -> Ptr ExternalMemoryHandleTypeFlagsKHR
typeExternalMemoryHandleTypes :: Ptr ExternalMemoryHandleTypeFlagsKHR
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (AllocatorCreateInfo)
#endif
deriving instance Show AllocatorCreateInfo

instance ToCStruct AllocatorCreateInfo where
  withCStruct :: AllocatorCreateInfo -> (Ptr AllocatorCreateInfo -> IO b) -> IO b
withCStruct AllocatorCreateInfo
x Ptr AllocatorCreateInfo -> IO b
f = Int -> (Ptr AllocatorCreateInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
104 ((Ptr AllocatorCreateInfo -> IO b) -> IO b)
-> (Ptr AllocatorCreateInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr AllocatorCreateInfo
p -> Ptr AllocatorCreateInfo -> AllocatorCreateInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocatorCreateInfo
p AllocatorCreateInfo
x (Ptr AllocatorCreateInfo -> IO b
f Ptr AllocatorCreateInfo
p)
  pokeCStruct :: Ptr AllocatorCreateInfo -> AllocatorCreateInfo -> IO b -> IO b
pokeCStruct Ptr AllocatorCreateInfo
p AllocatorCreateInfo{Maybe AllocationCallbacks
Maybe RecordSettings
Maybe VulkanFunctions
Maybe DeviceMemoryCallbacks
"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
Ptr ("lostAllocationCount" ::: Word64)
Ptr ExternalMemoryHandleTypeFlagsKHR
Ptr Device_T
Ptr Instance_T
Ptr PhysicalDevice_T
AllocatorCreateFlagBits
typeExternalMemoryHandleTypes :: Ptr ExternalMemoryHandleTypeFlagsKHR
vulkanApiVersion :: "memoryTypeIndex" ::: Word32
instance' :: Ptr Instance_T
recordSettings :: Maybe RecordSettings
vulkanFunctions :: Maybe VulkanFunctions
heapSizeLimit :: Ptr ("lostAllocationCount" ::: Word64)
frameInUseCount :: "memoryTypeIndex" ::: Word32
deviceMemoryCallbacks :: Maybe DeviceMemoryCallbacks
allocationCallbacks :: Maybe AllocationCallbacks
preferredLargeHeapBlockSize :: "lostAllocationCount" ::: Word64
device :: Ptr Device_T
physicalDevice :: Ptr PhysicalDevice_T
flags :: AllocatorCreateFlagBits
$sel:typeExternalMemoryHandleTypes:AllocatorCreateInfo :: AllocatorCreateInfo -> Ptr ExternalMemoryHandleTypeFlagsKHR
$sel:vulkanApiVersion:AllocatorCreateInfo :: AllocatorCreateInfo -> "memoryTypeIndex" ::: Word32
$sel:instance':AllocatorCreateInfo :: AllocatorCreateInfo -> Ptr Instance_T
$sel:recordSettings:AllocatorCreateInfo :: AllocatorCreateInfo -> Maybe RecordSettings
$sel:vulkanFunctions:AllocatorCreateInfo :: AllocatorCreateInfo -> Maybe VulkanFunctions
$sel:heapSizeLimit:AllocatorCreateInfo :: AllocatorCreateInfo -> Ptr ("lostAllocationCount" ::: Word64)
$sel:frameInUseCount:AllocatorCreateInfo :: AllocatorCreateInfo -> "memoryTypeIndex" ::: Word32
$sel:deviceMemoryCallbacks:AllocatorCreateInfo :: AllocatorCreateInfo -> Maybe DeviceMemoryCallbacks
$sel:allocationCallbacks:AllocatorCreateInfo :: AllocatorCreateInfo -> Maybe AllocationCallbacks
$sel:preferredLargeHeapBlockSize:AllocatorCreateInfo :: AllocatorCreateInfo -> "lostAllocationCount" ::: Word64
$sel:device:AllocatorCreateInfo :: AllocatorCreateInfo -> Ptr Device_T
$sel:physicalDevice:AllocatorCreateInfo :: AllocatorCreateInfo -> Ptr PhysicalDevice_T
$sel:flags:AllocatorCreateInfo :: AllocatorCreateInfo -> AllocatorCreateFlagBits
..} IO b
f = ContT b IO b -> IO b
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT b IO b -> IO b) -> ContT b IO b -> IO b
forall a b. (a -> b) -> a -> b
$ do
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr AllocatorCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocatorCreateFlags)) (AllocatorCreateFlagBits
flags)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr PhysicalDevice_T) -> Ptr PhysicalDevice_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T))) (Ptr PhysicalDevice_T
physicalDevice)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr Device_T) -> Ptr Device_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T))) (Ptr Device_T
device)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
preferredLargeHeapBlockSize)
    Ptr AllocationCallbacks
pAllocationCallbacks'' <- case (Maybe AllocationCallbacks
allocationCallbacks) of
      Maybe AllocationCallbacks
Nothing -> Ptr AllocationCallbacks -> ContT b IO (Ptr AllocationCallbacks)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr AllocationCallbacks
forall a. Ptr a
nullPtr
      Just AllocationCallbacks
j -> ((Ptr AllocationCallbacks -> IO b) -> IO b)
-> ContT b IO (Ptr AllocationCallbacks)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr AllocationCallbacks -> IO b) -> IO b)
 -> ContT b IO (Ptr AllocationCallbacks))
-> ((Ptr AllocationCallbacks -> IO b) -> IO b)
-> ContT b IO (Ptr AllocationCallbacks)
forall a b. (a -> b) -> a -> b
$ AllocationCallbacks -> (Ptr AllocationCallbacks -> IO b) -> IO b
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (AllocationCallbacks
j)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr AllocationCallbacks) -> Ptr AllocationCallbacks -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr AllocationCallbacks)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr AllocationCallbacks))) Ptr AllocationCallbacks
pAllocationCallbacks''
    Ptr DeviceMemoryCallbacks
pDeviceMemoryCallbacks'' <- case (Maybe DeviceMemoryCallbacks
deviceMemoryCallbacks) of
      Maybe DeviceMemoryCallbacks
Nothing -> Ptr DeviceMemoryCallbacks -> ContT b IO (Ptr DeviceMemoryCallbacks)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr DeviceMemoryCallbacks
forall a. Ptr a
nullPtr
      Just DeviceMemoryCallbacks
j -> ((Ptr DeviceMemoryCallbacks -> IO b) -> IO b)
-> ContT b IO (Ptr DeviceMemoryCallbacks)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr DeviceMemoryCallbacks -> IO b) -> IO b)
 -> ContT b IO (Ptr DeviceMemoryCallbacks))
-> ((Ptr DeviceMemoryCallbacks -> IO b) -> IO b)
-> ContT b IO (Ptr DeviceMemoryCallbacks)
forall a b. (a -> b) -> a -> b
$ DeviceMemoryCallbacks
-> (Ptr DeviceMemoryCallbacks -> IO b) -> IO b
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (DeviceMemoryCallbacks
j)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr DeviceMemoryCallbacks)
-> Ptr DeviceMemoryCallbacks -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr DeviceMemoryCallbacks)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr (Ptr DeviceMemoryCallbacks))) Ptr DeviceMemoryCallbacks
pDeviceMemoryCallbacks''
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
frameInUseCount)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr ("lostAllocationCount" ::: Word64))
-> Ptr ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr (Ptr ("lostAllocationCount" ::: Word64))
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr (Ptr DeviceSize))) (Ptr ("lostAllocationCount" ::: Word64)
heapSizeLimit)
    Ptr VulkanFunctions
pVulkanFunctions'' <- case (Maybe VulkanFunctions
vulkanFunctions) of
      Maybe VulkanFunctions
Nothing -> Ptr VulkanFunctions -> ContT b IO (Ptr VulkanFunctions)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr VulkanFunctions
forall a. Ptr a
nullPtr
      Just VulkanFunctions
j -> ((Ptr VulkanFunctions -> IO b) -> IO b)
-> ContT b IO (Ptr VulkanFunctions)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr VulkanFunctions -> IO b) -> IO b)
 -> ContT b IO (Ptr VulkanFunctions))
-> ((Ptr VulkanFunctions -> IO b) -> IO b)
-> ContT b IO (Ptr VulkanFunctions)
forall a b. (a -> b) -> a -> b
$ VulkanFunctions -> (Ptr VulkanFunctions -> IO b) -> IO b
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (VulkanFunctions
j)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr VulkanFunctions) -> Ptr VulkanFunctions -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr VulkanFunctions)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr (Ptr VulkanFunctions))) Ptr VulkanFunctions
pVulkanFunctions''
    Ptr RecordSettings
pRecordSettings'' <- case (Maybe RecordSettings
recordSettings) of
      Maybe RecordSettings
Nothing -> Ptr RecordSettings -> ContT b IO (Ptr RecordSettings)
forall (f :: * -> *) a. Applicative f => a -> f a
pure Ptr RecordSettings
forall a. Ptr a
nullPtr
      Just RecordSettings
j -> ((Ptr RecordSettings -> IO b) -> IO b)
-> ContT b IO (Ptr RecordSettings)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr RecordSettings -> IO b) -> IO b)
 -> ContT b IO (Ptr RecordSettings))
-> ((Ptr RecordSettings -> IO b) -> IO b)
-> ContT b IO (Ptr RecordSettings)
forall a b. (a -> b) -> a -> b
$ RecordSettings -> (Ptr RecordSettings -> IO b) -> IO b
forall a b. ToCStruct a => a -> (Ptr a -> IO b) -> IO b
withCStruct (RecordSettings
j)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr RecordSettings) -> Ptr RecordSettings -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr RecordSettings)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr (Ptr RecordSettings))) Ptr RecordSettings
pRecordSettings''
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr Instance_T) -> Ptr Instance_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
80 :: Ptr (Ptr Instance_T))) (Ptr Instance_T
instance')
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
88 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
vulkanApiVersion)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR)
-> Ptr ExternalMemoryHandleTypeFlagsKHR -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
96 :: Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR))) (Ptr ExternalMemoryHandleTypeFlagsKHR
typeExternalMemoryHandleTypes)
    IO b -> ContT b IO b
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO b -> ContT b IO b) -> IO b -> ContT b IO b
forall a b. (a -> b) -> a -> b
$ IO b
f
  cStructSize :: Int
cStructSize = Int
104
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr AllocatorCreateInfo -> IO b -> IO b
pokeZeroCStruct Ptr AllocatorCreateInfo
p IO b
f = do
    Ptr AllocatorCreateFlagBits -> AllocatorCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr AllocatorCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocatorCreateFlags)) (AllocatorCreateFlagBits
forall a. Zero a => a
zero)
    Ptr (Ptr PhysicalDevice_T) -> Ptr PhysicalDevice_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T))) (Ptr PhysicalDevice_T
forall a. Zero a => a
zero)
    Ptr (Ptr Device_T) -> Ptr Device_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T))) (Ptr Device_T
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr (Ptr Instance_T) -> Ptr Instance_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
80 :: Ptr (Ptr Instance_T))) (Ptr Instance_T
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
88 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct AllocatorCreateInfo where
  peekCStruct :: Ptr AllocatorCreateInfo -> IO AllocatorCreateInfo
peekCStruct Ptr AllocatorCreateInfo
p = do
    AllocatorCreateFlagBits
flags <- Ptr AllocatorCreateFlagBits -> IO AllocatorCreateFlagBits
forall a. Storable a => Ptr a -> IO a
peek @AllocatorCreateFlags ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr AllocatorCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocatorCreateFlags))
    Ptr PhysicalDevice_T
physicalDevice <- Ptr (Ptr PhysicalDevice_T) -> IO (Ptr PhysicalDevice_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr PhysicalDevice_T) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T)))
    Ptr Device_T
device <- Ptr (Ptr Device_T) -> IO (Ptr Device_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Device_T) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T)))
    "lostAllocationCount" ::: Word64
preferredLargeHeapBlockSize <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize))
    Ptr AllocationCallbacks
pAllocationCallbacks <- Ptr (Ptr AllocationCallbacks) -> IO (Ptr AllocationCallbacks)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr AllocationCallbacks) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr AllocationCallbacks)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr AllocationCallbacks)))
    Maybe AllocationCallbacks
pAllocationCallbacks' <- (Ptr AllocationCallbacks -> IO AllocationCallbacks)
-> Ptr AllocationCallbacks -> IO (Maybe AllocationCallbacks)
forall a b. (Ptr a -> IO b) -> Ptr a -> IO (Maybe b)
maybePeek (\Ptr AllocationCallbacks
j -> Ptr AllocationCallbacks -> IO AllocationCallbacks
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @AllocationCallbacks (Ptr AllocationCallbacks
j)) Ptr AllocationCallbacks
pAllocationCallbacks
    Ptr DeviceMemoryCallbacks
pDeviceMemoryCallbacks <- Ptr (Ptr DeviceMemoryCallbacks) -> IO (Ptr DeviceMemoryCallbacks)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr DeviceMemoryCallbacks) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr DeviceMemoryCallbacks)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr (Ptr DeviceMemoryCallbacks)))
    Maybe DeviceMemoryCallbacks
pDeviceMemoryCallbacks' <- (Ptr DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks)
-> Ptr DeviceMemoryCallbacks -> IO (Maybe DeviceMemoryCallbacks)
forall a b. (Ptr a -> IO b) -> Ptr a -> IO (Maybe b)
maybePeek (\Ptr DeviceMemoryCallbacks
j -> Ptr DeviceMemoryCallbacks -> IO DeviceMemoryCallbacks
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @DeviceMemoryCallbacks (Ptr DeviceMemoryCallbacks
j)) Ptr DeviceMemoryCallbacks
pDeviceMemoryCallbacks
    "memoryTypeIndex" ::: Word32
frameInUseCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32))
    Ptr ("lostAllocationCount" ::: Word64)
pHeapSizeLimit <- Ptr (Ptr ("lostAllocationCount" ::: Word64))
-> IO (Ptr ("lostAllocationCount" ::: Word64))
forall a. Storable a => Ptr a -> IO a
peek @(Ptr DeviceSize) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr (Ptr ("lostAllocationCount" ::: Word64))
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr (Ptr DeviceSize)))
    Ptr VulkanFunctions
pVulkanFunctions <- Ptr (Ptr VulkanFunctions) -> IO (Ptr VulkanFunctions)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr VulkanFunctions) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr VulkanFunctions)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr (Ptr VulkanFunctions)))
    Maybe VulkanFunctions
pVulkanFunctions' <- (Ptr VulkanFunctions -> IO VulkanFunctions)
-> Ptr VulkanFunctions -> IO (Maybe VulkanFunctions)
forall a b. (Ptr a -> IO b) -> Ptr a -> IO (Maybe b)
maybePeek (\Ptr VulkanFunctions
j -> Ptr VulkanFunctions -> IO VulkanFunctions
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @VulkanFunctions (Ptr VulkanFunctions
j)) Ptr VulkanFunctions
pVulkanFunctions
    Ptr RecordSettings
pRecordSettings <- Ptr (Ptr RecordSettings) -> IO (Ptr RecordSettings)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr RecordSettings) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr RecordSettings)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr (Ptr RecordSettings)))
    Maybe RecordSettings
pRecordSettings' <- (Ptr RecordSettings -> IO RecordSettings)
-> Ptr RecordSettings -> IO (Maybe RecordSettings)
forall a b. (Ptr a -> IO b) -> Ptr a -> IO (Maybe b)
maybePeek (\Ptr RecordSettings
j -> Ptr RecordSettings -> IO RecordSettings
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @RecordSettings (Ptr RecordSettings
j)) Ptr RecordSettings
pRecordSettings
    Ptr Instance_T
instance' <- Ptr (Ptr Instance_T) -> IO (Ptr Instance_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Instance_T) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
80 :: Ptr (Ptr Instance_T)))
    "memoryTypeIndex" ::: Word32
vulkanApiVersion <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
88 :: Ptr Word32))
    Ptr ExternalMemoryHandleTypeFlagsKHR
pTypeExternalMemoryHandleTypes <- Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR)
-> IO (Ptr ExternalMemoryHandleTypeFlagsKHR)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ExternalMemoryHandleTypeFlagsKHR) ((Ptr AllocatorCreateInfo
p Ptr AllocatorCreateInfo
-> Int -> Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
96 :: Ptr (Ptr ExternalMemoryHandleTypeFlagsKHR)))
    AllocatorCreateInfo -> IO AllocatorCreateInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocatorCreateInfo -> IO AllocatorCreateInfo)
-> AllocatorCreateInfo -> IO AllocatorCreateInfo
forall a b. (a -> b) -> a -> b
$ AllocatorCreateFlagBits
-> Ptr PhysicalDevice_T
-> Ptr Device_T
-> ("lostAllocationCount" ::: Word64)
-> Maybe AllocationCallbacks
-> Maybe DeviceMemoryCallbacks
-> ("memoryTypeIndex" ::: Word32)
-> Ptr ("lostAllocationCount" ::: Word64)
-> Maybe VulkanFunctions
-> Maybe RecordSettings
-> Ptr Instance_T
-> ("memoryTypeIndex" ::: Word32)
-> Ptr ExternalMemoryHandleTypeFlagsKHR
-> AllocatorCreateInfo
AllocatorCreateInfo
             AllocatorCreateFlagBits
flags Ptr PhysicalDevice_T
physicalDevice Ptr Device_T
device "lostAllocationCount" ::: Word64
preferredLargeHeapBlockSize Maybe AllocationCallbacks
pAllocationCallbacks' Maybe DeviceMemoryCallbacks
pDeviceMemoryCallbacks' "memoryTypeIndex" ::: Word32
frameInUseCount Ptr ("lostAllocationCount" ::: Word64)
pHeapSizeLimit Maybe VulkanFunctions
pVulkanFunctions' Maybe RecordSettings
pRecordSettings' Ptr Instance_T
instance' "memoryTypeIndex" ::: Word32
vulkanApiVersion Ptr ExternalMemoryHandleTypeFlagsKHR
pTypeExternalMemoryHandleTypes

instance Zero AllocatorCreateInfo where
  zero :: AllocatorCreateInfo
zero = AllocatorCreateFlagBits
-> Ptr PhysicalDevice_T
-> Ptr Device_T
-> ("lostAllocationCount" ::: Word64)
-> Maybe AllocationCallbacks
-> Maybe DeviceMemoryCallbacks
-> ("memoryTypeIndex" ::: Word32)
-> Ptr ("lostAllocationCount" ::: Word64)
-> Maybe VulkanFunctions
-> Maybe RecordSettings
-> Ptr Instance_T
-> ("memoryTypeIndex" ::: Word32)
-> Ptr ExternalMemoryHandleTypeFlagsKHR
-> AllocatorCreateInfo
AllocatorCreateInfo
           AllocatorCreateFlagBits
forall a. Zero a => a
zero
           Ptr PhysicalDevice_T
forall a. Zero a => a
zero
           Ptr Device_T
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           Maybe AllocationCallbacks
forall a. Maybe a
Nothing
           Maybe DeviceMemoryCallbacks
forall a. Maybe a
Nothing
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Ptr ("lostAllocationCount" ::: Word64)
forall a. Zero a => a
zero
           Maybe VulkanFunctions
forall a. Maybe a
Nothing
           Maybe RecordSettings
forall a. Maybe a
Nothing
           Ptr Instance_T
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Ptr ExternalMemoryHandleTypeFlagsKHR
forall a. Zero a => a
zero


-- | VmaAllocatorInfo
--
-- Information about existing 'Allocator' object.
data AllocatorInfo = AllocatorInfo
  { -- | Handle to Vulkan instance object.
    --
    -- This is the same value as has been passed through
    -- /VmaAllocatorCreateInfo::instance/.
    AllocatorInfo -> Ptr Instance_T
instance' :: Ptr Instance_T
  , -- | Handle to Vulkan physical device object.
    --
    -- This is the same value as has been passed through
    -- /VmaAllocatorCreateInfo::physicalDevice/.
    AllocatorInfo -> Ptr PhysicalDevice_T
physicalDevice :: Ptr PhysicalDevice_T
  , -- | Handle to Vulkan device object.
    --
    -- This is the same value as has been passed through
    -- /VmaAllocatorCreateInfo::device/.
    AllocatorInfo -> Ptr Device_T
device :: Ptr Device_T
  }
  deriving (Typeable, AllocatorInfo -> AllocatorInfo -> Bool
(AllocatorInfo -> AllocatorInfo -> Bool)
-> (AllocatorInfo -> AllocatorInfo -> Bool) -> Eq AllocatorInfo
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AllocatorInfo -> AllocatorInfo -> Bool
$c/= :: AllocatorInfo -> AllocatorInfo -> Bool
== :: AllocatorInfo -> AllocatorInfo -> Bool
$c== :: AllocatorInfo -> AllocatorInfo -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (AllocatorInfo)
#endif
deriving instance Show AllocatorInfo

instance ToCStruct AllocatorInfo where
  withCStruct :: AllocatorInfo -> (Ptr AllocatorInfo -> IO b) -> IO b
withCStruct AllocatorInfo
x Ptr AllocatorInfo -> IO b
f = Int -> (Ptr AllocatorInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
24 ((Ptr AllocatorInfo -> IO b) -> IO b)
-> (Ptr AllocatorInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr AllocatorInfo
p -> Ptr AllocatorInfo -> AllocatorInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocatorInfo
p AllocatorInfo
x (Ptr AllocatorInfo -> IO b
f Ptr AllocatorInfo
p)
  pokeCStruct :: Ptr AllocatorInfo -> AllocatorInfo -> IO b -> IO b
pokeCStruct Ptr AllocatorInfo
p AllocatorInfo{Ptr Device_T
Ptr Instance_T
Ptr PhysicalDevice_T
device :: Ptr Device_T
physicalDevice :: Ptr PhysicalDevice_T
instance' :: Ptr Instance_T
$sel:device:AllocatorInfo :: AllocatorInfo -> Ptr Device_T
$sel:physicalDevice:AllocatorInfo :: AllocatorInfo -> Ptr PhysicalDevice_T
$sel:instance':AllocatorInfo :: AllocatorInfo -> Ptr Instance_T
..} IO b
f = do
    Ptr (Ptr Instance_T) -> Ptr Instance_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr (Ptr Instance_T))) (Ptr Instance_T
instance')
    Ptr (Ptr PhysicalDevice_T) -> Ptr PhysicalDevice_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T))) (Ptr PhysicalDevice_T
physicalDevice)
    Ptr (Ptr Device_T) -> Ptr Device_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T))) (Ptr Device_T
device)
    IO b
f
  cStructSize :: Int
cStructSize = Int
24
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr AllocatorInfo -> IO b -> IO b
pokeZeroCStruct Ptr AllocatorInfo
p IO b
f = do
    Ptr (Ptr Instance_T) -> Ptr Instance_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr (Ptr Instance_T))) (Ptr Instance_T
forall a. Zero a => a
zero)
    Ptr (Ptr PhysicalDevice_T) -> Ptr PhysicalDevice_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T))) (Ptr PhysicalDevice_T
forall a. Zero a => a
zero)
    Ptr (Ptr Device_T) -> Ptr Device_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T))) (Ptr Device_T
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct AllocatorInfo where
  peekCStruct :: Ptr AllocatorInfo -> IO AllocatorInfo
peekCStruct Ptr AllocatorInfo
p = do
    Ptr Instance_T
instance' <- Ptr (Ptr Instance_T) -> IO (Ptr Instance_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Instance_T) ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Instance_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr (Ptr Instance_T)))
    Ptr PhysicalDevice_T
physicalDevice <- Ptr (Ptr PhysicalDevice_T) -> IO (Ptr PhysicalDevice_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr PhysicalDevice_T) ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr PhysicalDevice_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr PhysicalDevice_T)))
    Ptr Device_T
device <- Ptr (Ptr Device_T) -> IO (Ptr Device_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Device_T) ((Ptr AllocatorInfo
p Ptr AllocatorInfo -> Int -> Ptr (Ptr Device_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Device_T)))
    AllocatorInfo -> IO AllocatorInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocatorInfo -> IO AllocatorInfo)
-> AllocatorInfo -> IO AllocatorInfo
forall a b. (a -> b) -> a -> b
$ Ptr Instance_T
-> Ptr PhysicalDevice_T -> Ptr Device_T -> AllocatorInfo
AllocatorInfo
             Ptr Instance_T
instance' Ptr PhysicalDevice_T
physicalDevice Ptr Device_T
device

instance Storable AllocatorInfo where
  sizeOf :: AllocatorInfo -> Int
sizeOf ~AllocatorInfo
_ = Int
24
  alignment :: AllocatorInfo -> Int
alignment ~AllocatorInfo
_ = Int
8
  peek :: Ptr AllocatorInfo -> IO AllocatorInfo
peek = Ptr AllocatorInfo -> IO AllocatorInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr AllocatorInfo -> AllocatorInfo -> IO ()
poke Ptr AllocatorInfo
ptr AllocatorInfo
poked = Ptr AllocatorInfo -> AllocatorInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocatorInfo
ptr AllocatorInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero AllocatorInfo where
  zero :: AllocatorInfo
zero = Ptr Instance_T
-> Ptr PhysicalDevice_T -> Ptr Device_T -> AllocatorInfo
AllocatorInfo
           Ptr Instance_T
forall a. Zero a => a
zero
           Ptr PhysicalDevice_T
forall a. Zero a => a
zero
           Ptr Device_T
forall a. Zero a => a
zero


-- | VmaStatInfo
--
-- Calculated statistics of memory usage in entire allocator.
data StatInfo = StatInfo
  { -- | Number of @VkDeviceMemory@ Vulkan memory blocks allocated.
    StatInfo -> "memoryTypeIndex" ::: Word32
blockCount :: Word32
  , -- | Number of 'Allocation' allocation objects allocated.
    StatInfo -> "memoryTypeIndex" ::: Word32
allocationCount :: Word32
  , -- | Number of free ranges of memory between allocations.
    StatInfo -> "memoryTypeIndex" ::: Word32
unusedRangeCount :: Word32
  , -- | Total number of bytes occupied by all allocations.
    StatInfo -> "lostAllocationCount" ::: Word64
usedBytes :: DeviceSize
  , -- | Total number of bytes occupied by unused ranges.
    StatInfo -> "lostAllocationCount" ::: Word64
unusedBytes :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
allocationSizeMin :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
allocationSizeAvg :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
allocationSizeMax :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
unusedRangeSizeMin :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
unusedRangeSizeAvg :: DeviceSize
  , 
    StatInfo -> "lostAllocationCount" ::: Word64
unusedRangeSizeMax :: DeviceSize
  }
  deriving (Typeable, StatInfo -> StatInfo -> Bool
(StatInfo -> StatInfo -> Bool)
-> (StatInfo -> StatInfo -> Bool) -> Eq StatInfo
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: StatInfo -> StatInfo -> Bool
$c/= :: StatInfo -> StatInfo -> Bool
== :: StatInfo -> StatInfo -> Bool
$c== :: StatInfo -> StatInfo -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (StatInfo)
#endif
deriving instance Show StatInfo

instance ToCStruct StatInfo where
  withCStruct :: StatInfo -> (Ptr StatInfo -> IO b) -> IO b
withCStruct StatInfo
x Ptr StatInfo -> IO b
f = Int -> (Ptr StatInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
80 ((Ptr StatInfo -> IO b) -> IO b) -> (Ptr StatInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr StatInfo
p -> Ptr StatInfo -> StatInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr StatInfo
p StatInfo
x (Ptr StatInfo -> IO b
f Ptr StatInfo
p)
  pokeCStruct :: Ptr StatInfo -> StatInfo -> IO b -> IO b
pokeCStruct Ptr StatInfo
p StatInfo{"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
unusedRangeSizeMax :: "lostAllocationCount" ::: Word64
unusedRangeSizeAvg :: "lostAllocationCount" ::: Word64
unusedRangeSizeMin :: "lostAllocationCount" ::: Word64
allocationSizeMax :: "lostAllocationCount" ::: Word64
allocationSizeAvg :: "lostAllocationCount" ::: Word64
allocationSizeMin :: "lostAllocationCount" ::: Word64
unusedBytes :: "lostAllocationCount" ::: Word64
usedBytes :: "lostAllocationCount" ::: Word64
unusedRangeCount :: "memoryTypeIndex" ::: Word32
allocationCount :: "memoryTypeIndex" ::: Word32
blockCount :: "memoryTypeIndex" ::: Word32
$sel:unusedRangeSizeMax:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:unusedRangeSizeAvg:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:unusedRangeSizeMin:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:allocationSizeMax:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:allocationSizeAvg:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:allocationSizeMin:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:unusedBytes:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:usedBytes:StatInfo :: StatInfo -> "lostAllocationCount" ::: Word64
$sel:unusedRangeCount:StatInfo :: StatInfo -> "memoryTypeIndex" ::: Word32
$sel:allocationCount:StatInfo :: StatInfo -> "memoryTypeIndex" ::: Word32
$sel:blockCount:StatInfo :: StatInfo -> "memoryTypeIndex" ::: Word32
..} IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
blockCount)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
allocationCount)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
unusedRangeCount)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
usedBytes)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedBytes)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
allocationSizeMin)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
allocationSizeAvg)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
allocationSizeMax)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedRangeSizeMin)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedRangeSizeAvg)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedRangeSizeMax)
    IO b
f
  cStructSize :: Int
cStructSize = Int
80
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr StatInfo -> IO b -> IO b
pokeZeroCStruct Ptr StatInfo
p IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct StatInfo where
  peekCStruct :: Ptr StatInfo -> IO StatInfo
peekCStruct Ptr StatInfo
p = do
    "memoryTypeIndex" ::: Word32
blockCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32))
    "memoryTypeIndex" ::: Word32
allocationCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr Word32))
    "memoryTypeIndex" ::: Word32
unusedRangeCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32))
    "lostAllocationCount" ::: Word64
usedBytes <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
unusedBytes <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
allocationSizeMin <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
allocationSizeAvg <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
allocationSizeMax <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
unusedRangeSizeMin <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
unusedRangeSizeAvg <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
unusedRangeSizeMax <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr StatInfo
p Ptr StatInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr DeviceSize))
    StatInfo -> IO StatInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (StatInfo -> IO StatInfo) -> StatInfo -> IO StatInfo
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> StatInfo
StatInfo
             "memoryTypeIndex" ::: Word32
blockCount "memoryTypeIndex" ::: Word32
allocationCount "memoryTypeIndex" ::: Word32
unusedRangeCount "lostAllocationCount" ::: Word64
usedBytes "lostAllocationCount" ::: Word64
unusedBytes "lostAllocationCount" ::: Word64
allocationSizeMin "lostAllocationCount" ::: Word64
allocationSizeAvg "lostAllocationCount" ::: Word64
allocationSizeMax "lostAllocationCount" ::: Word64
unusedRangeSizeMin "lostAllocationCount" ::: Word64
unusedRangeSizeAvg "lostAllocationCount" ::: Word64
unusedRangeSizeMax

instance Storable StatInfo where
  sizeOf :: StatInfo -> Int
sizeOf ~StatInfo
_ = Int
80
  alignment :: StatInfo -> Int
alignment ~StatInfo
_ = Int
8
  peek :: Ptr StatInfo -> IO StatInfo
peek = Ptr StatInfo -> IO StatInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr StatInfo -> StatInfo -> IO ()
poke Ptr StatInfo
ptr StatInfo
poked = Ptr StatInfo -> StatInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr StatInfo
ptr StatInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero StatInfo where
  zero :: StatInfo
zero = ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> StatInfo
StatInfo
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero


-- | VmaStats
--
-- -   'StatInfo' /memoryType/ [VK_MAX_MEMORY_TYPES]
--
-- -   'StatInfo' /memoryHeap/ [VK_MAX_MEMORY_HEAPS]
--
-- -   'StatInfo' /total/
--
-- General statistics from current state of Allocator.
--
-- === memoryHeap
--
-- memoryHeap
-- VmaStats
-- VmaStats
-- memoryHeap
-- @VmaStatInfo VmaStats::memoryHeap[VK_MAX_MEMORY_HEAPS]@
--
-- === memoryType
--
-- memoryType
-- VmaStats
-- VmaStats
-- memoryType
-- @VmaStatInfo VmaStats::memoryType[VK_MAX_MEMORY_TYPES]@
data Stats = Stats
  { -- No documentation found for Nested "VmaStats" "memoryType"
    Stats -> Vector StatInfo
memoryType :: Vector StatInfo
  , -- No documentation found for Nested "VmaStats" "memoryHeap"
    Stats -> Vector StatInfo
memoryHeap :: Vector StatInfo
  , 
    Stats -> StatInfo
total :: StatInfo
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (Stats)
#endif
deriving instance Show Stats

instance ToCStruct Stats where
  withCStruct :: Stats -> (Ptr Stats -> IO b) -> IO b
withCStruct Stats
x Ptr Stats -> IO b
f = Int -> (Ptr Stats -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
3920 ((Ptr Stats -> IO b) -> IO b) -> (Ptr Stats -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr Stats
p -> Ptr Stats -> Stats -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr Stats
p Stats
x (Ptr Stats -> IO b
f Ptr Stats
p)
  pokeCStruct :: Ptr Stats -> Stats -> IO b -> IO b
pokeCStruct Ptr Stats
p Stats{Vector StatInfo
StatInfo
total :: StatInfo
memoryHeap :: Vector StatInfo
memoryType :: Vector StatInfo
$sel:total:Stats :: Stats -> StatInfo
$sel:memoryHeap:Stats :: Stats -> Vector StatInfo
$sel:memoryType:Stats :: Stats -> Vector StatInfo
..} IO b
f = do
    Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless ((Vector StatInfo -> Int
forall a. Vector a -> Int
Data.Vector.length (Vector StatInfo -> Int) -> Vector StatInfo -> Int
forall a b. (a -> b) -> a -> b
$ (Vector StatInfo
memoryType)) Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
<= Int
forall a. Integral a => a
MAX_MEMORY_TYPES) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
      IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"memoryType is too long, a maximum of MAX_MEMORY_TYPES elements are allowed" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
    (Int -> StatInfo -> IO ()) -> Vector StatInfo -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i StatInfo
e -> Ptr StatInfo -> StatInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr (FixedArray MAX_MEMORY_TYPES StatInfo) -> Ptr StatInfo
forall a (n :: Nat). Ptr (FixedArray n a) -> Ptr a
lowerArrayPtr ((Ptr Stats
p Ptr Stats -> Int -> Ptr (FixedArray MAX_MEMORY_TYPES StatInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr (FixedArray MAX_MEMORY_TYPES StatInfo)))) Ptr StatInfo -> Int -> Ptr StatInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
80 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr StatInfo) (StatInfo
e)) (Vector StatInfo
memoryType)
    Bool -> IO () -> IO ()
forall (f :: * -> *). Applicative f => Bool -> f () -> f ()
unless ((Vector StatInfo -> Int
forall a. Vector a -> Int
Data.Vector.length (Vector StatInfo -> Int) -> Vector StatInfo -> Int
forall a b. (a -> b) -> a -> b
$ (Vector StatInfo
memoryHeap)) Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
<= Int
forall a. Integral a => a
MAX_MEMORY_HEAPS) (IO () -> IO ()) -> IO () -> IO ()
forall a b. (a -> b) -> a -> b
$
      IOException -> IO ()
forall e a. Exception e => e -> IO a
throwIO (IOException -> IO ()) -> IOException -> IO ()
forall a b. (a -> b) -> a -> b
$ Maybe Handle
-> IOErrorType
-> String
-> String
-> Maybe CInt
-> Maybe String
-> IOException
IOError Maybe Handle
forall a. Maybe a
Nothing IOErrorType
InvalidArgument String
"" String
"memoryHeap is too long, a maximum of MAX_MEMORY_HEAPS elements are allowed" Maybe CInt
forall a. Maybe a
Nothing Maybe String
forall a. Maybe a
Nothing
    (Int -> StatInfo -> IO ()) -> Vector StatInfo -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i StatInfo
e -> Ptr StatInfo -> StatInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo) -> Ptr StatInfo
forall a (n :: Nat). Ptr (FixedArray n a) -> Ptr a
lowerArrayPtr ((Ptr Stats
p Ptr Stats -> Int -> Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
2560 :: Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo)))) Ptr StatInfo -> Int -> Ptr StatInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
80 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr StatInfo) (StatInfo
e)) (Vector StatInfo
memoryHeap)
    Ptr StatInfo -> StatInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Stats
p Ptr Stats -> Int -> Ptr StatInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
3840 :: Ptr StatInfo)) (StatInfo
total)
    IO b
f
  cStructSize :: Int
cStructSize = Int
3920
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr Stats -> IO b -> IO b
pokeZeroCStruct Ptr Stats
p IO b
f = do
    Ptr StatInfo -> StatInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Stats
p Ptr Stats -> Int -> Ptr StatInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
3840 :: Ptr StatInfo)) (StatInfo
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct Stats where
  peekCStruct :: Ptr Stats -> IO Stats
peekCStruct Ptr Stats
p = do
    Vector StatInfo
memoryType <- Int -> (Int -> IO StatInfo) -> IO (Vector StatInfo)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (Int
forall a. Integral a => a
MAX_MEMORY_TYPES) (\Int
i -> Ptr StatInfo -> IO StatInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @StatInfo (((Ptr (FixedArray MAX_MEMORY_TYPES StatInfo) -> Ptr StatInfo
forall a (n :: Nat). Ptr (FixedArray n a) -> Ptr a
lowerArrayPtr @StatInfo ((Ptr Stats
p Ptr Stats -> Int -> Ptr (FixedArray MAX_MEMORY_TYPES StatInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr (FixedArray MAX_MEMORY_TYPES StatInfo)))) Ptr StatInfo -> Int -> Ptr StatInfo
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
80 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr StatInfo)))
    Vector StatInfo
memoryHeap <- Int -> (Int -> IO StatInfo) -> IO (Vector StatInfo)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (Int
forall a. Integral a => a
MAX_MEMORY_HEAPS) (\Int
i -> Ptr StatInfo -> IO StatInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @StatInfo (((Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo) -> Ptr StatInfo
forall a (n :: Nat). Ptr (FixedArray n a) -> Ptr a
lowerArrayPtr @StatInfo ((Ptr Stats
p Ptr Stats -> Int -> Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
2560 :: Ptr (FixedArray MAX_MEMORY_HEAPS StatInfo)))) Ptr StatInfo -> Int -> Ptr StatInfo
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
80 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr StatInfo)))
    StatInfo
total <- Ptr StatInfo -> IO StatInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct @StatInfo ((Ptr Stats
p Ptr Stats -> Int -> Ptr StatInfo
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
3840 :: Ptr StatInfo))
    Stats -> IO Stats
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Stats -> IO Stats) -> Stats -> IO Stats
forall a b. (a -> b) -> a -> b
$ Vector StatInfo -> Vector StatInfo -> StatInfo -> Stats
Stats
             Vector StatInfo
memoryType Vector StatInfo
memoryHeap StatInfo
total

instance Storable Stats where
  sizeOf :: Stats -> Int
sizeOf ~Stats
_ = Int
3920
  alignment :: Stats -> Int
alignment ~Stats
_ = Int
8
  peek :: Ptr Stats -> IO Stats
peek = Ptr Stats -> IO Stats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr Stats -> Stats -> IO ()
poke Ptr Stats
ptr Stats
poked = Ptr Stats -> Stats -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr Stats
ptr Stats
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero Stats where
  zero :: Stats
zero = Vector StatInfo -> Vector StatInfo -> StatInfo -> Stats
Stats
           Vector StatInfo
forall a. Monoid a => a
mempty
           Vector StatInfo
forall a. Monoid a => a
mempty
           StatInfo
forall a. Zero a => a
zero


-- | VmaBudget
--
-- Statistics of current memory usage and available budget, in bytes, for
-- specific memory heap.
data Budget = Budget
  { -- | Sum size of all @VkDeviceMemory@ blocks allocated from particular heap,
    -- in bytes.
    Budget -> "lostAllocationCount" ::: Word64
blockBytes :: DeviceSize
  , -- | Sum size of all allocations created in particular heap, in bytes.
    --
    -- Usually less or equal than @blockBytes@. Difference
    -- @blockBytes - allocationBytes@ is the amount of memory allocated but
    -- unused - available for new allocations or wasted due to fragmentation.
    --
    -- It might be greater than @blockBytes@ if there are some allocations in
    -- lost state, as they account to this value as well.
    Budget -> "lostAllocationCount" ::: Word64
allocationBytes :: DeviceSize
  , -- | Estimated current memory usage of the program, in bytes.
    --
    -- Fetched from system using @VK_EXT_memory_budget@ extension if enabled.
    --
    -- It might be different than @blockBytes@ (usually higher) due to
    -- additional implicit objects also occupying the memory, like swapchain,
    -- pipelines, descriptor heaps, command buffers, or @VkDeviceMemory@ blocks
    -- allocated outside of this library, if any.
    Budget -> "lostAllocationCount" ::: Word64
usage :: DeviceSize
  , -- | Estimated amount of memory available to the program, in bytes.
    --
    -- Fetched from system using @VK_EXT_memory_budget@ extension if enabled.
    --
    -- It might be different (most probably smaller) than
    -- @VkMemoryHeap::size[heapIndex]@ due to factors external to the program,
    -- like other programs also consuming system resources. Difference
    -- @budget - usage@ is the amount of additional memory that can probably be
    -- allocated without problems. Exceeding the budget may result in various
    -- problems.
    Budget -> "lostAllocationCount" ::: Word64
budget :: DeviceSize
  }
  deriving (Typeable, Budget -> Budget -> Bool
(Budget -> Budget -> Bool)
-> (Budget -> Budget -> Bool) -> Eq Budget
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Budget -> Budget -> Bool
$c/= :: Budget -> Budget -> Bool
== :: Budget -> Budget -> Bool
$c== :: Budget -> Budget -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (Budget)
#endif
deriving instance Show Budget

instance ToCStruct Budget where
  withCStruct :: Budget -> (Ptr Budget -> IO b) -> IO b
withCStruct Budget
x Ptr Budget -> IO b
f = Int -> (Ptr Budget -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
32 ((Ptr Budget -> IO b) -> IO b) -> (Ptr Budget -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr Budget
p -> Ptr Budget -> Budget -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr Budget
p Budget
x (Ptr Budget -> IO b
f Ptr Budget
p)
  pokeCStruct :: Ptr Budget -> Budget -> IO b -> IO b
pokeCStruct Ptr Budget
p Budget{"lostAllocationCount" ::: Word64
budget :: "lostAllocationCount" ::: Word64
usage :: "lostAllocationCount" ::: Word64
allocationBytes :: "lostAllocationCount" ::: Word64
blockBytes :: "lostAllocationCount" ::: Word64
$sel:budget:Budget :: Budget -> "lostAllocationCount" ::: Word64
$sel:usage:Budget :: Budget -> "lostAllocationCount" ::: Word64
$sel:allocationBytes:Budget :: Budget -> "lostAllocationCount" ::: Word64
$sel:blockBytes:Budget :: Budget -> "lostAllocationCount" ::: Word64
..} IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
blockBytes)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
allocationBytes)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
usage)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
budget)
    IO b
f
  cStructSize :: Int
cStructSize = Int
32
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr Budget -> IO b -> IO b
pokeZeroCStruct Ptr Budget
p IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct Budget where
  peekCStruct :: Ptr Budget -> IO Budget
peekCStruct Ptr Budget
p = do
    "lostAllocationCount" ::: Word64
blockBytes <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
allocationBytes <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
usage <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
budget <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr Budget
p Ptr Budget -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize))
    Budget -> IO Budget
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Budget -> IO Budget) -> Budget -> IO Budget
forall a b. (a -> b) -> a -> b
$ ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> Budget
Budget
             "lostAllocationCount" ::: Word64
blockBytes "lostAllocationCount" ::: Word64
allocationBytes "lostAllocationCount" ::: Word64
usage "lostAllocationCount" ::: Word64
budget

instance Storable Budget where
  sizeOf :: Budget -> Int
sizeOf ~Budget
_ = Int
32
  alignment :: Budget -> Int
alignment ~Budget
_ = Int
8
  peek :: Ptr Budget -> IO Budget
peek = Ptr Budget -> IO Budget
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr Budget -> Budget -> IO ()
poke Ptr Budget
ptr Budget
poked = Ptr Budget -> Budget -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr Budget
ptr Budget
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero Budget where
  zero :: Budget
zero = ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> Budget
Budget
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero


-- | VmaPool
--
-- Represents custom memory pool.
--
-- Fill structure 'PoolCreateInfo' and call function 'createPool' to create
-- it. Call function 'destroyPool' to destroy it.
--
-- For more information see /Custom memory pools/.
newtype Pool = Pool Word64
  deriving newtype (Pool -> Pool -> Bool
(Pool -> Pool -> Bool) -> (Pool -> Pool -> Bool) -> Eq Pool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Pool -> Pool -> Bool
$c/= :: Pool -> Pool -> Bool
== :: Pool -> Pool -> Bool
$c== :: Pool -> Pool -> Bool
Eq, Eq Pool
Eq Pool
-> (Pool -> Pool -> Ordering)
-> (Pool -> Pool -> Bool)
-> (Pool -> Pool -> Bool)
-> (Pool -> Pool -> Bool)
-> (Pool -> Pool -> Bool)
-> (Pool -> Pool -> Pool)
-> (Pool -> Pool -> Pool)
-> Ord Pool
Pool -> Pool -> Bool
Pool -> Pool -> Ordering
Pool -> Pool -> Pool
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: Pool -> Pool -> Pool
$cmin :: Pool -> Pool -> Pool
max :: Pool -> Pool -> Pool
$cmax :: Pool -> Pool -> Pool
>= :: Pool -> Pool -> Bool
$c>= :: Pool -> Pool -> Bool
> :: Pool -> Pool -> Bool
$c> :: Pool -> Pool -> Bool
<= :: Pool -> Pool -> Bool
$c<= :: Pool -> Pool -> Bool
< :: Pool -> Pool -> Bool
$c< :: Pool -> Pool -> Bool
compare :: Pool -> Pool -> Ordering
$ccompare :: Pool -> Pool -> Ordering
$cp1Ord :: Eq Pool
Ord, Ptr b -> Int -> IO Pool
Ptr b -> Int -> Pool -> IO ()
Ptr Pool -> IO Pool
Ptr Pool -> Int -> IO Pool
Ptr Pool -> Int -> Pool -> IO ()
Ptr Pool -> Pool -> IO ()
Pool -> Int
(Pool -> Int)
-> (Pool -> Int)
-> (Ptr Pool -> Int -> IO Pool)
-> (Ptr Pool -> Int -> Pool -> IO ())
-> (forall b. Ptr b -> Int -> IO Pool)
-> (forall b. Ptr b -> Int -> Pool -> IO ())
-> (Ptr Pool -> IO Pool)
-> (Ptr Pool -> Pool -> IO ())
-> Storable Pool
forall b. Ptr b -> Int -> IO Pool
forall b. Ptr b -> Int -> Pool -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr Pool -> Pool -> IO ()
$cpoke :: Ptr Pool -> Pool -> IO ()
peek :: Ptr Pool -> IO Pool
$cpeek :: Ptr Pool -> IO Pool
pokeByteOff :: Ptr b -> Int -> Pool -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> Pool -> IO ()
peekByteOff :: Ptr b -> Int -> IO Pool
$cpeekByteOff :: forall b. Ptr b -> Int -> IO Pool
pokeElemOff :: Ptr Pool -> Int -> Pool -> IO ()
$cpokeElemOff :: Ptr Pool -> Int -> Pool -> IO ()
peekElemOff :: Ptr Pool -> Int -> IO Pool
$cpeekElemOff :: Ptr Pool -> Int -> IO Pool
alignment :: Pool -> Int
$calignment :: Pool -> Int
sizeOf :: Pool -> Int
$csizeOf :: Pool -> Int
Storable, Pool
Pool -> Zero Pool
forall a. a -> Zero a
zero :: Pool
$czero :: Pool
Zero)
  deriving anyclass (Eq Pool
Zero Pool
Eq Pool -> Zero Pool -> IsHandle Pool
forall a. Eq a -> Zero a -> IsHandle a
$cp2IsHandle :: Zero Pool
$cp1IsHandle :: Eq Pool
IsHandle)
instance Show Pool where
  showsPrec :: Int -> Pool -> ShowS
showsPrec Int
p (Pool "lostAllocationCount" ::: Word64
x) = Bool -> ShowS -> ShowS
showParen (Int
p Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
>= Int
11) (String -> ShowS
showString String
"Pool 0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("lostAllocationCount" ::: Word64) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "lostAllocationCount" ::: Word64
x)



newtype MemoryUsage = MemoryUsage Int32
  deriving newtype (MemoryUsage -> MemoryUsage -> Bool
(MemoryUsage -> MemoryUsage -> Bool)
-> (MemoryUsage -> MemoryUsage -> Bool) -> Eq MemoryUsage
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: MemoryUsage -> MemoryUsage -> Bool
$c/= :: MemoryUsage -> MemoryUsage -> Bool
== :: MemoryUsage -> MemoryUsage -> Bool
$c== :: MemoryUsage -> MemoryUsage -> Bool
Eq, Eq MemoryUsage
Eq MemoryUsage
-> (MemoryUsage -> MemoryUsage -> Ordering)
-> (MemoryUsage -> MemoryUsage -> Bool)
-> (MemoryUsage -> MemoryUsage -> Bool)
-> (MemoryUsage -> MemoryUsage -> Bool)
-> (MemoryUsage -> MemoryUsage -> Bool)
-> (MemoryUsage -> MemoryUsage -> MemoryUsage)
-> (MemoryUsage -> MemoryUsage -> MemoryUsage)
-> Ord MemoryUsage
MemoryUsage -> MemoryUsage -> Bool
MemoryUsage -> MemoryUsage -> Ordering
MemoryUsage -> MemoryUsage -> MemoryUsage
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: MemoryUsage -> MemoryUsage -> MemoryUsage
$cmin :: MemoryUsage -> MemoryUsage -> MemoryUsage
max :: MemoryUsage -> MemoryUsage -> MemoryUsage
$cmax :: MemoryUsage -> MemoryUsage -> MemoryUsage
>= :: MemoryUsage -> MemoryUsage -> Bool
$c>= :: MemoryUsage -> MemoryUsage -> Bool
> :: MemoryUsage -> MemoryUsage -> Bool
$c> :: MemoryUsage -> MemoryUsage -> Bool
<= :: MemoryUsage -> MemoryUsage -> Bool
$c<= :: MemoryUsage -> MemoryUsage -> Bool
< :: MemoryUsage -> MemoryUsage -> Bool
$c< :: MemoryUsage -> MemoryUsage -> Bool
compare :: MemoryUsage -> MemoryUsage -> Ordering
$ccompare :: MemoryUsage -> MemoryUsage -> Ordering
$cp1Ord :: Eq MemoryUsage
Ord, Ptr b -> Int -> IO MemoryUsage
Ptr b -> Int -> MemoryUsage -> IO ()
Ptr MemoryUsage -> IO MemoryUsage
Ptr MemoryUsage -> Int -> IO MemoryUsage
Ptr MemoryUsage -> Int -> MemoryUsage -> IO ()
Ptr MemoryUsage -> MemoryUsage -> IO ()
MemoryUsage -> Int
(MemoryUsage -> Int)
-> (MemoryUsage -> Int)
-> (Ptr MemoryUsage -> Int -> IO MemoryUsage)
-> (Ptr MemoryUsage -> Int -> MemoryUsage -> IO ())
-> (forall b. Ptr b -> Int -> IO MemoryUsage)
-> (forall b. Ptr b -> Int -> MemoryUsage -> IO ())
-> (Ptr MemoryUsage -> IO MemoryUsage)
-> (Ptr MemoryUsage -> MemoryUsage -> IO ())
-> Storable MemoryUsage
forall b. Ptr b -> Int -> IO MemoryUsage
forall b. Ptr b -> Int -> MemoryUsage -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr MemoryUsage -> MemoryUsage -> IO ()
$cpoke :: Ptr MemoryUsage -> MemoryUsage -> IO ()
peek :: Ptr MemoryUsage -> IO MemoryUsage
$cpeek :: Ptr MemoryUsage -> IO MemoryUsage
pokeByteOff :: Ptr b -> Int -> MemoryUsage -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> MemoryUsage -> IO ()
peekByteOff :: Ptr b -> Int -> IO MemoryUsage
$cpeekByteOff :: forall b. Ptr b -> Int -> IO MemoryUsage
pokeElemOff :: Ptr MemoryUsage -> Int -> MemoryUsage -> IO ()
$cpokeElemOff :: Ptr MemoryUsage -> Int -> MemoryUsage -> IO ()
peekElemOff :: Ptr MemoryUsage -> Int -> IO MemoryUsage
$cpeekElemOff :: Ptr MemoryUsage -> Int -> IO MemoryUsage
alignment :: MemoryUsage -> Int
$calignment :: MemoryUsage -> Int
sizeOf :: MemoryUsage -> Int
$csizeOf :: MemoryUsage -> Int
Storable, MemoryUsage
MemoryUsage -> Zero MemoryUsage
forall a. a -> Zero a
zero :: MemoryUsage
$czero :: MemoryUsage
Zero)

-- | No intended memory usage specified. Use other members of
-- 'AllocationCreateInfo' to specify your requirements.
pattern $bMEMORY_USAGE_UNKNOWN :: MemoryUsage
$mMEMORY_USAGE_UNKNOWN :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_UNKNOWN              = MemoryUsage 0
-- | Memory will be used on device only, so fast access from the device is
-- preferred. It usually means device-local GPU (video) memory. No need to
-- be mappable on host. It is roughly equivalent of
-- @D3D12_HEAP_TYPE_DEFAULT@.
--
-- Usage:
--
-- -   Resources written and read by device, e.g. images used as
--     attachments.
--
-- -   Resources transferred from host once (immutable) or infrequently and
--     read by device multiple times, e.g. textures to be sampled, vertex
--     buffers, uniform (constant) buffers, and majority of other types of
--     resources used on GPU.
--
-- Allocation may still end up in @HOST_VISIBLE@ memory on some
-- implementations. In such case, you are free to map it. You can use
-- 'ALLOCATION_CREATE_MAPPED_BIT' with this usage type.
pattern $bMEMORY_USAGE_GPU_ONLY :: MemoryUsage
$mMEMORY_USAGE_GPU_ONLY :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_GPU_ONLY             = MemoryUsage 1
-- | Memory will be mappable on host. It usually means CPU (system) memory.
-- Guarantees to be @HOST_VISIBLE@ and @HOST_COHERENT@. CPU access is
-- typically uncached. Writes may be write-combined. Resources created in
-- this pool may still be accessible to the device, but access to them can
-- be slow. It is roughly equivalent of @D3D12_HEAP_TYPE_UPLOAD@.
--
-- Usage: Staging copy of resources used as transfer source.
pattern $bMEMORY_USAGE_CPU_ONLY :: MemoryUsage
$mMEMORY_USAGE_CPU_ONLY :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_CPU_ONLY             = MemoryUsage 2
-- | Memory that is both mappable on host (guarantees to be @HOST_VISIBLE@)
-- and preferably fast to access by GPU. CPU access is typically uncached.
-- Writes may be write-combined.
--
-- Usage: Resources written frequently by host (dynamic), read by device.
-- E.g. textures (with LINEAR layout), vertex buffers, uniform buffers
-- updated every frame or every draw call.
pattern $bMEMORY_USAGE_CPU_TO_GPU :: MemoryUsage
$mMEMORY_USAGE_CPU_TO_GPU :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_CPU_TO_GPU           = MemoryUsage 3
-- | Memory mappable on host (guarantees to be @HOST_VISIBLE@) and cached. It
-- is roughly equivalent of @D3D12_HEAP_TYPE_READBACK@.
--
-- Usage:
--
-- -   Resources written by device, read by host - results of some
--     computations, e.g. screen capture, average scene luminance for HDR
--     tone mapping.
--
-- -   Any resources read or accessed randomly on host, e.g. CPU-side copy
--     of vertex buffer used as source of transfer, but also used for
--     collision detection.
pattern $bMEMORY_USAGE_GPU_TO_CPU :: MemoryUsage
$mMEMORY_USAGE_GPU_TO_CPU :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_GPU_TO_CPU           = MemoryUsage 4
-- | CPU memory - memory that is preferably not @DEVICE_LOCAL@, but also not
-- guaranteed to be @HOST_VISIBLE@.
--
-- Usage: Staging copy of resources moved from GPU memory to CPU memory as
-- part of custom paging\/residency mechanism, to be moved back to GPU
-- memory when needed.
pattern $bMEMORY_USAGE_CPU_COPY :: MemoryUsage
$mMEMORY_USAGE_CPU_COPY :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_CPU_COPY             = MemoryUsage 5
-- | Lazily allocated GPU memory having
-- @VK_MEMORY_PROPERTY_LAZILY_ALLOCATED_BIT@. Exists mostly on mobile
-- platforms. Using it on desktop PC or other GPUs with no such memory type
-- present will fail the allocation.
--
-- Usage: Memory for transient attachment images (color attachments, depth
-- attachments etc.), created with
-- @VK_IMAGE_USAGE_TRANSIENT_ATTACHMENT_BIT@.
--
-- Allocations with this usage are always created as dedicated - it implies
-- 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT'.
pattern $bMEMORY_USAGE_GPU_LAZILY_ALLOCATED :: MemoryUsage
$mMEMORY_USAGE_GPU_LAZILY_ALLOCATED :: forall r. MemoryUsage -> (Void# -> r) -> (Void# -> r) -> r
MEMORY_USAGE_GPU_LAZILY_ALLOCATED = MemoryUsage 6
{-# complete MEMORY_USAGE_UNKNOWN,
             MEMORY_USAGE_GPU_ONLY,
             MEMORY_USAGE_CPU_ONLY,
             MEMORY_USAGE_CPU_TO_GPU,
             MEMORY_USAGE_GPU_TO_CPU,
             MEMORY_USAGE_CPU_COPY,
             MEMORY_USAGE_GPU_LAZILY_ALLOCATED :: MemoryUsage #-}

conNameMemoryUsage :: String
conNameMemoryUsage :: String
conNameMemoryUsage = String
"MemoryUsage"

enumPrefixMemoryUsage :: String
enumPrefixMemoryUsage :: String
enumPrefixMemoryUsage = String
"MEMORY_USAGE_"

showTableMemoryUsage :: [(MemoryUsage, String)]
showTableMemoryUsage :: [(MemoryUsage, String)]
showTableMemoryUsage =
  [ (MemoryUsage
MEMORY_USAGE_UNKNOWN             , String
"UNKNOWN")
  , (MemoryUsage
MEMORY_USAGE_GPU_ONLY            , String
"GPU_ONLY")
  , (MemoryUsage
MEMORY_USAGE_CPU_ONLY            , String
"CPU_ONLY")
  , (MemoryUsage
MEMORY_USAGE_CPU_TO_GPU          , String
"CPU_TO_GPU")
  , (MemoryUsage
MEMORY_USAGE_GPU_TO_CPU          , String
"GPU_TO_CPU")
  , (MemoryUsage
MEMORY_USAGE_CPU_COPY            , String
"CPU_COPY")
  , (MemoryUsage
MEMORY_USAGE_GPU_LAZILY_ALLOCATED, String
"GPU_LAZILY_ALLOCATED")
  ]

instance Show MemoryUsage where
  showsPrec :: Int -> MemoryUsage -> ShowS
showsPrec =
    String
-> [(MemoryUsage, String)]
-> String
-> (MemoryUsage -> Int32)
-> (Int32 -> ShowS)
-> Int
-> MemoryUsage
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixMemoryUsage [(MemoryUsage, String)]
showTableMemoryUsage String
conNameMemoryUsage (\(MemoryUsage Int32
x) -> Int32
x) (Int -> Int32 -> ShowS
forall a. Show a => Int -> a -> ShowS
showsPrec Int
11)

instance Read MemoryUsage where
  readPrec :: ReadPrec MemoryUsage
readPrec = String
-> [(MemoryUsage, String)]
-> String
-> (Int32 -> MemoryUsage)
-> ReadPrec MemoryUsage
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixMemoryUsage [(MemoryUsage, String)]
showTableMemoryUsage String
conNameMemoryUsage Int32 -> MemoryUsage
MemoryUsage


type AllocationCreateFlags = AllocationCreateFlagBits

-- | Flags to be passed as /VmaAllocationCreateInfo::flags/.
newtype AllocationCreateFlagBits = AllocationCreateFlagBits Flags
  deriving newtype (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
(AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> Eq AllocationCreateFlagBits
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c/= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
== :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c== :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
Eq, Eq AllocationCreateFlagBits
Eq AllocationCreateFlagBits
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> Ordering)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> Ord AllocationCreateFlagBits
AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
AllocationCreateFlagBits -> AllocationCreateFlagBits -> Ordering
AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$cmin :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
max :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$cmax :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
>= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c>= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
> :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c> :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
<= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c<= :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
< :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
$c< :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Bool
compare :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Ordering
$ccompare :: AllocationCreateFlagBits -> AllocationCreateFlagBits -> Ordering
$cp1Ord :: Eq AllocationCreateFlagBits
Ord, Ptr b -> Int -> IO AllocationCreateFlagBits
Ptr b -> Int -> AllocationCreateFlagBits -> IO ()
Ptr AllocationCreateFlagBits -> IO AllocationCreateFlagBits
Ptr AllocationCreateFlagBits -> Int -> IO AllocationCreateFlagBits
Ptr AllocationCreateFlagBits
-> Int -> AllocationCreateFlagBits -> IO ()
Ptr AllocationCreateFlagBits -> AllocationCreateFlagBits -> IO ()
AllocationCreateFlagBits -> Int
(AllocationCreateFlagBits -> Int)
-> (AllocationCreateFlagBits -> Int)
-> (Ptr AllocationCreateFlagBits
    -> Int -> IO AllocationCreateFlagBits)
-> (Ptr AllocationCreateFlagBits
    -> Int -> AllocationCreateFlagBits -> IO ())
-> (forall b. Ptr b -> Int -> IO AllocationCreateFlagBits)
-> (forall b. Ptr b -> Int -> AllocationCreateFlagBits -> IO ())
-> (Ptr AllocationCreateFlagBits -> IO AllocationCreateFlagBits)
-> (Ptr AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> IO ())
-> Storable AllocationCreateFlagBits
forall b. Ptr b -> Int -> IO AllocationCreateFlagBits
forall b. Ptr b -> Int -> AllocationCreateFlagBits -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr AllocationCreateFlagBits -> AllocationCreateFlagBits -> IO ()
$cpoke :: Ptr AllocationCreateFlagBits -> AllocationCreateFlagBits -> IO ()
peek :: Ptr AllocationCreateFlagBits -> IO AllocationCreateFlagBits
$cpeek :: Ptr AllocationCreateFlagBits -> IO AllocationCreateFlagBits
pokeByteOff :: Ptr b -> Int -> AllocationCreateFlagBits -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> AllocationCreateFlagBits -> IO ()
peekByteOff :: Ptr b -> Int -> IO AllocationCreateFlagBits
$cpeekByteOff :: forall b. Ptr b -> Int -> IO AllocationCreateFlagBits
pokeElemOff :: Ptr AllocationCreateFlagBits
-> Int -> AllocationCreateFlagBits -> IO ()
$cpokeElemOff :: Ptr AllocationCreateFlagBits
-> Int -> AllocationCreateFlagBits -> IO ()
peekElemOff :: Ptr AllocationCreateFlagBits -> Int -> IO AllocationCreateFlagBits
$cpeekElemOff :: Ptr AllocationCreateFlagBits -> Int -> IO AllocationCreateFlagBits
alignment :: AllocationCreateFlagBits -> Int
$calignment :: AllocationCreateFlagBits -> Int
sizeOf :: AllocationCreateFlagBits -> Int
$csizeOf :: AllocationCreateFlagBits -> Int
Storable, AllocationCreateFlagBits
AllocationCreateFlagBits -> Zero AllocationCreateFlagBits
forall a. a -> Zero a
zero :: AllocationCreateFlagBits
$czero :: AllocationCreateFlagBits
Zero, Eq AllocationCreateFlagBits
AllocationCreateFlagBits
Eq AllocationCreateFlagBits
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits
    -> AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> AllocationCreateFlagBits
-> (Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> Bool)
-> (AllocationCreateFlagBits -> Maybe Int)
-> (AllocationCreateFlagBits -> Int)
-> (AllocationCreateFlagBits -> Bool)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits)
-> (AllocationCreateFlagBits -> Int)
-> Bits AllocationCreateFlagBits
Int -> AllocationCreateFlagBits
AllocationCreateFlagBits -> Bool
AllocationCreateFlagBits -> Int
AllocationCreateFlagBits -> Maybe Int
AllocationCreateFlagBits -> AllocationCreateFlagBits
AllocationCreateFlagBits -> Int -> Bool
AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
popCount :: AllocationCreateFlagBits -> Int
$cpopCount :: AllocationCreateFlagBits -> Int
rotateR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$crotateR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
rotateL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$crotateL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
unsafeShiftR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cunsafeShiftR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
shiftR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cshiftR :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
unsafeShiftL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cunsafeShiftL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
shiftL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cshiftL :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
isSigned :: AllocationCreateFlagBits -> Bool
$cisSigned :: AllocationCreateFlagBits -> Bool
bitSize :: AllocationCreateFlagBits -> Int
$cbitSize :: AllocationCreateFlagBits -> Int
bitSizeMaybe :: AllocationCreateFlagBits -> Maybe Int
$cbitSizeMaybe :: AllocationCreateFlagBits -> Maybe Int
testBit :: AllocationCreateFlagBits -> Int -> Bool
$ctestBit :: AllocationCreateFlagBits -> Int -> Bool
complementBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$ccomplementBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
clearBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cclearBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
setBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$csetBit :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
bit :: Int -> AllocationCreateFlagBits
$cbit :: Int -> AllocationCreateFlagBits
zeroBits :: AllocationCreateFlagBits
$czeroBits :: AllocationCreateFlagBits
rotate :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$crotate :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
shift :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
$cshift :: AllocationCreateFlagBits -> Int -> AllocationCreateFlagBits
complement :: AllocationCreateFlagBits -> AllocationCreateFlagBits
$ccomplement :: AllocationCreateFlagBits -> AllocationCreateFlagBits
xor :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$cxor :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
.|. :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$c.|. :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
.&. :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$c.&. :: AllocationCreateFlagBits
-> AllocationCreateFlagBits -> AllocationCreateFlagBits
$cp1Bits :: Eq AllocationCreateFlagBits
Bits, Bits AllocationCreateFlagBits
Bits AllocationCreateFlagBits
-> (AllocationCreateFlagBits -> Int)
-> (AllocationCreateFlagBits -> Int)
-> (AllocationCreateFlagBits -> Int)
-> FiniteBits AllocationCreateFlagBits
AllocationCreateFlagBits -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
countTrailingZeros :: AllocationCreateFlagBits -> Int
$ccountTrailingZeros :: AllocationCreateFlagBits -> Int
countLeadingZeros :: AllocationCreateFlagBits -> Int
$ccountLeadingZeros :: AllocationCreateFlagBits -> Int
finiteBitSize :: AllocationCreateFlagBits -> Int
$cfiniteBitSize :: AllocationCreateFlagBits -> Int
$cp1FiniteBits :: Bits AllocationCreateFlagBits
FiniteBits)

-- | Set this flag if the allocation should have its own memory block.
--
-- Use it for special, big resources, like fullscreen images used as
-- attachments.
--
-- You should not use this flag if /VmaAllocationCreateInfo::pool/ is not
-- null.
pattern $bALLOCATION_CREATE_DEDICATED_MEMORY_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_DEDICATED_MEMORY_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_DEDICATED_MEMORY_BIT           = AllocationCreateFlagBits 0x00000001
-- | Set this flag to only try to allocate from existing @VkDeviceMemory@
-- blocks and never create new such block.
--
-- If new allocation cannot be placed in any of the existing blocks,
-- allocation fails with @VK_ERROR_OUT_OF_DEVICE_MEMORY@ error.
--
-- You should not use 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT' and
-- 'ALLOCATION_CREATE_NEVER_ALLOCATE_BIT' at the same time. It makes no
-- sense.
--
-- If /VmaAllocationCreateInfo::pool/ is not null, this flag is implied and
-- ignored.
pattern $bALLOCATION_CREATE_NEVER_ALLOCATE_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_NEVER_ALLOCATE_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_NEVER_ALLOCATE_BIT             = AllocationCreateFlagBits 0x00000002
-- | Set this flag to use a memory that will be persistently mapped and
-- retrieve pointer to it.
--
-- Pointer to mapped memory will be returned through
-- /VmaAllocationInfo::pMappedData/.
--
-- It is valid to use this flag for allocation made from memory type that
-- is not @HOST_VISIBLE@. This flag is then ignored and memory is not
-- mapped. This is useful if you need an allocation that is efficient to
-- use on GPU (@DEVICE_LOCAL@) and still want to map it directly if
-- possible on platforms that support it (e.g. Intel GPU).
--
-- You should not use this flag together with
-- 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT'.
pattern $bALLOCATION_CREATE_MAPPED_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_MAPPED_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_MAPPED_BIT                     = AllocationCreateFlagBits 0x00000004
-- | Allocation created with this flag can become lost as a result of another
-- allocation with 'ALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT' flag, so you
-- must check it before use.
--
-- To check if allocation is not lost, call 'getAllocationInfo' and check
-- if /VmaAllocationInfo::deviceMemory/ is not @VK_NULL_HANDLE@.
--
-- For details about supporting lost allocations, see Lost Allocations
-- chapter of User Guide on Main Page.
--
-- You should not use this flag together with
-- 'ALLOCATION_CREATE_MAPPED_BIT'.
pattern $bALLOCATION_CREATE_CAN_BECOME_LOST_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_CAN_BECOME_LOST_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_CAN_BECOME_LOST_BIT            = AllocationCreateFlagBits 0x00000008
-- | While creating allocation using this flag, other allocations that were
-- created with flag 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' can become
-- lost.
--
-- For details about supporting lost allocations, see Lost Allocations
-- chapter of User Guide on Main Page.
pattern $bALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT        = AllocationCreateFlagBits 0x00000010
-- | Set this flag to treat /VmaAllocationCreateInfo::pUserData/ as pointer
-- to a null-terminated string. Instead of copying pointer value, a local
-- copy of the string is made and stored in allocation\'s @pUserData@. The
-- string is automatically freed together with the allocation. It is also
-- used in 'buildStatsString'.
pattern $bALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT      = AllocationCreateFlagBits 0x00000020
-- | Allocation will be created from upper stack in a double stack pool.
--
-- This flag is only allowed for custom pools created with
-- 'POOL_CREATE_LINEAR_ALGORITHM_BIT' flag.
pattern $bALLOCATION_CREATE_UPPER_ADDRESS_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_UPPER_ADDRESS_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_UPPER_ADDRESS_BIT              = AllocationCreateFlagBits 0x00000040
-- | Create both buffer\/image and allocation, but don\'t bind them together.
-- It is useful when you want to bind yourself to do some more advanced
-- binding, e.g. using some extensions. The flag is meaningful only with
-- functions that bind by default: 'createBuffer', 'createImage'. Otherwise
-- it is ignored.
pattern $bALLOCATION_CREATE_DONT_BIND_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_DONT_BIND_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_DONT_BIND_BIT                  = AllocationCreateFlagBits 0x00000080
-- | Create allocation only if additional device memory required for it, if
-- any, won\'t exceed memory budget. Otherwise return
-- @VK_ERROR_OUT_OF_DEVICE_MEMORY@.
pattern $bALLOCATION_CREATE_WITHIN_BUDGET_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_WITHIN_BUDGET_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_WITHIN_BUDGET_BIT              = AllocationCreateFlagBits 0x00000100
-- | Allocation strategy that chooses smallest possible free range for the
-- allocation.
pattern $bALLOCATION_CREATE_STRATEGY_BEST_FIT_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_BEST_FIT_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_BEST_FIT_BIT          = AllocationCreateFlagBits 0x00010000
-- | Allocation strategy that chooses biggest possible free range for the
-- allocation.
pattern $bALLOCATION_CREATE_STRATEGY_WORST_FIT_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_WORST_FIT_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_WORST_FIT_BIT         = AllocationCreateFlagBits 0x00020000
-- | Allocation strategy that chooses first suitable free range for the
-- allocation.
--
-- \"First\" doesn\'t necessarily means the one with smallest offset in
-- memory, but rather the one that is easiest and fastest to find.
pattern $bALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT         = AllocationCreateFlagBits 0x00040000
-- | Allocation strategy that tries to minimize memory usage.
pattern $bALLOCATION_CREATE_STRATEGY_MIN_MEMORY_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_MIN_MEMORY_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_MIN_MEMORY_BIT        = AllocationCreateFlagBits 0x00010000
-- | Allocation strategy that tries to minimize allocation time.
pattern $bALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT          = AllocationCreateFlagBits 0x00040000
-- | Allocation strategy that tries to minimize memory fragmentation.
pattern $bALLOCATION_CREATE_STRATEGY_MIN_FRAGMENTATION_BIT :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_MIN_FRAGMENTATION_BIT :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_MIN_FRAGMENTATION_BIT = AllocationCreateFlagBits 0x00020000
-- | A bit mask to extract only @STRATEGY@ bits from entire set of flags.
pattern $bALLOCATION_CREATE_STRATEGY_MASK :: AllocationCreateFlagBits
$mALLOCATION_CREATE_STRATEGY_MASK :: forall r.
AllocationCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
ALLOCATION_CREATE_STRATEGY_MASK                  = AllocationCreateFlagBits 0x00070000

conNameAllocationCreateFlagBits :: String
conNameAllocationCreateFlagBits :: String
conNameAllocationCreateFlagBits = String
"AllocationCreateFlagBits"

enumPrefixAllocationCreateFlagBits :: String
enumPrefixAllocationCreateFlagBits :: String
enumPrefixAllocationCreateFlagBits = String
"ALLOCATION_CREATE_"

showTableAllocationCreateFlagBits :: [(AllocationCreateFlagBits, String)]
showTableAllocationCreateFlagBits :: [(AllocationCreateFlagBits, String)]
showTableAllocationCreateFlagBits =
  [ (AllocationCreateFlagBits
ALLOCATION_CREATE_DEDICATED_MEMORY_BIT          , String
"DEDICATED_MEMORY_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_NEVER_ALLOCATE_BIT            , String
"NEVER_ALLOCATE_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_MAPPED_BIT                    , String
"MAPPED_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_CAN_BECOME_LOST_BIT           , String
"CAN_BECOME_LOST_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_CAN_MAKE_OTHER_LOST_BIT       , String
"CAN_MAKE_OTHER_LOST_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT     , String
"USER_DATA_COPY_STRING_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_UPPER_ADDRESS_BIT             , String
"UPPER_ADDRESS_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_DONT_BIND_BIT                 , String
"DONT_BIND_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_WITHIN_BUDGET_BIT             , String
"WITHIN_BUDGET_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_BEST_FIT_BIT         , String
"STRATEGY_BEST_FIT_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_WORST_FIT_BIT        , String
"STRATEGY_WORST_FIT_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_FIRST_FIT_BIT        , String
"STRATEGY_FIRST_FIT_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_MIN_MEMORY_BIT       , String
"STRATEGY_MIN_MEMORY_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_MIN_TIME_BIT         , String
"STRATEGY_MIN_TIME_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_MIN_FRAGMENTATION_BIT, String
"STRATEGY_MIN_FRAGMENTATION_BIT")
  , (AllocationCreateFlagBits
ALLOCATION_CREATE_STRATEGY_MASK                 , String
"STRATEGY_MASK")
  ]

instance Show AllocationCreateFlagBits where
  showsPrec :: Int -> AllocationCreateFlagBits -> ShowS
showsPrec = String
-> [(AllocationCreateFlagBits, String)]
-> String
-> (AllocationCreateFlagBits -> "memoryTypeIndex" ::: Word32)
-> (("memoryTypeIndex" ::: Word32) -> ShowS)
-> Int
-> AllocationCreateFlagBits
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixAllocationCreateFlagBits
                            [(AllocationCreateFlagBits, String)]
showTableAllocationCreateFlagBits
                            String
conNameAllocationCreateFlagBits
                            (\(AllocationCreateFlagBits "memoryTypeIndex" ::: Word32
x) -> "memoryTypeIndex" ::: Word32
x)
                            (\"memoryTypeIndex" ::: Word32
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("memoryTypeIndex" ::: Word32) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "memoryTypeIndex" ::: Word32
x)

instance Read AllocationCreateFlagBits where
  readPrec :: ReadPrec AllocationCreateFlagBits
readPrec = String
-> [(AllocationCreateFlagBits, String)]
-> String
-> (("memoryTypeIndex" ::: Word32) -> AllocationCreateFlagBits)
-> ReadPrec AllocationCreateFlagBits
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixAllocationCreateFlagBits
                          [(AllocationCreateFlagBits, String)]
showTableAllocationCreateFlagBits
                          String
conNameAllocationCreateFlagBits
                          ("memoryTypeIndex" ::: Word32) -> AllocationCreateFlagBits
AllocationCreateFlagBits


-- | VmaAllocationCreateInfo
data AllocationCreateInfo = AllocationCreateInfo
  { -- | Use 'AllocationCreateFlagBits' enum.
    AllocationCreateInfo -> AllocationCreateFlagBits
flags :: AllocationCreateFlags
  , -- | Intended usage of memory.
    --
    -- You can leave 'MEMORY_USAGE_UNKNOWN' if you specify memory requirements
    -- in other way.
    --
    -- >  
    --
    -- If @pool@ is not null, this member is ignored.
    AllocationCreateInfo -> MemoryUsage
usage :: MemoryUsage
  , -- | Flags that must be set in a Memory Type chosen for an allocation.
    --
    -- Leave 0 if you specify memory requirements in other way.
    --
    -- >  
    --
    -- If @pool@ is not null, this member is ignored.
    AllocationCreateInfo -> MemoryPropertyFlags
requiredFlags :: MemoryPropertyFlags
  , -- | Flags that preferably should be set in a memory type chosen for an
    -- allocation.
    --
    -- Set to 0 if no additional flags are preferred.
    --
    -- >  
    --
    -- If @pool@ is not null, this member is ignored.
    AllocationCreateInfo -> MemoryPropertyFlags
preferredFlags :: MemoryPropertyFlags
  , -- | Bitmask containing one bit set for every memory type acceptable for this
    -- allocation.
    --
    -- Value 0 is equivalent to @UINT32_MAX@ - it means any memory type is
    -- accepted if it meets other requirements specified by this structure,
    -- with no further restrictions on memory type index.
    --
    -- >  
    --
    -- If @pool@ is not null, this member is ignored.
    AllocationCreateInfo -> "memoryTypeIndex" ::: Word32
memoryTypeBits :: Word32
  , -- | Pool that this allocation should be created in.
    --
    -- Leave @VK_NULL_HANDLE@ to allocate from default pool. If not null,
    -- members: @usage@, @requiredFlags@, @preferredFlags@, @memoryTypeBits@
    -- are ignored.
    AllocationCreateInfo -> Pool
pool :: Pool
  , -- | Custom general-purpose pointer that will be stored in 'Allocation', can
    -- be read as /VmaAllocationInfo::pUserData/ and changed using
    -- 'setAllocationUserData'.
    --
    -- If 'ALLOCATION_CREATE_USER_DATA_COPY_STRING_BIT' is used, it must be
    -- either null or pointer to a null-terminated string. The string will be
    -- then copied to internal buffer, so it doesn\'t need to be valid after
    -- allocation call.
    AllocationCreateInfo -> "userData" ::: Ptr ()
userData :: Ptr ()
  , -- | A floating-point value between 0 and 1, indicating the priority of the
    -- allocation relative to other memory allocations.
    --
    -- It is used only when 'ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT' flag was
    -- used during creation of the 'Allocator' object and this allocation ends
    -- up as dedicated or is explicitly forced as dedicated using
    -- 'ALLOCATION_CREATE_DEDICATED_MEMORY_BIT'. Otherwise, it has the priority
    -- of a memory block where it is placed and this variable is ignored.
    AllocationCreateInfo -> Float
priority :: Float
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (AllocationCreateInfo)
#endif
deriving instance Show AllocationCreateInfo

instance ToCStruct AllocationCreateInfo where
  withCStruct :: AllocationCreateInfo -> (Ptr AllocationCreateInfo -> IO b) -> IO b
withCStruct AllocationCreateInfo
x Ptr AllocationCreateInfo -> IO b
f = Int -> (Ptr AllocationCreateInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
48 ((Ptr AllocationCreateInfo -> IO b) -> IO b)
-> (Ptr AllocationCreateInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr AllocationCreateInfo
p -> Ptr AllocationCreateInfo -> AllocationCreateInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocationCreateInfo
p AllocationCreateInfo
x (Ptr AllocationCreateInfo -> IO b
f Ptr AllocationCreateInfo
p)
  pokeCStruct :: Ptr AllocationCreateInfo -> AllocationCreateInfo -> IO b -> IO b
pokeCStruct Ptr AllocationCreateInfo
p AllocationCreateInfo{Float
"memoryTypeIndex" ::: Word32
"userData" ::: Ptr ()
MemoryPropertyFlags
AllocationCreateFlagBits
MemoryUsage
Pool
priority :: Float
userData :: "userData" ::: Ptr ()
pool :: Pool
memoryTypeBits :: "memoryTypeIndex" ::: Word32
preferredFlags :: MemoryPropertyFlags
requiredFlags :: MemoryPropertyFlags
usage :: MemoryUsage
flags :: AllocationCreateFlagBits
$sel:priority:AllocationCreateInfo :: AllocationCreateInfo -> Float
$sel:userData:AllocationCreateInfo :: AllocationCreateInfo -> "userData" ::: Ptr ()
$sel:pool:AllocationCreateInfo :: AllocationCreateInfo -> Pool
$sel:memoryTypeBits:AllocationCreateInfo :: AllocationCreateInfo -> "memoryTypeIndex" ::: Word32
$sel:preferredFlags:AllocationCreateInfo :: AllocationCreateInfo -> MemoryPropertyFlags
$sel:requiredFlags:AllocationCreateInfo :: AllocationCreateInfo -> MemoryPropertyFlags
$sel:usage:AllocationCreateInfo :: AllocationCreateInfo -> MemoryUsage
$sel:flags:AllocationCreateInfo :: AllocationCreateInfo -> AllocationCreateFlagBits
..} IO b
f = do
    Ptr AllocationCreateFlagBits -> AllocationCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr AllocationCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocationCreateFlags)) (AllocationCreateFlagBits
flags)
    Ptr MemoryUsage -> MemoryUsage -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryUsage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr MemoryUsage)) (MemoryUsage
usage)
    Ptr MemoryPropertyFlags -> MemoryPropertyFlags -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr MemoryPropertyFlags)) (MemoryPropertyFlags
requiredFlags)
    Ptr MemoryPropertyFlags -> MemoryPropertyFlags -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
12 :: Ptr MemoryPropertyFlags)) (MemoryPropertyFlags
preferredFlags)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
memoryTypeBits)
    Ptr Pool -> Pool -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr Pool
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr Pool)) (Pool
pool)
    Ptr ("userData" ::: Ptr ()) -> ("userData" ::: Ptr ()) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr ()))) ("userData" ::: Ptr ()
userData)
    Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CFloat)) (Float -> CFloat
CFloat (Float
priority))
    IO b
f
  cStructSize :: Int
cStructSize = Int
48
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr AllocationCreateInfo -> IO b -> IO b
pokeZeroCStruct Ptr AllocationCreateInfo
p IO b
f = do
    Ptr AllocationCreateFlagBits -> AllocationCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr AllocationCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocationCreateFlags)) (AllocationCreateFlagBits
forall a. Zero a => a
zero)
    Ptr MemoryUsage -> MemoryUsage -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryUsage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr MemoryUsage)) (MemoryUsage
forall a. Zero a => a
zero)
    Ptr MemoryPropertyFlags -> MemoryPropertyFlags -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr MemoryPropertyFlags)) (MemoryPropertyFlags
forall a. Zero a => a
zero)
    Ptr MemoryPropertyFlags -> MemoryPropertyFlags -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
12 :: Ptr MemoryPropertyFlags)) (MemoryPropertyFlags
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CFloat)) (Float -> CFloat
CFloat (Float
forall a. Zero a => a
zero))
    IO b
f

instance FromCStruct AllocationCreateInfo where
  peekCStruct :: Ptr AllocationCreateInfo -> IO AllocationCreateInfo
peekCStruct Ptr AllocationCreateInfo
p = do
    AllocationCreateFlagBits
flags <- Ptr AllocationCreateFlagBits -> IO AllocationCreateFlagBits
forall a. Storable a => Ptr a -> IO a
peek @AllocationCreateFlags ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr AllocationCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr AllocationCreateFlags))
    MemoryUsage
usage <- Ptr MemoryUsage -> IO MemoryUsage
forall a. Storable a => Ptr a -> IO a
peek @MemoryUsage ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryUsage
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr MemoryUsage))
    MemoryPropertyFlags
requiredFlags <- Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags
forall a. Storable a => Ptr a -> IO a
peek @MemoryPropertyFlags ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr MemoryPropertyFlags))
    MemoryPropertyFlags
preferredFlags <- Ptr MemoryPropertyFlags -> IO MemoryPropertyFlags
forall a. Storable a => Ptr a -> IO a
peek @MemoryPropertyFlags ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr MemoryPropertyFlags
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
12 :: Ptr MemoryPropertyFlags))
    "memoryTypeIndex" ::: Word32
memoryTypeBits <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32))
    Pool
pool <- Ptr Pool -> IO Pool
forall a. Storable a => Ptr a -> IO a
peek @Pool ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr Pool
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr Pool))
    "userData" ::: Ptr ()
pUserData <- Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr ())))
    CFloat
priority <- Ptr CFloat -> IO CFloat
forall a. Storable a => Ptr a -> IO a
peek @CFloat ((Ptr AllocationCreateInfo
p Ptr AllocationCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CFloat))
    AllocationCreateInfo -> IO AllocationCreateInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocationCreateInfo -> IO AllocationCreateInfo)
-> AllocationCreateInfo -> IO AllocationCreateInfo
forall a b. (a -> b) -> a -> b
$ AllocationCreateFlagBits
-> MemoryUsage
-> MemoryPropertyFlags
-> MemoryPropertyFlags
-> ("memoryTypeIndex" ::: Word32)
-> Pool
-> ("userData" ::: Ptr ())
-> Float
-> AllocationCreateInfo
AllocationCreateInfo
             AllocationCreateFlagBits
flags MemoryUsage
usage MemoryPropertyFlags
requiredFlags MemoryPropertyFlags
preferredFlags "memoryTypeIndex" ::: Word32
memoryTypeBits Pool
pool "userData" ::: Ptr ()
pUserData (CFloat -> Float
coerce @CFloat @Float CFloat
priority)

instance Storable AllocationCreateInfo where
  sizeOf :: AllocationCreateInfo -> Int
sizeOf ~AllocationCreateInfo
_ = Int
48
  alignment :: AllocationCreateInfo -> Int
alignment ~AllocationCreateInfo
_ = Int
8
  peek :: Ptr AllocationCreateInfo -> IO AllocationCreateInfo
peek = Ptr AllocationCreateInfo -> IO AllocationCreateInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr AllocationCreateInfo -> AllocationCreateInfo -> IO ()
poke Ptr AllocationCreateInfo
ptr AllocationCreateInfo
poked = Ptr AllocationCreateInfo -> AllocationCreateInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocationCreateInfo
ptr AllocationCreateInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero AllocationCreateInfo where
  zero :: AllocationCreateInfo
zero = AllocationCreateFlagBits
-> MemoryUsage
-> MemoryPropertyFlags
-> MemoryPropertyFlags
-> ("memoryTypeIndex" ::: Word32)
-> Pool
-> ("userData" ::: Ptr ())
-> Float
-> AllocationCreateInfo
AllocationCreateInfo
           AllocationCreateFlagBits
forall a. Zero a => a
zero
           MemoryUsage
forall a. Zero a => a
zero
           MemoryPropertyFlags
forall a. Zero a => a
zero
           MemoryPropertyFlags
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Pool
forall a. Zero a => a
zero
           "userData" ::: Ptr ()
forall a. Zero a => a
zero
           Float
forall a. Zero a => a
zero


type PoolCreateFlags = PoolCreateFlagBits

-- | Flags to be passed as /VmaPoolCreateInfo::flags/.
newtype PoolCreateFlagBits = PoolCreateFlagBits Flags
  deriving newtype (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
(PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> Eq PoolCreateFlagBits
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c/= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
== :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c== :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
Eq, Eq PoolCreateFlagBits
Eq PoolCreateFlagBits
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Ordering)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits)
-> Ord PoolCreateFlagBits
PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
PoolCreateFlagBits -> PoolCreateFlagBits -> Ordering
PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$cmin :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
max :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$cmax :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
>= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c>= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
> :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c> :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
<= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c<= :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
< :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
$c< :: PoolCreateFlagBits -> PoolCreateFlagBits -> Bool
compare :: PoolCreateFlagBits -> PoolCreateFlagBits -> Ordering
$ccompare :: PoolCreateFlagBits -> PoolCreateFlagBits -> Ordering
$cp1Ord :: Eq PoolCreateFlagBits
Ord, Ptr b -> Int -> IO PoolCreateFlagBits
Ptr b -> Int -> PoolCreateFlagBits -> IO ()
Ptr PoolCreateFlagBits -> IO PoolCreateFlagBits
Ptr PoolCreateFlagBits -> Int -> IO PoolCreateFlagBits
Ptr PoolCreateFlagBits -> Int -> PoolCreateFlagBits -> IO ()
Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ()
PoolCreateFlagBits -> Int
(PoolCreateFlagBits -> Int)
-> (PoolCreateFlagBits -> Int)
-> (Ptr PoolCreateFlagBits -> Int -> IO PoolCreateFlagBits)
-> (Ptr PoolCreateFlagBits -> Int -> PoolCreateFlagBits -> IO ())
-> (forall b. Ptr b -> Int -> IO PoolCreateFlagBits)
-> (forall b. Ptr b -> Int -> PoolCreateFlagBits -> IO ())
-> (Ptr PoolCreateFlagBits -> IO PoolCreateFlagBits)
-> (Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ())
-> Storable PoolCreateFlagBits
forall b. Ptr b -> Int -> IO PoolCreateFlagBits
forall b. Ptr b -> Int -> PoolCreateFlagBits -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ()
$cpoke :: Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ()
peek :: Ptr PoolCreateFlagBits -> IO PoolCreateFlagBits
$cpeek :: Ptr PoolCreateFlagBits -> IO PoolCreateFlagBits
pokeByteOff :: Ptr b -> Int -> PoolCreateFlagBits -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> PoolCreateFlagBits -> IO ()
peekByteOff :: Ptr b -> Int -> IO PoolCreateFlagBits
$cpeekByteOff :: forall b. Ptr b -> Int -> IO PoolCreateFlagBits
pokeElemOff :: Ptr PoolCreateFlagBits -> Int -> PoolCreateFlagBits -> IO ()
$cpokeElemOff :: Ptr PoolCreateFlagBits -> Int -> PoolCreateFlagBits -> IO ()
peekElemOff :: Ptr PoolCreateFlagBits -> Int -> IO PoolCreateFlagBits
$cpeekElemOff :: Ptr PoolCreateFlagBits -> Int -> IO PoolCreateFlagBits
alignment :: PoolCreateFlagBits -> Int
$calignment :: PoolCreateFlagBits -> Int
sizeOf :: PoolCreateFlagBits -> Int
$csizeOf :: PoolCreateFlagBits -> Int
Storable, PoolCreateFlagBits
PoolCreateFlagBits -> Zero PoolCreateFlagBits
forall a. a -> Zero a
zero :: PoolCreateFlagBits
$czero :: PoolCreateFlagBits
Zero, Eq PoolCreateFlagBits
PoolCreateFlagBits
Eq PoolCreateFlagBits
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> PoolCreateFlagBits
-> (Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> Bool)
-> (PoolCreateFlagBits -> Maybe Int)
-> (PoolCreateFlagBits -> Int)
-> (PoolCreateFlagBits -> Bool)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int -> PoolCreateFlagBits)
-> (PoolCreateFlagBits -> Int)
-> Bits PoolCreateFlagBits
Int -> PoolCreateFlagBits
PoolCreateFlagBits -> Bool
PoolCreateFlagBits -> Int
PoolCreateFlagBits -> Maybe Int
PoolCreateFlagBits -> PoolCreateFlagBits
PoolCreateFlagBits -> Int -> Bool
PoolCreateFlagBits -> Int -> PoolCreateFlagBits
PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
popCount :: PoolCreateFlagBits -> Int
$cpopCount :: PoolCreateFlagBits -> Int
rotateR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$crotateR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
rotateL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$crotateL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
unsafeShiftR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cunsafeShiftR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
shiftR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cshiftR :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
unsafeShiftL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cunsafeShiftL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
shiftL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cshiftL :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
isSigned :: PoolCreateFlagBits -> Bool
$cisSigned :: PoolCreateFlagBits -> Bool
bitSize :: PoolCreateFlagBits -> Int
$cbitSize :: PoolCreateFlagBits -> Int
bitSizeMaybe :: PoolCreateFlagBits -> Maybe Int
$cbitSizeMaybe :: PoolCreateFlagBits -> Maybe Int
testBit :: PoolCreateFlagBits -> Int -> Bool
$ctestBit :: PoolCreateFlagBits -> Int -> Bool
complementBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$ccomplementBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
clearBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cclearBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
setBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$csetBit :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
bit :: Int -> PoolCreateFlagBits
$cbit :: Int -> PoolCreateFlagBits
zeroBits :: PoolCreateFlagBits
$czeroBits :: PoolCreateFlagBits
rotate :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$crotate :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
shift :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
$cshift :: PoolCreateFlagBits -> Int -> PoolCreateFlagBits
complement :: PoolCreateFlagBits -> PoolCreateFlagBits
$ccomplement :: PoolCreateFlagBits -> PoolCreateFlagBits
xor :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$cxor :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
.|. :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$c.|. :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
.&. :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$c.&. :: PoolCreateFlagBits -> PoolCreateFlagBits -> PoolCreateFlagBits
$cp1Bits :: Eq PoolCreateFlagBits
Bits, Bits PoolCreateFlagBits
Bits PoolCreateFlagBits
-> (PoolCreateFlagBits -> Int)
-> (PoolCreateFlagBits -> Int)
-> (PoolCreateFlagBits -> Int)
-> FiniteBits PoolCreateFlagBits
PoolCreateFlagBits -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
countTrailingZeros :: PoolCreateFlagBits -> Int
$ccountTrailingZeros :: PoolCreateFlagBits -> Int
countLeadingZeros :: PoolCreateFlagBits -> Int
$ccountLeadingZeros :: PoolCreateFlagBits -> Int
finiteBitSize :: PoolCreateFlagBits -> Int
$cfiniteBitSize :: PoolCreateFlagBits -> Int
$cp1FiniteBits :: Bits PoolCreateFlagBits
FiniteBits)

-- | Use this flag if you always allocate only buffers and linear images or
-- only optimal images out of this pool and so Buffer-Image Granularity can
-- be ignored.
--
-- This is an optional optimization flag.
--
-- If you always allocate using 'createBuffer', 'createImage',
-- 'allocateMemoryForBuffer', then you don\'t need to use it because
-- allocator knows exact type of your allocations so it can handle
-- Buffer-Image Granularity in the optimal way.
--
-- If you also allocate using 'allocateMemoryForImage' or 'allocateMemory',
-- exact type of such allocations is not known, so allocator must be
-- conservative in handling Buffer-Image Granularity, which can lead to
-- suboptimal allocation (wasted memory). In that case, if you can make
-- sure you always allocate only buffers and linear images or only optimal
-- images out of this pool, use this flag to make allocator disregard
-- Buffer-Image Granularity and so make allocations faster and more
-- optimal.
pattern $bPOOL_CREATE_IGNORE_BUFFER_IMAGE_GRANULARITY_BIT :: PoolCreateFlagBits
$mPOOL_CREATE_IGNORE_BUFFER_IMAGE_GRANULARITY_BIT :: forall r. PoolCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
POOL_CREATE_IGNORE_BUFFER_IMAGE_GRANULARITY_BIT = PoolCreateFlagBits 0x00000002
-- | Enables alternative, linear allocation algorithm in this pool.
--
-- Specify this flag to enable linear allocation algorithm, which always
-- creates new allocations after last one and doesn\'t reuse space from
-- allocations freed in between. It trades memory consumption for
-- simplified algorithm and data structure, which has better performance
-- and uses less memory for metadata.
--
-- By using this flag, you can achieve behavior of free-at-once, stack,
-- ring buffer, and double stack. For details, see documentation chapter
-- /Linear allocation algorithm/.
--
-- When using this flag, you must specify
-- /VmaPoolCreateInfo::maxBlockCount/ == 1 (or 0 for default).
--
-- For more details, see /Linear allocation algorithm/.
pattern $bPOOL_CREATE_LINEAR_ALGORITHM_BIT :: PoolCreateFlagBits
$mPOOL_CREATE_LINEAR_ALGORITHM_BIT :: forall r. PoolCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
POOL_CREATE_LINEAR_ALGORITHM_BIT                = PoolCreateFlagBits 0x00000004
-- | Enables alternative, buddy allocation algorithm in this pool.
--
-- It operates on a tree of blocks, each having size that is a power of two
-- and a half of its parent\'s size. Comparing to default algorithm, this
-- one provides faster allocation and deallocation and decreased external
-- fragmentation, at the expense of more memory wasted (internal
-- fragmentation).
--
-- For more details, see /Buddy allocation algorithm/.
pattern $bPOOL_CREATE_BUDDY_ALGORITHM_BIT :: PoolCreateFlagBits
$mPOOL_CREATE_BUDDY_ALGORITHM_BIT :: forall r. PoolCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
POOL_CREATE_BUDDY_ALGORITHM_BIT                 = PoolCreateFlagBits 0x00000008
-- | Bit mask to extract only @ALGORITHM@ bits from entire set of flags.
pattern $bPOOL_CREATE_ALGORITHM_MASK :: PoolCreateFlagBits
$mPOOL_CREATE_ALGORITHM_MASK :: forall r. PoolCreateFlagBits -> (Void# -> r) -> (Void# -> r) -> r
POOL_CREATE_ALGORITHM_MASK                      = PoolCreateFlagBits 0x0000000c

conNamePoolCreateFlagBits :: String
conNamePoolCreateFlagBits :: String
conNamePoolCreateFlagBits = String
"PoolCreateFlagBits"

enumPrefixPoolCreateFlagBits :: String
enumPrefixPoolCreateFlagBits :: String
enumPrefixPoolCreateFlagBits = String
"POOL_CREATE_"

showTablePoolCreateFlagBits :: [(PoolCreateFlagBits, String)]
showTablePoolCreateFlagBits :: [(PoolCreateFlagBits, String)]
showTablePoolCreateFlagBits =
  [ (PoolCreateFlagBits
POOL_CREATE_IGNORE_BUFFER_IMAGE_GRANULARITY_BIT, String
"IGNORE_BUFFER_IMAGE_GRANULARITY_BIT")
  , (PoolCreateFlagBits
POOL_CREATE_LINEAR_ALGORITHM_BIT               , String
"LINEAR_ALGORITHM_BIT")
  , (PoolCreateFlagBits
POOL_CREATE_BUDDY_ALGORITHM_BIT                , String
"BUDDY_ALGORITHM_BIT")
  , (PoolCreateFlagBits
POOL_CREATE_ALGORITHM_MASK                     , String
"ALGORITHM_MASK")
  ]

instance Show PoolCreateFlagBits where
  showsPrec :: Int -> PoolCreateFlagBits -> ShowS
showsPrec = String
-> [(PoolCreateFlagBits, String)]
-> String
-> (PoolCreateFlagBits -> "memoryTypeIndex" ::: Word32)
-> (("memoryTypeIndex" ::: Word32) -> ShowS)
-> Int
-> PoolCreateFlagBits
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixPoolCreateFlagBits
                            [(PoolCreateFlagBits, String)]
showTablePoolCreateFlagBits
                            String
conNamePoolCreateFlagBits
                            (\(PoolCreateFlagBits "memoryTypeIndex" ::: Word32
x) -> "memoryTypeIndex" ::: Word32
x)
                            (\"memoryTypeIndex" ::: Word32
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("memoryTypeIndex" ::: Word32) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "memoryTypeIndex" ::: Word32
x)

instance Read PoolCreateFlagBits where
  readPrec :: ReadPrec PoolCreateFlagBits
readPrec =
    String
-> [(PoolCreateFlagBits, String)]
-> String
-> (("memoryTypeIndex" ::: Word32) -> PoolCreateFlagBits)
-> ReadPrec PoolCreateFlagBits
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixPoolCreateFlagBits [(PoolCreateFlagBits, String)]
showTablePoolCreateFlagBits String
conNamePoolCreateFlagBits ("memoryTypeIndex" ::: Word32) -> PoolCreateFlagBits
PoolCreateFlagBits


-- | VmaPoolCreateInfo
--
-- Describes parameter of created 'Pool'.
data PoolCreateInfo = PoolCreateInfo
  { -- | Vulkan memory type index to allocate this pool from.
    PoolCreateInfo -> "memoryTypeIndex" ::: Word32
memoryTypeIndex :: Word32
  , -- | Use combination of 'PoolCreateFlagBits'.
    PoolCreateInfo -> PoolCreateFlagBits
flags :: PoolCreateFlags
  , -- | Size of a single @VkDeviceMemory@ block to be allocated as part of this
    -- pool, in bytes. Optional.
    --
    -- Specify nonzero to set explicit, constant size of memory blocks used by
    -- this pool.
    --
    -- Leave 0 to use default and let the library manage block sizes
    -- automatically. Sizes of particular blocks may vary.
    PoolCreateInfo -> "lostAllocationCount" ::: Word64
blockSize :: DeviceSize
  , -- | Minimum number of blocks to be always allocated in this pool, even if
    -- they stay empty.
    --
    -- Set to 0 to have no preallocated blocks and allow the pool be completely
    -- empty.
    PoolCreateInfo -> "lostAllocationCount" ::: Word64
minBlockCount :: Word64
  , -- | Maximum number of blocks that can be allocated in this pool. Optional.
    --
    -- Set to 0 to use default, which is @SIZE_MAX@, which means no limit.
    --
    -- Set to same value as /VmaPoolCreateInfo::minBlockCount/ to have fixed
    -- amount of memory allocated throughout whole lifetime of this pool.
    PoolCreateInfo -> "lostAllocationCount" ::: Word64
maxBlockCount :: Word64
  , -- | Maximum number of additional frames that are in use at the same time as
    -- current frame.
    --
    -- This value is used only when you make allocations with
    -- 'ALLOCATION_CREATE_CAN_BECOME_LOST_BIT' flag. Such allocation cannot
    -- become lost if allocation.lastUseFrameIndex >=
    -- allocator.currentFrameIndex - frameInUseCount.
    --
    -- For example, if you double-buffer your command buffers, so resources
    -- used for rendering in previous frame may still be in use by the GPU at
    -- the moment you allocate resources needed for the current frame, set this
    -- value to 1.
    --
    -- If you want to allow any allocations other than used in the current
    -- frame to become lost, set this value to 0.
    PoolCreateInfo -> "memoryTypeIndex" ::: Word32
frameInUseCount :: Word32
  , -- | A floating-point value between 0 and 1, indicating the priority of the
    -- allocations in this pool relative to other memory allocations.
    --
    -- It is used only when 'ALLOCATOR_CREATE_EXT_MEMORY_PRIORITY_BIT' flag was
    -- used during creation of the 'Allocator' object. Otherwise, this variable
    -- is ignored.
    PoolCreateInfo -> Float
priority :: Float
  , -- | Additional minimum alignment to be used for all allocations created from
    -- this pool. Can be 0.
    --
    -- Leave 0 (default) not to impose any additional alignment. If not 0, it
    -- must be a power of two. It can be useful in cases where alignment
    -- returned by Vulkan by functions like @vkGetBufferMemoryRequirements@ is
    -- not enough, e.g. when doing interop with OpenGL.
    PoolCreateInfo -> "lostAllocationCount" ::: Word64
minAllocationAlignment :: DeviceSize
  , -- | Additional @pNext@ chain to be attached to @VkMemoryAllocateInfo@ used
    -- for every allocation made by this pool. Optional.
    --
    -- Optional, can be null. If not null, it must point to a @pNext@ chain of
    -- structures that can be attached to @VkMemoryAllocateInfo@. It can be
    -- useful for special needs such as adding @VkExportMemoryAllocateInfoKHR@.
    -- Structures pointed by this member must remain alive and unchanged for
    -- the whole lifetime of the custom pool.
    --
    -- Please note that some structures, e.g.
    -- @VkMemoryPriorityAllocateInfoEXT@, @VkMemoryDedicatedAllocateInfoKHR@,
    -- can be attached automatically by this library when using other, more
    -- convenient of its features.
    PoolCreateInfo -> "userData" ::: Ptr ()
memoryAllocateNext :: Ptr ()
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (PoolCreateInfo)
#endif
deriving instance Show PoolCreateInfo

instance ToCStruct PoolCreateInfo where
  withCStruct :: PoolCreateInfo -> (Ptr PoolCreateInfo -> IO b) -> IO b
withCStruct PoolCreateInfo
x Ptr PoolCreateInfo -> IO b
f = Int -> (Ptr PoolCreateInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
56 ((Ptr PoolCreateInfo -> IO b) -> IO b)
-> (Ptr PoolCreateInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr PoolCreateInfo
p -> Ptr PoolCreateInfo -> PoolCreateInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PoolCreateInfo
p PoolCreateInfo
x (Ptr PoolCreateInfo -> IO b
f Ptr PoolCreateInfo
p)
  pokeCStruct :: Ptr PoolCreateInfo -> PoolCreateInfo -> IO b -> IO b
pokeCStruct Ptr PoolCreateInfo
p PoolCreateInfo{Float
"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
"userData" ::: Ptr ()
PoolCreateFlagBits
memoryAllocateNext :: "userData" ::: Ptr ()
minAllocationAlignment :: "lostAllocationCount" ::: Word64
priority :: Float
frameInUseCount :: "memoryTypeIndex" ::: Word32
maxBlockCount :: "lostAllocationCount" ::: Word64
minBlockCount :: "lostAllocationCount" ::: Word64
blockSize :: "lostAllocationCount" ::: Word64
flags :: PoolCreateFlagBits
memoryTypeIndex :: "memoryTypeIndex" ::: Word32
$sel:memoryAllocateNext:PoolCreateInfo :: PoolCreateInfo -> "userData" ::: Ptr ()
$sel:minAllocationAlignment:PoolCreateInfo :: PoolCreateInfo -> "lostAllocationCount" ::: Word64
$sel:priority:PoolCreateInfo :: PoolCreateInfo -> Float
$sel:frameInUseCount:PoolCreateInfo :: PoolCreateInfo -> "memoryTypeIndex" ::: Word32
$sel:maxBlockCount:PoolCreateInfo :: PoolCreateInfo -> "lostAllocationCount" ::: Word64
$sel:minBlockCount:PoolCreateInfo :: PoolCreateInfo -> "lostAllocationCount" ::: Word64
$sel:blockSize:PoolCreateInfo :: PoolCreateInfo -> "lostAllocationCount" ::: Word64
$sel:flags:PoolCreateInfo :: PoolCreateInfo -> PoolCreateFlagBits
$sel:memoryTypeIndex:PoolCreateInfo :: PoolCreateInfo -> "memoryTypeIndex" ::: Word32
..} IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
memoryTypeIndex)
    Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr PoolCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr PoolCreateFlags)) (PoolCreateFlagBits
flags)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
blockSize)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
minBlockCount))
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
maxBlockCount))
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
frameInUseCount)
    Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
36 :: Ptr CFloat)) (Float -> CFloat
CFloat (Float
priority))
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
minAllocationAlignment)
    Ptr ("userData" ::: Ptr ()) -> ("userData" ::: Ptr ()) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr (Ptr ()))) ("userData" ::: Ptr ()
memoryAllocateNext)
    IO b
f
  cStructSize :: Int
cStructSize = Int
56
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr PoolCreateInfo -> IO b -> IO b
pokeZeroCStruct Ptr PoolCreateInfo
p IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr PoolCreateFlagBits -> PoolCreateFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr PoolCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr PoolCreateFlags)) (PoolCreateFlagBits
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero))
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero))
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
36 :: Ptr CFloat)) (Float -> CFloat
CFloat (Float
forall a. Zero a => a
zero))
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct PoolCreateInfo where
  peekCStruct :: Ptr PoolCreateInfo -> IO PoolCreateInfo
peekCStruct Ptr PoolCreateInfo
p = do
    "memoryTypeIndex" ::: Word32
memoryTypeIndex <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32))
    PoolCreateFlagBits
flags <- Ptr PoolCreateFlagBits -> IO PoolCreateFlagBits
forall a. Storable a => Ptr a -> IO a
peek @PoolCreateFlags ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr PoolCreateFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr PoolCreateFlags))
    "lostAllocationCount" ::: Word64
blockSize <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize))
    CSize
minBlockCount <- Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize))
    CSize
maxBlockCount <- Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize))
    "memoryTypeIndex" ::: Word32
frameInUseCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr Word32))
    CFloat
priority <- Ptr CFloat -> IO CFloat
forall a. Storable a => Ptr a -> IO a
peek @CFloat ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
36 :: Ptr CFloat))
    "lostAllocationCount" ::: Word64
minAllocationAlignment <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize))
    "userData" ::: Ptr ()
pMemoryAllocateNext <- Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) ((Ptr PoolCreateInfo
p Ptr PoolCreateInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr (Ptr ())))
    PoolCreateInfo -> IO PoolCreateInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (PoolCreateInfo -> IO PoolCreateInfo)
-> PoolCreateInfo -> IO PoolCreateInfo
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32)
-> PoolCreateFlagBits
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> Float
-> ("lostAllocationCount" ::: Word64)
-> ("userData" ::: Ptr ())
-> PoolCreateInfo
PoolCreateInfo
             "memoryTypeIndex" ::: Word32
memoryTypeIndex PoolCreateFlagBits
flags "lostAllocationCount" ::: Word64
blockSize (CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
minBlockCount) (CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
maxBlockCount) "memoryTypeIndex" ::: Word32
frameInUseCount (CFloat -> Float
coerce @CFloat @Float CFloat
priority) "lostAllocationCount" ::: Word64
minAllocationAlignment "userData" ::: Ptr ()
pMemoryAllocateNext

instance Storable PoolCreateInfo where
  sizeOf :: PoolCreateInfo -> Int
sizeOf ~PoolCreateInfo
_ = Int
56
  alignment :: PoolCreateInfo -> Int
alignment ~PoolCreateInfo
_ = Int
8
  peek :: Ptr PoolCreateInfo -> IO PoolCreateInfo
peek = Ptr PoolCreateInfo -> IO PoolCreateInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr PoolCreateInfo -> PoolCreateInfo -> IO ()
poke Ptr PoolCreateInfo
ptr PoolCreateInfo
poked = Ptr PoolCreateInfo -> PoolCreateInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PoolCreateInfo
ptr PoolCreateInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero PoolCreateInfo where
  zero :: PoolCreateInfo
zero = ("memoryTypeIndex" ::: Word32)
-> PoolCreateFlagBits
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> Float
-> ("lostAllocationCount" ::: Word64)
-> ("userData" ::: Ptr ())
-> PoolCreateInfo
PoolCreateInfo
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           PoolCreateFlagBits
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Float
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "userData" ::: Ptr ()
forall a. Zero a => a
zero


-- | VmaPoolStats
--
-- Describes parameter of existing 'Pool'.
data PoolStats = PoolStats
  { -- | Total amount of @VkDeviceMemory@ allocated from Vulkan for this pool, in
    -- bytes.
    PoolStats -> "lostAllocationCount" ::: Word64
size :: DeviceSize
  , -- | Total number of bytes in the pool not used by any 'Allocation'.
    PoolStats -> "lostAllocationCount" ::: Word64
unusedSize :: DeviceSize
  , -- | Number of 'Allocation' objects created from this pool that were not
    -- destroyed or lost.
    PoolStats -> "lostAllocationCount" ::: Word64
allocationCount :: Word64
  , -- | Number of continuous memory ranges in the pool not used by any
    -- 'Allocation'.
    PoolStats -> "lostAllocationCount" ::: Word64
unusedRangeCount :: Word64
  , -- | Size of the largest continuous free memory region available for new
    -- allocation.
    --
    -- Making a new allocation of that size is not guaranteed to succeed
    -- because of possible additional margin required to respect alignment and
    -- buffer\/image granularity.
    PoolStats -> "lostAllocationCount" ::: Word64
unusedRangeSizeMax :: DeviceSize
  , -- | Number of @VkDeviceMemory@ blocks allocated for this pool.
    PoolStats -> "lostAllocationCount" ::: Word64
blockCount :: Word64
  }
  deriving (Typeable, PoolStats -> PoolStats -> Bool
(PoolStats -> PoolStats -> Bool)
-> (PoolStats -> PoolStats -> Bool) -> Eq PoolStats
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: PoolStats -> PoolStats -> Bool
$c/= :: PoolStats -> PoolStats -> Bool
== :: PoolStats -> PoolStats -> Bool
$c== :: PoolStats -> PoolStats -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (PoolStats)
#endif
deriving instance Show PoolStats

instance ToCStruct PoolStats where
  withCStruct :: PoolStats -> (Ptr PoolStats -> IO b) -> IO b
withCStruct PoolStats
x Ptr PoolStats -> IO b
f = Int -> (Ptr PoolStats -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
48 ((Ptr PoolStats -> IO b) -> IO b)
-> (Ptr PoolStats -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr PoolStats
p -> Ptr PoolStats -> PoolStats -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PoolStats
p PoolStats
x (Ptr PoolStats -> IO b
f Ptr PoolStats
p)
  pokeCStruct :: Ptr PoolStats -> PoolStats -> IO b -> IO b
pokeCStruct Ptr PoolStats
p PoolStats{"lostAllocationCount" ::: Word64
blockCount :: "lostAllocationCount" ::: Word64
unusedRangeSizeMax :: "lostAllocationCount" ::: Word64
unusedRangeCount :: "lostAllocationCount" ::: Word64
allocationCount :: "lostAllocationCount" ::: Word64
unusedSize :: "lostAllocationCount" ::: Word64
size :: "lostAllocationCount" ::: Word64
$sel:blockCount:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
$sel:unusedRangeSizeMax:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
$sel:unusedRangeCount:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
$sel:allocationCount:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
$sel:unusedSize:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
$sel:size:PoolStats :: PoolStats -> "lostAllocationCount" ::: Word64
..} IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
size)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedSize)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
allocationCount))
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
unusedRangeCount))
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
unusedRangeSizeMax)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
blockCount))
    IO b
f
  cStructSize :: Int
cStructSize = Int
48
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr PoolStats -> IO b -> IO b
pokeZeroCStruct Ptr PoolStats
p IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero))
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero))
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr CSize -> CSize -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CSize)) (("lostAllocationCount" ::: Word64) -> CSize
CSize ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero))
    IO b
f

instance FromCStruct PoolStats where
  peekCStruct :: Ptr PoolStats -> IO PoolStats
peekCStruct Ptr PoolStats
p = do
    "lostAllocationCount" ::: Word64
size <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
unusedSize <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize))
    CSize
allocationCount <- Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr CSize))
    CSize
unusedRangeCount <- Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr CSize))
    "lostAllocationCount" ::: Word64
unusedRangeSizeMax <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr DeviceSize))
    CSize
blockCount <- Ptr CSize -> IO CSize
forall a. Storable a => Ptr a -> IO a
peek @CSize ((Ptr PoolStats
p Ptr PoolStats -> Int -> Ptr CSize
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr CSize))
    PoolStats -> IO PoolStats
forall (f :: * -> *) a. Applicative f => a -> f a
pure (PoolStats -> IO PoolStats) -> PoolStats -> IO PoolStats
forall a b. (a -> b) -> a -> b
$ ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> PoolStats
PoolStats
             "lostAllocationCount" ::: Word64
size "lostAllocationCount" ::: Word64
unusedSize (CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
allocationCount) (CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
unusedRangeCount) "lostAllocationCount" ::: Word64
unusedRangeSizeMax (CSize -> "lostAllocationCount" ::: Word64
coerce @CSize @Word64 CSize
blockCount)

instance Storable PoolStats where
  sizeOf :: PoolStats -> Int
sizeOf ~PoolStats
_ = Int
48
  alignment :: PoolStats -> Int
alignment ~PoolStats
_ = Int
8
  peek :: Ptr PoolStats -> IO PoolStats
peek = Ptr PoolStats -> IO PoolStats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr PoolStats -> PoolStats -> IO ()
poke Ptr PoolStats
ptr PoolStats
poked = Ptr PoolStats -> PoolStats -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr PoolStats
ptr PoolStats
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero PoolStats where
  zero :: PoolStats
zero = ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> PoolStats
PoolStats
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero


-- | VmaAllocation
--
-- Represents single memory allocation.
--
-- It may be either dedicated block of @VkDeviceMemory@ or a specific
-- region of a bigger block of this type plus unique offset.
--
-- There are multiple ways to create such object. You need to fill
-- structure 'AllocationCreateInfo'. For more information see /Choosing
-- memory type/.
--
-- Although the library provides convenience functions that create Vulkan
-- buffer or image, allocate memory for it and bind them together, binding
-- of the allocation to a buffer or an image is out of scope of the
-- allocation itself. Allocation object can exist without buffer\/image
-- bound, binding can be done manually by the user, and destruction of it
-- can be done independently of destruction of the allocation.
--
-- The object also remembers its size and some other information. To
-- retrieve this information, use function 'getAllocationInfo' and inspect
-- returned structure 'AllocationInfo'.
--
-- Some kinds allocations can be in lost state. For more information, see
-- /Lost allocations/.
newtype Allocation = Allocation Word64
  deriving newtype (Allocation -> Allocation -> Bool
(Allocation -> Allocation -> Bool)
-> (Allocation -> Allocation -> Bool) -> Eq Allocation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Allocation -> Allocation -> Bool
$c/= :: Allocation -> Allocation -> Bool
== :: Allocation -> Allocation -> Bool
$c== :: Allocation -> Allocation -> Bool
Eq, Eq Allocation
Eq Allocation
-> (Allocation -> Allocation -> Ordering)
-> (Allocation -> Allocation -> Bool)
-> (Allocation -> Allocation -> Bool)
-> (Allocation -> Allocation -> Bool)
-> (Allocation -> Allocation -> Bool)
-> (Allocation -> Allocation -> Allocation)
-> (Allocation -> Allocation -> Allocation)
-> Ord Allocation
Allocation -> Allocation -> Bool
Allocation -> Allocation -> Ordering
Allocation -> Allocation -> Allocation
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: Allocation -> Allocation -> Allocation
$cmin :: Allocation -> Allocation -> Allocation
max :: Allocation -> Allocation -> Allocation
$cmax :: Allocation -> Allocation -> Allocation
>= :: Allocation -> Allocation -> Bool
$c>= :: Allocation -> Allocation -> Bool
> :: Allocation -> Allocation -> Bool
$c> :: Allocation -> Allocation -> Bool
<= :: Allocation -> Allocation -> Bool
$c<= :: Allocation -> Allocation -> Bool
< :: Allocation -> Allocation -> Bool
$c< :: Allocation -> Allocation -> Bool
compare :: Allocation -> Allocation -> Ordering
$ccompare :: Allocation -> Allocation -> Ordering
$cp1Ord :: Eq Allocation
Ord, Ptr b -> Int -> IO Allocation
Ptr b -> Int -> Allocation -> IO ()
Ptr Allocation -> IO Allocation
Ptr Allocation -> Int -> IO Allocation
Ptr Allocation -> Int -> Allocation -> IO ()
Ptr Allocation -> Allocation -> IO ()
Allocation -> Int
(Allocation -> Int)
-> (Allocation -> Int)
-> (Ptr Allocation -> Int -> IO Allocation)
-> (Ptr Allocation -> Int -> Allocation -> IO ())
-> (forall b. Ptr b -> Int -> IO Allocation)
-> (forall b. Ptr b -> Int -> Allocation -> IO ())
-> (Ptr Allocation -> IO Allocation)
-> (Ptr Allocation -> Allocation -> IO ())
-> Storable Allocation
forall b. Ptr b -> Int -> IO Allocation
forall b. Ptr b -> Int -> Allocation -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr Allocation -> Allocation -> IO ()
$cpoke :: Ptr Allocation -> Allocation -> IO ()
peek :: Ptr Allocation -> IO Allocation
$cpeek :: Ptr Allocation -> IO Allocation
pokeByteOff :: Ptr b -> Int -> Allocation -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> Allocation -> IO ()
peekByteOff :: Ptr b -> Int -> IO Allocation
$cpeekByteOff :: forall b. Ptr b -> Int -> IO Allocation
pokeElemOff :: Ptr Allocation -> Int -> Allocation -> IO ()
$cpokeElemOff :: Ptr Allocation -> Int -> Allocation -> IO ()
peekElemOff :: Ptr Allocation -> Int -> IO Allocation
$cpeekElemOff :: Ptr Allocation -> Int -> IO Allocation
alignment :: Allocation -> Int
$calignment :: Allocation -> Int
sizeOf :: Allocation -> Int
$csizeOf :: Allocation -> Int
Storable, Allocation
Allocation -> Zero Allocation
forall a. a -> Zero a
zero :: Allocation
$czero :: Allocation
Zero)
  deriving anyclass (Eq Allocation
Zero Allocation
Eq Allocation -> Zero Allocation -> IsHandle Allocation
forall a. Eq a -> Zero a -> IsHandle a
$cp2IsHandle :: Zero Allocation
$cp1IsHandle :: Eq Allocation
IsHandle)
instance Show Allocation where
  showsPrec :: Int -> Allocation -> ShowS
showsPrec Int
p (Allocation "lostAllocationCount" ::: Word64
x) = Bool -> ShowS -> ShowS
showParen (Int
p Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
>= Int
11) (String -> ShowS
showString String
"Allocation 0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("lostAllocationCount" ::: Word64) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "lostAllocationCount" ::: Word64
x)


-- | VmaAllocationInfo
--
-- Parameters of 'Allocation' objects, that can be retrieved using function
-- 'getAllocationInfo'.
data AllocationInfo = AllocationInfo
  { -- | Memory type index that this allocation was allocated from.
    --
    -- It never changes.
    AllocationInfo -> "memoryTypeIndex" ::: Word32
memoryType :: Word32
  , -- | Handle to Vulkan memory object.
    --
    -- Same memory object can be shared by multiple allocations.
    --
    -- It can change after call to 'defragment' if this allocation is passed to
    -- the function, or if allocation is lost.
    --
    -- If the allocation is lost, it is equal to @VK_NULL_HANDLE@.
    AllocationInfo -> DeviceMemory
deviceMemory :: DeviceMemory
  , -- | Offset in @VkDeviceMemory@ object to the beginning of this allocation,
    -- in bytes. @(deviceMemory, offset)@ pair is unique to this allocation.
    --
    -- You usually don\'t need to use this offset. If you create a buffer or an
    -- image together with the allocation using e.g. function 'createBuffer',
    -- 'createImage', functions that operate on these resources refer to the
    -- beginning of the buffer or image, not entire device memory block.
    -- Functions like 'mapMemory', 'bindBufferMemory' also refer to the
    -- beginning of the allocation and apply this offset automatically.
    --
    -- It can change after call to 'defragment' if this allocation is passed to
    -- the function, or if allocation is lost.
    AllocationInfo -> "lostAllocationCount" ::: Word64
offset :: DeviceSize
  , -- | Size of this allocation, in bytes.
    --
    -- It never changes, unless allocation is lost.
    --
    -- Note
    --
    -- Allocation size returned in this variable may be greater than the size
    -- requested for the resource e.g. as @VkBufferCreateInfo::size@. Whole
    -- size of the allocation is accessible for operations on memory e.g. using
    -- a pointer after mapping with 'mapMemory', but operations on the resource
    -- e.g. using @vkCmdCopyBuffer@ must be limited to the size of the
    -- resource.
    AllocationInfo -> "lostAllocationCount" ::: Word64
size :: DeviceSize
  , -- | Pointer to the beginning of this allocation as mapped data.
    --
    -- If the allocation hasn\'t been mapped using 'mapMemory' and hasn\'t been
    -- created with 'ALLOCATION_CREATE_MAPPED_BIT' flag, this value is null.
    --
    -- It can change after call to 'mapMemory', 'unmapMemory'. It can also
    -- change after call to 'defragment' if this allocation is passed to the
    -- function.
    AllocationInfo -> "userData" ::: Ptr ()
mappedData :: Ptr ()
  , -- | Custom general-purpose pointer that was passed as
    -- /VmaAllocationCreateInfo::pUserData/ or set using
    -- 'setAllocationUserData'.
    --
    -- It can change after call to 'setAllocationUserData' for this allocation.
    AllocationInfo -> "userData" ::: Ptr ()
userData :: Ptr ()
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (AllocationInfo)
#endif
deriving instance Show AllocationInfo

instance ToCStruct AllocationInfo where
  withCStruct :: AllocationInfo -> (Ptr AllocationInfo -> IO b) -> IO b
withCStruct AllocationInfo
x Ptr AllocationInfo -> IO b
f = Int -> (Ptr AllocationInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
48 ((Ptr AllocationInfo -> IO b) -> IO b)
-> (Ptr AllocationInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr AllocationInfo
p -> Ptr AllocationInfo -> AllocationInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocationInfo
p AllocationInfo
x (Ptr AllocationInfo -> IO b
f Ptr AllocationInfo
p)
  pokeCStruct :: Ptr AllocationInfo -> AllocationInfo -> IO b -> IO b
pokeCStruct Ptr AllocationInfo
p AllocationInfo{"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
"userData" ::: Ptr ()
DeviceMemory
userData :: "userData" ::: Ptr ()
mappedData :: "userData" ::: Ptr ()
size :: "lostAllocationCount" ::: Word64
offset :: "lostAllocationCount" ::: Word64
deviceMemory :: DeviceMemory
memoryType :: "memoryTypeIndex" ::: Word32
$sel:userData:AllocationInfo :: AllocationInfo -> "userData" ::: Ptr ()
$sel:mappedData:AllocationInfo :: AllocationInfo -> "userData" ::: Ptr ()
$sel:size:AllocationInfo :: AllocationInfo -> "lostAllocationCount" ::: Word64
$sel:offset:AllocationInfo :: AllocationInfo -> "lostAllocationCount" ::: Word64
$sel:deviceMemory:AllocationInfo :: AllocationInfo -> DeviceMemory
$sel:memoryType:AllocationInfo :: AllocationInfo -> "memoryTypeIndex" ::: Word32
..} IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
memoryType)
    Ptr DeviceMemory -> DeviceMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr DeviceMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceMemory)) (DeviceMemory
deviceMemory)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
offset)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
size)
    Ptr ("userData" ::: Ptr ()) -> ("userData" ::: Ptr ()) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr ()))) ("userData" ::: Ptr ()
mappedData)
    Ptr ("userData" ::: Ptr ()) -> ("userData" ::: Ptr ()) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr (Ptr ()))) ("userData" ::: Ptr ()
userData)
    IO b
f
  cStructSize :: Int
cStructSize = Int
48
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr AllocationInfo -> IO b -> IO b
pokeZeroCStruct Ptr AllocationInfo
p IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct AllocationInfo where
  peekCStruct :: Ptr AllocationInfo -> IO AllocationInfo
peekCStruct Ptr AllocationInfo
p = do
    "memoryTypeIndex" ::: Word32
memoryType <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32))
    DeviceMemory
deviceMemory <- Ptr DeviceMemory -> IO DeviceMemory
forall a. Storable a => Ptr a -> IO a
peek @DeviceMemory ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr DeviceMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceMemory))
    "lostAllocationCount" ::: Word64
offset <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
size <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr DeviceSize))
    "userData" ::: Ptr ()
pMappedData <- Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr ())))
    "userData" ::: Ptr ()
pUserData <- Ptr ("userData" ::: Ptr ()) -> IO ("userData" ::: Ptr ())
forall a. Storable a => Ptr a -> IO a
peek @(Ptr ()) ((Ptr AllocationInfo
p Ptr AllocationInfo -> Int -> Ptr ("userData" ::: Ptr ())
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr (Ptr ())))
    AllocationInfo -> IO AllocationInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (AllocationInfo -> IO AllocationInfo)
-> AllocationInfo -> IO AllocationInfo
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32)
-> DeviceMemory
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("userData" ::: Ptr ())
-> ("userData" ::: Ptr ())
-> AllocationInfo
AllocationInfo
             "memoryTypeIndex" ::: Word32
memoryType DeviceMemory
deviceMemory "lostAllocationCount" ::: Word64
offset "lostAllocationCount" ::: Word64
size "userData" ::: Ptr ()
pMappedData "userData" ::: Ptr ()
pUserData

instance Storable AllocationInfo where
  sizeOf :: AllocationInfo -> Int
sizeOf ~AllocationInfo
_ = Int
48
  alignment :: AllocationInfo -> Int
alignment ~AllocationInfo
_ = Int
8
  peek :: Ptr AllocationInfo -> IO AllocationInfo
peek = Ptr AllocationInfo -> IO AllocationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr AllocationInfo -> AllocationInfo -> IO ()
poke Ptr AllocationInfo
ptr AllocationInfo
poked = Ptr AllocationInfo -> AllocationInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr AllocationInfo
ptr AllocationInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero AllocationInfo where
  zero :: AllocationInfo
zero = ("memoryTypeIndex" ::: Word32)
-> DeviceMemory
-> ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("userData" ::: Ptr ())
-> ("userData" ::: Ptr ())
-> AllocationInfo
AllocationInfo
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           DeviceMemory
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "userData" ::: Ptr ()
forall a. Zero a => a
zero
           "userData" ::: Ptr ()
forall a. Zero a => a
zero


-- | VmaDefragmentationContext
--
-- Represents Opaque object that represents started defragmentation
-- process.
--
-- Fill structure 'DefragmentationInfo2' and call function
-- 'defragmentationBegin' to create it. Call function 'defragmentationEnd'
-- to destroy it.
newtype DefragmentationContext = DefragmentationContext Word64
  deriving newtype (DefragmentationContext -> DefragmentationContext -> Bool
(DefragmentationContext -> DefragmentationContext -> Bool)
-> (DefragmentationContext -> DefragmentationContext -> Bool)
-> Eq DefragmentationContext
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationContext -> DefragmentationContext -> Bool
$c/= :: DefragmentationContext -> DefragmentationContext -> Bool
== :: DefragmentationContext -> DefragmentationContext -> Bool
$c== :: DefragmentationContext -> DefragmentationContext -> Bool
Eq, Eq DefragmentationContext
Eq DefragmentationContext
-> (DefragmentationContext -> DefragmentationContext -> Ordering)
-> (DefragmentationContext -> DefragmentationContext -> Bool)
-> (DefragmentationContext -> DefragmentationContext -> Bool)
-> (DefragmentationContext -> DefragmentationContext -> Bool)
-> (DefragmentationContext -> DefragmentationContext -> Bool)
-> (DefragmentationContext
    -> DefragmentationContext -> DefragmentationContext)
-> (DefragmentationContext
    -> DefragmentationContext -> DefragmentationContext)
-> Ord DefragmentationContext
DefragmentationContext -> DefragmentationContext -> Bool
DefragmentationContext -> DefragmentationContext -> Ordering
DefragmentationContext
-> DefragmentationContext -> DefragmentationContext
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: DefragmentationContext
-> DefragmentationContext -> DefragmentationContext
$cmin :: DefragmentationContext
-> DefragmentationContext -> DefragmentationContext
max :: DefragmentationContext
-> DefragmentationContext -> DefragmentationContext
$cmax :: DefragmentationContext
-> DefragmentationContext -> DefragmentationContext
>= :: DefragmentationContext -> DefragmentationContext -> Bool
$c>= :: DefragmentationContext -> DefragmentationContext -> Bool
> :: DefragmentationContext -> DefragmentationContext -> Bool
$c> :: DefragmentationContext -> DefragmentationContext -> Bool
<= :: DefragmentationContext -> DefragmentationContext -> Bool
$c<= :: DefragmentationContext -> DefragmentationContext -> Bool
< :: DefragmentationContext -> DefragmentationContext -> Bool
$c< :: DefragmentationContext -> DefragmentationContext -> Bool
compare :: DefragmentationContext -> DefragmentationContext -> Ordering
$ccompare :: DefragmentationContext -> DefragmentationContext -> Ordering
$cp1Ord :: Eq DefragmentationContext
Ord, Ptr b -> Int -> IO DefragmentationContext
Ptr b -> Int -> DefragmentationContext -> IO ()
Ptr DefragmentationContext -> IO DefragmentationContext
Ptr DefragmentationContext -> Int -> IO DefragmentationContext
Ptr DefragmentationContext
-> Int -> DefragmentationContext -> IO ()
Ptr DefragmentationContext -> DefragmentationContext -> IO ()
DefragmentationContext -> Int
(DefragmentationContext -> Int)
-> (DefragmentationContext -> Int)
-> (Ptr DefragmentationContext -> Int -> IO DefragmentationContext)
-> (Ptr DefragmentationContext
    -> Int -> DefragmentationContext -> IO ())
-> (forall b. Ptr b -> Int -> IO DefragmentationContext)
-> (forall b. Ptr b -> Int -> DefragmentationContext -> IO ())
-> (Ptr DefragmentationContext -> IO DefragmentationContext)
-> (Ptr DefragmentationContext -> DefragmentationContext -> IO ())
-> Storable DefragmentationContext
forall b. Ptr b -> Int -> IO DefragmentationContext
forall b. Ptr b -> Int -> DefragmentationContext -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr DefragmentationContext -> DefragmentationContext -> IO ()
$cpoke :: Ptr DefragmentationContext -> DefragmentationContext -> IO ()
peek :: Ptr DefragmentationContext -> IO DefragmentationContext
$cpeek :: Ptr DefragmentationContext -> IO DefragmentationContext
pokeByteOff :: Ptr b -> Int -> DefragmentationContext -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> DefragmentationContext -> IO ()
peekByteOff :: Ptr b -> Int -> IO DefragmentationContext
$cpeekByteOff :: forall b. Ptr b -> Int -> IO DefragmentationContext
pokeElemOff :: Ptr DefragmentationContext
-> Int -> DefragmentationContext -> IO ()
$cpokeElemOff :: Ptr DefragmentationContext
-> Int -> DefragmentationContext -> IO ()
peekElemOff :: Ptr DefragmentationContext -> Int -> IO DefragmentationContext
$cpeekElemOff :: Ptr DefragmentationContext -> Int -> IO DefragmentationContext
alignment :: DefragmentationContext -> Int
$calignment :: DefragmentationContext -> Int
sizeOf :: DefragmentationContext -> Int
$csizeOf :: DefragmentationContext -> Int
Storable, DefragmentationContext
DefragmentationContext -> Zero DefragmentationContext
forall a. a -> Zero a
zero :: DefragmentationContext
$czero :: DefragmentationContext
Zero)
  deriving anyclass (Eq DefragmentationContext
Zero DefragmentationContext
Eq DefragmentationContext
-> Zero DefragmentationContext -> IsHandle DefragmentationContext
forall a. Eq a -> Zero a -> IsHandle a
$cp2IsHandle :: Zero DefragmentationContext
$cp1IsHandle :: Eq DefragmentationContext
IsHandle)
instance Show DefragmentationContext where
  showsPrec :: Int -> DefragmentationContext -> ShowS
showsPrec Int
p (DefragmentationContext "lostAllocationCount" ::: Word64
x) = Bool -> ShowS -> ShowS
showParen (Int
p Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
>= Int
11) (String -> ShowS
showString String
"DefragmentationContext 0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("lostAllocationCount" ::: Word64) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "lostAllocationCount" ::: Word64
x)


type DefragmentationFlags = DefragmentationFlagBits

-- | Flags to be used in 'defragmentationBegin'. None at the moment. Reserved
-- for future use.
newtype DefragmentationFlagBits = DefragmentationFlagBits Flags
  deriving newtype (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
(DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> Eq DefragmentationFlagBits
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c/= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
== :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c== :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
Eq, Eq DefragmentationFlagBits
Eq DefragmentationFlagBits
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Ordering)
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits -> DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits
    -> DefragmentationFlagBits -> DefragmentationFlagBits)
-> (DefragmentationFlagBits
    -> DefragmentationFlagBits -> DefragmentationFlagBits)
-> Ord DefragmentationFlagBits
DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
DefragmentationFlagBits -> DefragmentationFlagBits -> Ordering
DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$cmin :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
max :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$cmax :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
>= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c>= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
> :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c> :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
<= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c<= :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
< :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
$c< :: DefragmentationFlagBits -> DefragmentationFlagBits -> Bool
compare :: DefragmentationFlagBits -> DefragmentationFlagBits -> Ordering
$ccompare :: DefragmentationFlagBits -> DefragmentationFlagBits -> Ordering
$cp1Ord :: Eq DefragmentationFlagBits
Ord, Ptr b -> Int -> IO DefragmentationFlagBits
Ptr b -> Int -> DefragmentationFlagBits -> IO ()
Ptr DefragmentationFlagBits -> IO DefragmentationFlagBits
Ptr DefragmentationFlagBits -> Int -> IO DefragmentationFlagBits
Ptr DefragmentationFlagBits
-> Int -> DefragmentationFlagBits -> IO ()
Ptr DefragmentationFlagBits -> DefragmentationFlagBits -> IO ()
DefragmentationFlagBits -> Int
(DefragmentationFlagBits -> Int)
-> (DefragmentationFlagBits -> Int)
-> (Ptr DefragmentationFlagBits
    -> Int -> IO DefragmentationFlagBits)
-> (Ptr DefragmentationFlagBits
    -> Int -> DefragmentationFlagBits -> IO ())
-> (forall b. Ptr b -> Int -> IO DefragmentationFlagBits)
-> (forall b. Ptr b -> Int -> DefragmentationFlagBits -> IO ())
-> (Ptr DefragmentationFlagBits -> IO DefragmentationFlagBits)
-> (Ptr DefragmentationFlagBits
    -> DefragmentationFlagBits -> IO ())
-> Storable DefragmentationFlagBits
forall b. Ptr b -> Int -> IO DefragmentationFlagBits
forall b. Ptr b -> Int -> DefragmentationFlagBits -> IO ()
forall a.
(a -> Int)
-> (a -> Int)
-> (Ptr a -> Int -> IO a)
-> (Ptr a -> Int -> a -> IO ())
-> (forall b. Ptr b -> Int -> IO a)
-> (forall b. Ptr b -> Int -> a -> IO ())
-> (Ptr a -> IO a)
-> (Ptr a -> a -> IO ())
-> Storable a
poke :: Ptr DefragmentationFlagBits -> DefragmentationFlagBits -> IO ()
$cpoke :: Ptr DefragmentationFlagBits -> DefragmentationFlagBits -> IO ()
peek :: Ptr DefragmentationFlagBits -> IO DefragmentationFlagBits
$cpeek :: Ptr DefragmentationFlagBits -> IO DefragmentationFlagBits
pokeByteOff :: Ptr b -> Int -> DefragmentationFlagBits -> IO ()
$cpokeByteOff :: forall b. Ptr b -> Int -> DefragmentationFlagBits -> IO ()
peekByteOff :: Ptr b -> Int -> IO DefragmentationFlagBits
$cpeekByteOff :: forall b. Ptr b -> Int -> IO DefragmentationFlagBits
pokeElemOff :: Ptr DefragmentationFlagBits
-> Int -> DefragmentationFlagBits -> IO ()
$cpokeElemOff :: Ptr DefragmentationFlagBits
-> Int -> DefragmentationFlagBits -> IO ()
peekElemOff :: Ptr DefragmentationFlagBits -> Int -> IO DefragmentationFlagBits
$cpeekElemOff :: Ptr DefragmentationFlagBits -> Int -> IO DefragmentationFlagBits
alignment :: DefragmentationFlagBits -> Int
$calignment :: DefragmentationFlagBits -> Int
sizeOf :: DefragmentationFlagBits -> Int
$csizeOf :: DefragmentationFlagBits -> Int
Storable, DefragmentationFlagBits
DefragmentationFlagBits -> Zero DefragmentationFlagBits
forall a. a -> Zero a
zero :: DefragmentationFlagBits
$czero :: DefragmentationFlagBits
Zero, Eq DefragmentationFlagBits
DefragmentationFlagBits
Eq DefragmentationFlagBits
-> (DefragmentationFlagBits
    -> DefragmentationFlagBits -> DefragmentationFlagBits)
-> (DefragmentationFlagBits
    -> DefragmentationFlagBits -> DefragmentationFlagBits)
-> (DefragmentationFlagBits
    -> DefragmentationFlagBits -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> DefragmentationFlagBits
-> (Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> Bool)
-> (DefragmentationFlagBits -> Maybe Int)
-> (DefragmentationFlagBits -> Int)
-> (DefragmentationFlagBits -> Bool)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int -> DefragmentationFlagBits)
-> (DefragmentationFlagBits -> Int)
-> Bits DefragmentationFlagBits
Int -> DefragmentationFlagBits
DefragmentationFlagBits -> Bool
DefragmentationFlagBits -> Int
DefragmentationFlagBits -> Maybe Int
DefragmentationFlagBits -> DefragmentationFlagBits
DefragmentationFlagBits -> Int -> Bool
DefragmentationFlagBits -> Int -> DefragmentationFlagBits
DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
forall a.
Eq a
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a -> a)
-> (a -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> a
-> (Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> Bool)
-> (a -> Maybe Int)
-> (a -> Int)
-> (a -> Bool)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int -> a)
-> (a -> Int)
-> Bits a
popCount :: DefragmentationFlagBits -> Int
$cpopCount :: DefragmentationFlagBits -> Int
rotateR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$crotateR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
rotateL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$crotateL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
unsafeShiftR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cunsafeShiftR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
shiftR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cshiftR :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
unsafeShiftL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cunsafeShiftL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
shiftL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cshiftL :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
isSigned :: DefragmentationFlagBits -> Bool
$cisSigned :: DefragmentationFlagBits -> Bool
bitSize :: DefragmentationFlagBits -> Int
$cbitSize :: DefragmentationFlagBits -> Int
bitSizeMaybe :: DefragmentationFlagBits -> Maybe Int
$cbitSizeMaybe :: DefragmentationFlagBits -> Maybe Int
testBit :: DefragmentationFlagBits -> Int -> Bool
$ctestBit :: DefragmentationFlagBits -> Int -> Bool
complementBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$ccomplementBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
clearBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cclearBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
setBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$csetBit :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
bit :: Int -> DefragmentationFlagBits
$cbit :: Int -> DefragmentationFlagBits
zeroBits :: DefragmentationFlagBits
$czeroBits :: DefragmentationFlagBits
rotate :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$crotate :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
shift :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
$cshift :: DefragmentationFlagBits -> Int -> DefragmentationFlagBits
complement :: DefragmentationFlagBits -> DefragmentationFlagBits
$ccomplement :: DefragmentationFlagBits -> DefragmentationFlagBits
xor :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$cxor :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
.|. :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$c.|. :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
.&. :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$c.&. :: DefragmentationFlagBits
-> DefragmentationFlagBits -> DefragmentationFlagBits
$cp1Bits :: Eq DefragmentationFlagBits
Bits, Bits DefragmentationFlagBits
Bits DefragmentationFlagBits
-> (DefragmentationFlagBits -> Int)
-> (DefragmentationFlagBits -> Int)
-> (DefragmentationFlagBits -> Int)
-> FiniteBits DefragmentationFlagBits
DefragmentationFlagBits -> Int
forall b.
Bits b -> (b -> Int) -> (b -> Int) -> (b -> Int) -> FiniteBits b
countTrailingZeros :: DefragmentationFlagBits -> Int
$ccountTrailingZeros :: DefragmentationFlagBits -> Int
countLeadingZeros :: DefragmentationFlagBits -> Int
$ccountLeadingZeros :: DefragmentationFlagBits -> Int
finiteBitSize :: DefragmentationFlagBits -> Int
$cfiniteBitSize :: DefragmentationFlagBits -> Int
$cp1FiniteBits :: Bits DefragmentationFlagBits
FiniteBits)


pattern $bDEFRAGMENTATION_FLAG_INCREMENTAL :: DefragmentationFlagBits
$mDEFRAGMENTATION_FLAG_INCREMENTAL :: forall r.
DefragmentationFlagBits -> (Void# -> r) -> (Void# -> r) -> r
DEFRAGMENTATION_FLAG_INCREMENTAL = DefragmentationFlagBits 0x00000001

conNameDefragmentationFlagBits :: String
conNameDefragmentationFlagBits :: String
conNameDefragmentationFlagBits = String
"DefragmentationFlagBits"

enumPrefixDefragmentationFlagBits :: String
enumPrefixDefragmentationFlagBits :: String
enumPrefixDefragmentationFlagBits = String
"DEFRAGMENTATION_FLAG_INCREMENTAL"

showTableDefragmentationFlagBits :: [(DefragmentationFlagBits, String)]
showTableDefragmentationFlagBits :: [(DefragmentationFlagBits, String)]
showTableDefragmentationFlagBits = [(DefragmentationFlagBits
DEFRAGMENTATION_FLAG_INCREMENTAL, String
"")]

instance Show DefragmentationFlagBits where
  showsPrec :: Int -> DefragmentationFlagBits -> ShowS
showsPrec = String
-> [(DefragmentationFlagBits, String)]
-> String
-> (DefragmentationFlagBits -> "memoryTypeIndex" ::: Word32)
-> (("memoryTypeIndex" ::: Word32) -> ShowS)
-> Int
-> DefragmentationFlagBits
-> ShowS
forall a i.
Eq a =>
String
-> [(a, String)]
-> String
-> (a -> i)
-> (i -> ShowS)
-> Int
-> a
-> ShowS
enumShowsPrec String
enumPrefixDefragmentationFlagBits
                            [(DefragmentationFlagBits, String)]
showTableDefragmentationFlagBits
                            String
conNameDefragmentationFlagBits
                            (\(DefragmentationFlagBits "memoryTypeIndex" ::: Word32
x) -> "memoryTypeIndex" ::: Word32
x)
                            (\"memoryTypeIndex" ::: Word32
x -> String -> ShowS
showString String
"0x" ShowS -> ShowS -> ShowS
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ("memoryTypeIndex" ::: Word32) -> ShowS
forall a. (Integral a, Show a) => a -> ShowS
showHex "memoryTypeIndex" ::: Word32
x)

instance Read DefragmentationFlagBits where
  readPrec :: ReadPrec DefragmentationFlagBits
readPrec = String
-> [(DefragmentationFlagBits, String)]
-> String
-> (("memoryTypeIndex" ::: Word32) -> DefragmentationFlagBits)
-> ReadPrec DefragmentationFlagBits
forall i a.
Read i =>
String -> [(a, String)] -> String -> (i -> a) -> ReadPrec a
enumReadPrec String
enumPrefixDefragmentationFlagBits
                          [(DefragmentationFlagBits, String)]
showTableDefragmentationFlagBits
                          String
conNameDefragmentationFlagBits
                          ("memoryTypeIndex" ::: Word32) -> DefragmentationFlagBits
DefragmentationFlagBits


-- | VmaDefragmentationInfo2
--
-- Parameters for defragmentation.
--
-- To be used with function 'defragmentationBegin'.
data DefragmentationInfo2 = DefragmentationInfo2
  { -- | Reserved for future use. Should be 0.
    DefragmentationInfo2 -> DefragmentationFlagBits
flags :: DefragmentationFlags
  , -- | Pointer to array of allocations that can be defragmented.
    --
    -- The array should have @allocationCount@ elements. The array should not
    -- contain nulls. Elements in the array should be unique - same allocation
    -- cannot occur twice. It is safe to pass allocations that are in the lost
    -- state - they are ignored. All allocations not present in this array are
    -- considered non-moveable during this defragmentation.
    DefragmentationInfo2 -> "allocations" ::: Vector Allocation
allocations :: Vector Allocation
  , -- | Optional, output. Pointer to array that will be filled with information
    -- whether the allocation at certain index has been changed during
    -- defragmentation.
    --
    -- The array should have @allocationCount@ elements. You can pass null if
    -- you are not interested in this information.
    DefragmentationInfo2 -> Ptr Bool32
allocationsChanged :: Ptr Bool32
  , -- | Either null or pointer to array of pools to be defragmented.
    --
    -- All the allocations in the specified pools can be moved during
    -- defragmentation and there is no way to check if they were really moved
    -- as in @pAllocationsChanged@, so you must query all the allocations in
    -- all these pools for new @VkDeviceMemory@ and offset using
    -- 'getAllocationInfo' if you might need to recreate buffers and images
    -- bound to them.
    --
    -- The array should have @poolCount@ elements. The array should not contain
    -- nulls. Elements in the array should be unique - same pool cannot occur
    -- twice.
    --
    -- Using this array is equivalent to specifying all allocations from the
    -- pools in @pAllocations@. It might be more efficient.
    DefragmentationInfo2 -> Vector Pool
pools :: Vector Pool
  , -- | Maximum total numbers of bytes that can be copied while moving
    -- allocations to different places using transfers on CPU side, like
    -- @memcpy()@, @memmove()@.
    --
    -- @VK_WHOLE_SIZE@ means no limit.
    DefragmentationInfo2 -> "lostAllocationCount" ::: Word64
maxCpuBytesToMove :: DeviceSize
  , -- | Maximum number of allocations that can be moved to a different place
    -- using transfers on CPU side, like @memcpy()@, @memmove()@.
    --
    -- @UINT32_MAX@ means no limit.
    DefragmentationInfo2 -> "memoryTypeIndex" ::: Word32
maxCpuAllocationsToMove :: Word32
  , -- | Maximum total numbers of bytes that can be copied while moving
    -- allocations to different places using transfers on GPU side, posted to
    -- @commandBuffer@.
    --
    -- @VK_WHOLE_SIZE@ means no limit.
    DefragmentationInfo2 -> "lostAllocationCount" ::: Word64
maxGpuBytesToMove :: DeviceSize
  , -- | Maximum number of allocations that can be moved to a different place
    -- using transfers on GPU side, posted to @commandBuffer@.
    --
    -- @UINT32_MAX@ means no limit.
    DefragmentationInfo2 -> "memoryTypeIndex" ::: Word32
maxGpuAllocationsToMove :: Word32
  , -- | Optional. Command buffer where GPU copy commands will be posted.
    --
    -- If not null, it must be a valid command buffer handle that supports
    -- Transfer queue type. It must be in the recording state and outside of a
    -- render pass instance. You need to submit it and make sure it finished
    -- execution before calling 'defragmentationEnd'.
    --
    -- Passing null means that only CPU defragmentation will be performed.
    DefragmentationInfo2 -> Ptr CommandBuffer_T
commandBuffer :: Ptr CommandBuffer_T
  }
  deriving (Typeable)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DefragmentationInfo2)
#endif
deriving instance Show DefragmentationInfo2

instance ToCStruct DefragmentationInfo2 where
  withCStruct :: DefragmentationInfo2 -> (Ptr DefragmentationInfo2 -> IO b) -> IO b
withCStruct DefragmentationInfo2
x Ptr DefragmentationInfo2 -> IO b
f = Int -> (Ptr DefragmentationInfo2 -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
80 ((Ptr DefragmentationInfo2 -> IO b) -> IO b)
-> (Ptr DefragmentationInfo2 -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DefragmentationInfo2
p -> Ptr DefragmentationInfo2 -> DefragmentationInfo2 -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationInfo2
p DefragmentationInfo2
x (Ptr DefragmentationInfo2 -> IO b
f Ptr DefragmentationInfo2
p)
  pokeCStruct :: Ptr DefragmentationInfo2 -> DefragmentationInfo2 -> IO b -> IO b
pokeCStruct Ptr DefragmentationInfo2
p DefragmentationInfo2{"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
Ptr CommandBuffer_T
Ptr Bool32
"allocations" ::: Vector Allocation
Vector Pool
DefragmentationFlagBits
commandBuffer :: Ptr CommandBuffer_T
maxGpuAllocationsToMove :: "memoryTypeIndex" ::: Word32
maxGpuBytesToMove :: "lostAllocationCount" ::: Word64
maxCpuAllocationsToMove :: "memoryTypeIndex" ::: Word32
maxCpuBytesToMove :: "lostAllocationCount" ::: Word64
pools :: Vector Pool
allocationsChanged :: Ptr Bool32
allocations :: "allocations" ::: Vector Allocation
flags :: DefragmentationFlagBits
$sel:commandBuffer:DefragmentationInfo2 :: DefragmentationInfo2 -> Ptr CommandBuffer_T
$sel:maxGpuAllocationsToMove:DefragmentationInfo2 :: DefragmentationInfo2 -> "memoryTypeIndex" ::: Word32
$sel:maxGpuBytesToMove:DefragmentationInfo2 :: DefragmentationInfo2 -> "lostAllocationCount" ::: Word64
$sel:maxCpuAllocationsToMove:DefragmentationInfo2 :: DefragmentationInfo2 -> "memoryTypeIndex" ::: Word32
$sel:maxCpuBytesToMove:DefragmentationInfo2 :: DefragmentationInfo2 -> "lostAllocationCount" ::: Word64
$sel:pools:DefragmentationInfo2 :: DefragmentationInfo2 -> Vector Pool
$sel:allocationsChanged:DefragmentationInfo2 :: DefragmentationInfo2 -> Ptr Bool32
$sel:allocations:DefragmentationInfo2 :: DefragmentationInfo2 -> "allocations" ::: Vector Allocation
$sel:flags:DefragmentationInfo2 :: DefragmentationInfo2 -> DefragmentationFlagBits
..} IO b
f = ContT b IO b -> IO b
forall (m :: * -> *) r. Monad m => ContT r m r -> m r
evalContT (ContT b IO b -> IO b) -> ContT b IO b -> IO b
forall a b. (a -> b) -> a -> b
$ do
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr DefragmentationFlagBits -> DefragmentationFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr DefragmentationFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DefragmentationFlags)) (DefragmentationFlagBits
flags)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr Word32)) ((Int -> "memoryTypeIndex" ::: Word32
forall a b. (Integral a, Num b) => a -> b
fromIntegral (("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length (("allocations" ::: Vector Allocation) -> Int)
-> ("allocations" ::: Vector Allocation) -> Int
forall a b. (a -> b) -> a -> b
$ ("allocations" ::: Vector Allocation
allocations)) :: Word32))
    Ptr Allocation
pPAllocations' <- ((Ptr Allocation -> IO b) -> IO b) -> ContT b IO (Ptr Allocation)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Allocation -> IO b) -> IO b) -> ContT b IO (Ptr Allocation))
-> ((Ptr Allocation -> IO b) -> IO b)
-> ContT b IO (Ptr Allocation)
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr Allocation -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Allocation ((("allocations" ::: Vector Allocation) -> Int
forall a. Vector a -> Int
Data.Vector.length ("allocations" ::: Vector Allocation
allocations)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Allocation -> IO ())
-> ("allocations" ::: Vector Allocation) -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Allocation
e -> Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Allocation
pPAllocations' Ptr Allocation -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation) (Allocation
e)) ("allocations" ::: Vector Allocation
allocations)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr Allocation) -> Ptr Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Allocation)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr Allocation))) (Ptr Allocation
pPAllocations')
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr Bool32) -> Ptr Bool32 -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Bool32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Bool32))) (Ptr Bool32
allocationsChanged)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr Word32)) ((Int -> "memoryTypeIndex" ::: Word32
forall a b. (Integral a, Num b) => a -> b
fromIntegral (Vector Pool -> Int
forall a. Vector a -> Int
Data.Vector.length (Vector Pool -> Int) -> Vector Pool -> Int
forall a b. (a -> b) -> a -> b
$ (Vector Pool
pools)) :: Word32))
    Ptr Pool
pPPools' <- ((Ptr Pool -> IO b) -> IO b) -> ContT b IO (Ptr Pool)
forall k (r :: k) (m :: k -> *) a.
((a -> m r) -> m r) -> ContT r m a
ContT (((Ptr Pool -> IO b) -> IO b) -> ContT b IO (Ptr Pool))
-> ((Ptr Pool -> IO b) -> IO b) -> ContT b IO (Ptr Pool)
forall a b. (a -> b) -> a -> b
$ Int -> (Ptr Pool -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes @Pool ((Vector Pool -> Int
forall a. Vector a -> Int
Data.Vector.length (Vector Pool
pools)) Int -> Int -> Int
forall a. Num a => a -> a -> a
* Int
8)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ (Int -> Pool -> IO ()) -> Vector Pool -> IO ()
forall (m :: * -> *) a b.
Monad m =>
(Int -> a -> m b) -> Vector a -> m ()
Data.Vector.imapM_ (\Int
i Pool
e -> Ptr Pool -> Pool -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Pool
pPPools' Ptr Pool -> Int -> Ptr Pool
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Pool) (Pool
e)) (Vector Pool
pools)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr Pool) -> Ptr Pool -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Pool)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr Pool))) (Ptr Pool
pPPools')
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
maxCpuBytesToMove)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
maxCpuAllocationsToMove)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
maxGpuBytesToMove)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
maxGpuAllocationsToMove)
    IO () -> ContT b IO ()
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO () -> ContT b IO ()) -> IO () -> ContT b IO ()
forall a b. (a -> b) -> a -> b
$ Ptr (Ptr CommandBuffer_T) -> Ptr CommandBuffer_T -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr CommandBuffer_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr (Ptr CommandBuffer_T))) (Ptr CommandBuffer_T
commandBuffer)
    IO b -> ContT b IO b
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadTrans t, Monad m) =>
m a -> t m a
lift (IO b -> ContT b IO b) -> IO b -> ContT b IO b
forall a b. (a -> b) -> a -> b
$ IO b
f
  cStructSize :: Int
cStructSize = Int
80
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DefragmentationInfo2 -> IO b -> IO b
pokeZeroCStruct Ptr DefragmentationInfo2
p IO b
f = do
    Ptr DefragmentationFlagBits -> DefragmentationFlagBits -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr DefragmentationFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DefragmentationFlags)) (DefragmentationFlagBits
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct DefragmentationInfo2 where
  peekCStruct :: Ptr DefragmentationInfo2 -> IO DefragmentationInfo2
peekCStruct Ptr DefragmentationInfo2
p = do
    DefragmentationFlagBits
flags <- Ptr DefragmentationFlagBits -> IO DefragmentationFlagBits
forall a. Storable a => Ptr a -> IO a
peek @DefragmentationFlags ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr DefragmentationFlagBits
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DefragmentationFlags))
    "memoryTypeIndex" ::: Word32
allocationCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4 :: Ptr Word32))
    Ptr Allocation
pAllocations <- Ptr (Ptr Allocation) -> IO (Ptr Allocation)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Allocation) ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Allocation)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr Allocation)))
    "allocations" ::: Vector Allocation
pAllocations' <- Int
-> (Int -> IO Allocation)
-> IO ("allocations" ::: Vector Allocation)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (("memoryTypeIndex" ::: Word32) -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral "memoryTypeIndex" ::: Word32
allocationCount) (\Int
i -> Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation ((Ptr Allocation
pAllocations Ptr Allocation -> Int -> Ptr Allocation
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Allocation)))
    Ptr Bool32
pAllocationsChanged <- Ptr (Ptr Bool32) -> IO (Ptr Bool32)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Bool32) ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Bool32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr (Ptr Bool32)))
    "memoryTypeIndex" ::: Word32
poolCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
24 :: Ptr Word32))
    Ptr Pool
pPools <- Ptr (Ptr Pool) -> IO (Ptr Pool)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr Pool) ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr Pool)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
32 :: Ptr (Ptr Pool)))
    Vector Pool
pPools' <- Int -> (Int -> IO Pool) -> IO (Vector Pool)
forall (m :: * -> *) a.
Monad m =>
Int -> (Int -> m a) -> m (Vector a)
generateM (("memoryTypeIndex" ::: Word32) -> Int
forall a b. (Integral a, Num b) => a -> b
fromIntegral "memoryTypeIndex" ::: Word32
poolCount) (\Int
i -> Ptr Pool -> IO Pool
forall a. Storable a => Ptr a -> IO a
peek @Pool ((Ptr Pool
pPools Ptr Pool -> Int -> Ptr Pool
forall a. Ptr a -> Int -> Ptr a
`advancePtrBytes` (Int
8 Int -> Int -> Int
forall a. Num a => a -> a -> a
* (Int
i)) :: Ptr Pool)))
    "lostAllocationCount" ::: Word64
maxCpuBytesToMove <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
40 :: Ptr DeviceSize))
    "memoryTypeIndex" ::: Word32
maxCpuAllocationsToMove <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
48 :: Ptr Word32))
    "lostAllocationCount" ::: Word64
maxGpuBytesToMove <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
56 :: Ptr DeviceSize))
    "memoryTypeIndex" ::: Word32
maxGpuAllocationsToMove <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
64 :: Ptr Word32))
    Ptr CommandBuffer_T
commandBuffer <- Ptr (Ptr CommandBuffer_T) -> IO (Ptr CommandBuffer_T)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr CommandBuffer_T) ((Ptr DefragmentationInfo2
p Ptr DefragmentationInfo2 -> Int -> Ptr (Ptr CommandBuffer_T)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
72 :: Ptr (Ptr CommandBuffer_T)))
    DefragmentationInfo2 -> IO DefragmentationInfo2
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationInfo2 -> IO DefragmentationInfo2)
-> DefragmentationInfo2 -> IO DefragmentationInfo2
forall a b. (a -> b) -> a -> b
$ DefragmentationFlagBits
-> ("allocations" ::: Vector Allocation)
-> Ptr Bool32
-> Vector Pool
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> Ptr CommandBuffer_T
-> DefragmentationInfo2
DefragmentationInfo2
             DefragmentationFlagBits
flags "allocations" ::: Vector Allocation
pAllocations' Ptr Bool32
pAllocationsChanged Vector Pool
pPools' "lostAllocationCount" ::: Word64
maxCpuBytesToMove "memoryTypeIndex" ::: Word32
maxCpuAllocationsToMove "lostAllocationCount" ::: Word64
maxGpuBytesToMove "memoryTypeIndex" ::: Word32
maxGpuAllocationsToMove Ptr CommandBuffer_T
commandBuffer

instance Zero DefragmentationInfo2 where
  zero :: DefragmentationInfo2
zero = DefragmentationFlagBits
-> ("allocations" ::: Vector Allocation)
-> Ptr Bool32
-> Vector Pool
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> Ptr CommandBuffer_T
-> DefragmentationInfo2
DefragmentationInfo2
           DefragmentationFlagBits
forall a. Zero a => a
zero
           "allocations" ::: Vector Allocation
forall a. Monoid a => a
mempty
           Ptr Bool32
forall a. Zero a => a
zero
           Vector Pool
forall a. Monoid a => a
mempty
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Ptr CommandBuffer_T
forall a. Zero a => a
zero


-- | VmaDefragmentationPassMoveInfo
data DefragmentationPassMoveInfo = DefragmentationPassMoveInfo
  { 
    DefragmentationPassMoveInfo -> Allocation
allocation :: Allocation
  , 
    DefragmentationPassMoveInfo -> DeviceMemory
memory :: DeviceMemory
  , 
    DefragmentationPassMoveInfo -> "lostAllocationCount" ::: Word64
offset :: DeviceSize
  }
  deriving (Typeable, DefragmentationPassMoveInfo -> DefragmentationPassMoveInfo -> Bool
(DefragmentationPassMoveInfo
 -> DefragmentationPassMoveInfo -> Bool)
-> (DefragmentationPassMoveInfo
    -> DefragmentationPassMoveInfo -> Bool)
-> Eq DefragmentationPassMoveInfo
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationPassMoveInfo -> DefragmentationPassMoveInfo -> Bool
$c/= :: DefragmentationPassMoveInfo -> DefragmentationPassMoveInfo -> Bool
== :: DefragmentationPassMoveInfo -> DefragmentationPassMoveInfo -> Bool
$c== :: DefragmentationPassMoveInfo -> DefragmentationPassMoveInfo -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DefragmentationPassMoveInfo)
#endif
deriving instance Show DefragmentationPassMoveInfo

instance ToCStruct DefragmentationPassMoveInfo where
  withCStruct :: DefragmentationPassMoveInfo
-> (Ptr DefragmentationPassMoveInfo -> IO b) -> IO b
withCStruct DefragmentationPassMoveInfo
x Ptr DefragmentationPassMoveInfo -> IO b
f = Int -> (Ptr DefragmentationPassMoveInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
24 ((Ptr DefragmentationPassMoveInfo -> IO b) -> IO b)
-> (Ptr DefragmentationPassMoveInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DefragmentationPassMoveInfo
p -> Ptr DefragmentationPassMoveInfo
-> DefragmentationPassMoveInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassMoveInfo
p DefragmentationPassMoveInfo
x (Ptr DefragmentationPassMoveInfo -> IO b
f Ptr DefragmentationPassMoveInfo
p)
  pokeCStruct :: Ptr DefragmentationPassMoveInfo
-> DefragmentationPassMoveInfo -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassMoveInfo
p DefragmentationPassMoveInfo{"lostAllocationCount" ::: Word64
DeviceMemory
Allocation
offset :: "lostAllocationCount" ::: Word64
memory :: DeviceMemory
allocation :: Allocation
$sel:offset:DefragmentationPassMoveInfo :: DefragmentationPassMoveInfo -> "lostAllocationCount" ::: Word64
$sel:memory:DefragmentationPassMoveInfo :: DefragmentationPassMoveInfo -> DeviceMemory
$sel:allocation:DefragmentationPassMoveInfo :: DefragmentationPassMoveInfo -> Allocation
..} IO b
f = do
    Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Allocation)) (Allocation
allocation)
    Ptr DeviceMemory -> DeviceMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr DeviceMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceMemory)) (DeviceMemory
memory)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
offset)
    IO b
f
  cStructSize :: Int
cStructSize = Int
24
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DefragmentationPassMoveInfo -> IO b -> IO b
pokeZeroCStruct Ptr DefragmentationPassMoveInfo
p IO b
f = do
    Ptr Allocation -> Allocation -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Allocation)) (Allocation
forall a. Zero a => a
zero)
    Ptr DeviceMemory -> DeviceMemory -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr DeviceMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceMemory)) (DeviceMemory
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct DefragmentationPassMoveInfo where
  peekCStruct :: Ptr DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo
peekCStruct Ptr DefragmentationPassMoveInfo
p = do
    Allocation
allocation <- Ptr Allocation -> IO Allocation
forall a. Storable a => Ptr a -> IO a
peek @Allocation ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr Allocation
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Allocation))
    DeviceMemory
memory <- Ptr DeviceMemory -> IO DeviceMemory
forall a. Storable a => Ptr a -> IO a
peek @DeviceMemory ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo -> Int -> Ptr DeviceMemory
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceMemory))
    "lostAllocationCount" ::: Word64
offset <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationPassMoveInfo
p Ptr DefragmentationPassMoveInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr DeviceSize))
    DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo)
-> DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo
forall a b. (a -> b) -> a -> b
$ Allocation
-> DeviceMemory
-> ("lostAllocationCount" ::: Word64)
-> DefragmentationPassMoveInfo
DefragmentationPassMoveInfo
             Allocation
allocation DeviceMemory
memory "lostAllocationCount" ::: Word64
offset

instance Storable DefragmentationPassMoveInfo where
  sizeOf :: DefragmentationPassMoveInfo -> Int
sizeOf ~DefragmentationPassMoveInfo
_ = Int
24
  alignment :: DefragmentationPassMoveInfo -> Int
alignment ~DefragmentationPassMoveInfo
_ = Int
8
  peek :: Ptr DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo
peek = Ptr DefragmentationPassMoveInfo -> IO DefragmentationPassMoveInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr DefragmentationPassMoveInfo
-> DefragmentationPassMoveInfo -> IO ()
poke Ptr DefragmentationPassMoveInfo
ptr DefragmentationPassMoveInfo
poked = Ptr DefragmentationPassMoveInfo
-> DefragmentationPassMoveInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassMoveInfo
ptr DefragmentationPassMoveInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero DefragmentationPassMoveInfo where
  zero :: DefragmentationPassMoveInfo
zero = Allocation
-> DeviceMemory
-> ("lostAllocationCount" ::: Word64)
-> DefragmentationPassMoveInfo
DefragmentationPassMoveInfo
           Allocation
forall a. Zero a => a
zero
           DeviceMemory
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero


-- | VmaDefragmentationPassInfo
--
-- Parameters for incremental defragmentation steps.
--
-- To be used with function 'beginDefragmentationPass'.
data DefragmentationPassInfo = DefragmentationPassInfo
  { 
    DefragmentationPassInfo -> "memoryTypeIndex" ::: Word32
moveCount :: Word32
  , 
    DefragmentationPassInfo -> Ptr DefragmentationPassMoveInfo
moves :: Ptr DefragmentationPassMoveInfo
  }
  deriving (Typeable, DefragmentationPassInfo -> DefragmentationPassInfo -> Bool
(DefragmentationPassInfo -> DefragmentationPassInfo -> Bool)
-> (DefragmentationPassInfo -> DefragmentationPassInfo -> Bool)
-> Eq DefragmentationPassInfo
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationPassInfo -> DefragmentationPassInfo -> Bool
$c/= :: DefragmentationPassInfo -> DefragmentationPassInfo -> Bool
== :: DefragmentationPassInfo -> DefragmentationPassInfo -> Bool
$c== :: DefragmentationPassInfo -> DefragmentationPassInfo -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DefragmentationPassInfo)
#endif
deriving instance Show DefragmentationPassInfo

instance ToCStruct DefragmentationPassInfo where
  withCStruct :: DefragmentationPassInfo
-> (Ptr DefragmentationPassInfo -> IO b) -> IO b
withCStruct DefragmentationPassInfo
x Ptr DefragmentationPassInfo -> IO b
f = Int -> (Ptr DefragmentationPassInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
16 ((Ptr DefragmentationPassInfo -> IO b) -> IO b)
-> (Ptr DefragmentationPassInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DefragmentationPassInfo
p -> Ptr DefragmentationPassInfo
-> DefragmentationPassInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassInfo
p DefragmentationPassInfo
x (Ptr DefragmentationPassInfo -> IO b
f Ptr DefragmentationPassInfo
p)
  pokeCStruct :: Ptr DefragmentationPassInfo
-> DefragmentationPassInfo -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassInfo
p DefragmentationPassInfo{"memoryTypeIndex" ::: Word32
Ptr DefragmentationPassMoveInfo
moves :: Ptr DefragmentationPassMoveInfo
moveCount :: "memoryTypeIndex" ::: Word32
$sel:moves:DefragmentationPassInfo :: DefragmentationPassInfo -> Ptr DefragmentationPassMoveInfo
$sel:moveCount:DefragmentationPassInfo :: DefragmentationPassInfo -> "memoryTypeIndex" ::: Word32
..} IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
moveCount)
    Ptr (Ptr DefragmentationPassMoveInfo)
-> Ptr DefragmentationPassMoveInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr (Ptr DefragmentationPassMoveInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr DefragmentationPassMoveInfo))) (Ptr DefragmentationPassMoveInfo
moves)
    IO b
f
  cStructSize :: Int
cStructSize = Int
16
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DefragmentationPassInfo -> IO b -> IO b
pokeZeroCStruct Ptr DefragmentationPassInfo
p IO b
f = do
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr (Ptr DefragmentationPassMoveInfo)
-> Ptr DefragmentationPassMoveInfo -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr (Ptr DefragmentationPassMoveInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr DefragmentationPassMoveInfo))) (Ptr DefragmentationPassMoveInfo
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct DefragmentationPassInfo where
  peekCStruct :: Ptr DefragmentationPassInfo -> IO DefragmentationPassInfo
peekCStruct Ptr DefragmentationPassInfo
p = do
    "memoryTypeIndex" ::: Word32
moveCount <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr Word32))
    Ptr DefragmentationPassMoveInfo
pMoves <- Ptr (Ptr DefragmentationPassMoveInfo)
-> IO (Ptr DefragmentationPassMoveInfo)
forall a. Storable a => Ptr a -> IO a
peek @(Ptr DefragmentationPassMoveInfo) ((Ptr DefragmentationPassInfo
p Ptr DefragmentationPassInfo
-> Int -> Ptr (Ptr DefragmentationPassMoveInfo)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr (Ptr DefragmentationPassMoveInfo)))
    DefragmentationPassInfo -> IO DefragmentationPassInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationPassInfo -> IO DefragmentationPassInfo)
-> DefragmentationPassInfo -> IO DefragmentationPassInfo
forall a b. (a -> b) -> a -> b
$ ("memoryTypeIndex" ::: Word32)
-> Ptr DefragmentationPassMoveInfo -> DefragmentationPassInfo
DefragmentationPassInfo
             "memoryTypeIndex" ::: Word32
moveCount Ptr DefragmentationPassMoveInfo
pMoves

instance Storable DefragmentationPassInfo where
  sizeOf :: DefragmentationPassInfo -> Int
sizeOf ~DefragmentationPassInfo
_ = Int
16
  alignment :: DefragmentationPassInfo -> Int
alignment ~DefragmentationPassInfo
_ = Int
8
  peek :: Ptr DefragmentationPassInfo -> IO DefragmentationPassInfo
peek = Ptr DefragmentationPassInfo -> IO DefragmentationPassInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr DefragmentationPassInfo -> DefragmentationPassInfo -> IO ()
poke Ptr DefragmentationPassInfo
ptr DefragmentationPassInfo
poked = Ptr DefragmentationPassInfo
-> DefragmentationPassInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationPassInfo
ptr DefragmentationPassInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero DefragmentationPassInfo where
  zero :: DefragmentationPassInfo
zero = ("memoryTypeIndex" ::: Word32)
-> Ptr DefragmentationPassMoveInfo -> DefragmentationPassInfo
DefragmentationPassInfo
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           Ptr DefragmentationPassMoveInfo
forall a. Zero a => a
zero


-- | VmaDefragmentationInfo
--
-- Deprecated. Optional configuration parameters to be passed to function
-- 'defragment'.
--
-- /Deprecated/
--
-- This is a part of the old interface. It is recommended to use structure
-- 'DefragmentationInfo2' and function 'defragmentationBegin' instead.
data DefragmentationInfo = DefragmentationInfo
  { -- | Maximum total numbers of bytes that can be copied while moving
    -- allocations to different places.
    --
    -- Default is @VK_WHOLE_SIZE@, which means no limit.
    DefragmentationInfo -> "lostAllocationCount" ::: Word64
maxBytesToMove :: DeviceSize
  , -- | Maximum number of allocations that can be moved to different place.
    --
    -- Default is @UINT32_MAX@, which means no limit.
    DefragmentationInfo -> "memoryTypeIndex" ::: Word32
maxAllocationsToMove :: Word32
  }
  deriving (Typeable, DefragmentationInfo -> DefragmentationInfo -> Bool
(DefragmentationInfo -> DefragmentationInfo -> Bool)
-> (DefragmentationInfo -> DefragmentationInfo -> Bool)
-> Eq DefragmentationInfo
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationInfo -> DefragmentationInfo -> Bool
$c/= :: DefragmentationInfo -> DefragmentationInfo -> Bool
== :: DefragmentationInfo -> DefragmentationInfo -> Bool
$c== :: DefragmentationInfo -> DefragmentationInfo -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DefragmentationInfo)
#endif
deriving instance Show DefragmentationInfo

instance ToCStruct DefragmentationInfo where
  withCStruct :: DefragmentationInfo -> (Ptr DefragmentationInfo -> IO b) -> IO b
withCStruct DefragmentationInfo
x Ptr DefragmentationInfo -> IO b
f = Int -> (Ptr DefragmentationInfo -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
16 ((Ptr DefragmentationInfo -> IO b) -> IO b)
-> (Ptr DefragmentationInfo -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DefragmentationInfo
p -> Ptr DefragmentationInfo -> DefragmentationInfo -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationInfo
p DefragmentationInfo
x (Ptr DefragmentationInfo -> IO b
f Ptr DefragmentationInfo
p)
  pokeCStruct :: Ptr DefragmentationInfo -> DefragmentationInfo -> IO b -> IO b
pokeCStruct Ptr DefragmentationInfo
p DefragmentationInfo{"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
maxAllocationsToMove :: "memoryTypeIndex" ::: Word32
maxBytesToMove :: "lostAllocationCount" ::: Word64
$sel:maxAllocationsToMove:DefragmentationInfo :: DefragmentationInfo -> "memoryTypeIndex" ::: Word32
$sel:maxBytesToMove:DefragmentationInfo :: DefragmentationInfo -> "lostAllocationCount" ::: Word64
..} IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
maxBytesToMove)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
maxAllocationsToMove)
    IO b
f
  cStructSize :: Int
cStructSize = Int
16
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DefragmentationInfo -> IO b -> IO b
pokeZeroCStruct Ptr DefragmentationInfo
p IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct DefragmentationInfo where
  peekCStruct :: Ptr DefragmentationInfo -> IO DefragmentationInfo
peekCStruct Ptr DefragmentationInfo
p = do
    "lostAllocationCount" ::: Word64
maxBytesToMove <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize))
    "memoryTypeIndex" ::: Word32
maxAllocationsToMove <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationInfo
p Ptr DefragmentationInfo
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr Word32))
    DefragmentationInfo -> IO DefragmentationInfo
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationInfo -> IO DefragmentationInfo)
-> DefragmentationInfo -> IO DefragmentationInfo
forall a b. (a -> b) -> a -> b
$ ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32) -> DefragmentationInfo
DefragmentationInfo
             "lostAllocationCount" ::: Word64
maxBytesToMove "memoryTypeIndex" ::: Word32
maxAllocationsToMove

instance Storable DefragmentationInfo where
  sizeOf :: DefragmentationInfo -> Int
sizeOf ~DefragmentationInfo
_ = Int
16
  alignment :: DefragmentationInfo -> Int
alignment ~DefragmentationInfo
_ = Int
8
  peek :: Ptr DefragmentationInfo -> IO DefragmentationInfo
peek = Ptr DefragmentationInfo -> IO DefragmentationInfo
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr DefragmentationInfo -> DefragmentationInfo -> IO ()
poke Ptr DefragmentationInfo
ptr DefragmentationInfo
poked = Ptr DefragmentationInfo -> DefragmentationInfo -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationInfo
ptr DefragmentationInfo
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero DefragmentationInfo where
  zero :: DefragmentationInfo
zero = ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32) -> DefragmentationInfo
DefragmentationInfo
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero


-- | VmaDefragmentationStats
--
-- Statistics returned by function 'defragment'.
data DefragmentationStats = DefragmentationStats
  { -- | Total number of bytes that have been copied while moving allocations to
    -- different places.
    DefragmentationStats -> "lostAllocationCount" ::: Word64
bytesMoved :: DeviceSize
  , -- | Total number of bytes that have been released to the system by freeing
    -- empty @VkDeviceMemory@ objects.
    DefragmentationStats -> "lostAllocationCount" ::: Word64
bytesFreed :: DeviceSize
  , -- | Number of allocations that have been moved to different places.
    DefragmentationStats -> "memoryTypeIndex" ::: Word32
allocationsMoved :: Word32
  , -- | Number of empty @VkDeviceMemory@ objects that have been released to the
    -- system.
    DefragmentationStats -> "memoryTypeIndex" ::: Word32
deviceMemoryBlocksFreed :: Word32
  }
  deriving (Typeable, DefragmentationStats -> DefragmentationStats -> Bool
(DefragmentationStats -> DefragmentationStats -> Bool)
-> (DefragmentationStats -> DefragmentationStats -> Bool)
-> Eq DefragmentationStats
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DefragmentationStats -> DefragmentationStats -> Bool
$c/= :: DefragmentationStats -> DefragmentationStats -> Bool
== :: DefragmentationStats -> DefragmentationStats -> Bool
$c== :: DefragmentationStats -> DefragmentationStats -> Bool
Eq)
#if defined(GENERIC_INSTANCES)
deriving instance Generic (DefragmentationStats)
#endif
deriving instance Show DefragmentationStats

instance ToCStruct DefragmentationStats where
  withCStruct :: DefragmentationStats -> (Ptr DefragmentationStats -> IO b) -> IO b
withCStruct DefragmentationStats
x Ptr DefragmentationStats -> IO b
f = Int -> (Ptr DefragmentationStats -> IO b) -> IO b
forall a b. Int -> (Ptr a -> IO b) -> IO b
allocaBytes Int
24 ((Ptr DefragmentationStats -> IO b) -> IO b)
-> (Ptr DefragmentationStats -> IO b) -> IO b
forall a b. (a -> b) -> a -> b
$ \Ptr DefragmentationStats
p -> Ptr DefragmentationStats -> DefragmentationStats -> IO b -> IO b
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationStats
p DefragmentationStats
x (Ptr DefragmentationStats -> IO b
f Ptr DefragmentationStats
p)
  pokeCStruct :: Ptr DefragmentationStats -> DefragmentationStats -> IO b -> IO b
pokeCStruct Ptr DefragmentationStats
p DefragmentationStats{"memoryTypeIndex" ::: Word32
"lostAllocationCount" ::: Word64
deviceMemoryBlocksFreed :: "memoryTypeIndex" ::: Word32
allocationsMoved :: "memoryTypeIndex" ::: Word32
bytesFreed :: "lostAllocationCount" ::: Word64
bytesMoved :: "lostAllocationCount" ::: Word64
$sel:deviceMemoryBlocksFreed:DefragmentationStats :: DefragmentationStats -> "memoryTypeIndex" ::: Word32
$sel:allocationsMoved:DefragmentationStats :: DefragmentationStats -> "memoryTypeIndex" ::: Word32
$sel:bytesFreed:DefragmentationStats :: DefragmentationStats -> "lostAllocationCount" ::: Word64
$sel:bytesMoved:DefragmentationStats :: DefragmentationStats -> "lostAllocationCount" ::: Word64
..} IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
bytesMoved)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
bytesFreed)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
allocationsMoved)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
20 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
deviceMemoryBlocksFreed)
    IO b
f
  cStructSize :: Int
cStructSize = Int
24
  cStructAlignment :: Int
cStructAlignment = Int
8
  pokeZeroCStruct :: Ptr DefragmentationStats -> IO b -> IO b
pokeZeroCStruct Ptr DefragmentationStats
p IO b
f = do
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize)) ("lostAllocationCount" ::: Word64
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    Ptr ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32) -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
20 :: Ptr Word32)) ("memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero)
    IO b
f

instance FromCStruct DefragmentationStats where
  peekCStruct :: Ptr DefragmentationStats -> IO DefragmentationStats
peekCStruct Ptr DefragmentationStats
p = do
    "lostAllocationCount" ::: Word64
bytesMoved <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0 :: Ptr DeviceSize))
    "lostAllocationCount" ::: Word64
bytesFreed <- Ptr ("lostAllocationCount" ::: Word64)
-> IO ("lostAllocationCount" ::: Word64)
forall a. Storable a => Ptr a -> IO a
peek @DeviceSize ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("lostAllocationCount" ::: Word64)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8 :: Ptr DeviceSize))
    "memoryTypeIndex" ::: Word32
allocationsMoved <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
16 :: Ptr Word32))
    "memoryTypeIndex" ::: Word32
deviceMemoryBlocksFreed <- Ptr ("memoryTypeIndex" ::: Word32)
-> IO ("memoryTypeIndex" ::: Word32)
forall a. Storable a => Ptr a -> IO a
peek @Word32 ((Ptr DefragmentationStats
p Ptr DefragmentationStats
-> Int -> Ptr ("memoryTypeIndex" ::: Word32)
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
20 :: Ptr Word32))
    DefragmentationStats -> IO DefragmentationStats
forall (f :: * -> *) a. Applicative f => a -> f a
pure (DefragmentationStats -> IO DefragmentationStats)
-> DefragmentationStats -> IO DefragmentationStats
forall a b. (a -> b) -> a -> b
$ ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> DefragmentationStats
DefragmentationStats
             "lostAllocationCount" ::: Word64
bytesMoved "lostAllocationCount" ::: Word64
bytesFreed "memoryTypeIndex" ::: Word32
allocationsMoved "memoryTypeIndex" ::: Word32
deviceMemoryBlocksFreed

instance Storable DefragmentationStats where
  sizeOf :: DefragmentationStats -> Int
sizeOf ~DefragmentationStats
_ = Int
24
  alignment :: DefragmentationStats -> Int
alignment ~DefragmentationStats
_ = Int
8
  peek :: Ptr DefragmentationStats -> IO DefragmentationStats
peek = Ptr DefragmentationStats -> IO DefragmentationStats
forall a. FromCStruct a => Ptr a -> IO a
peekCStruct
  poke :: Ptr DefragmentationStats -> DefragmentationStats -> IO ()
poke Ptr DefragmentationStats
ptr DefragmentationStats
poked = Ptr DefragmentationStats -> DefragmentationStats -> IO () -> IO ()
forall a b. ToCStruct a => Ptr a -> a -> IO b -> IO b
pokeCStruct Ptr DefragmentationStats
ptr DefragmentationStats
poked (() -> IO ()
forall (f :: * -> *) a. Applicative f => a -> f a
pure ())

instance Zero DefragmentationStats where
  zero :: DefragmentationStats
zero = ("lostAllocationCount" ::: Word64)
-> ("lostAllocationCount" ::: Word64)
-> ("memoryTypeIndex" ::: Word32)
-> ("memoryTypeIndex" ::: Word32)
-> DefragmentationStats
DefragmentationStats
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "lostAllocationCount" ::: Word64
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero
           "memoryTypeIndex" ::: Word32
forall a. Zero a => a
zero