{-# language CPP #-} -- No documentation found for Chapter "DescriptorPoolCreateFlagBits" module Vulkan.Core10.Enums.DescriptorPoolCreateFlagBits ( DescriptorPoolCreateFlags , DescriptorPoolCreateFlagBits( DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT , DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV , DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV , DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT , DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT , .. ) ) where import Data.Bits (Bits) import Data.Bits (FiniteBits) import Vulkan.Internal.Utils (enumReadPrec) import Vulkan.Internal.Utils (enumShowsPrec) import GHC.Show (showString) import Numeric (showHex) import Vulkan.Zero (Zero) import Foreign.Storable (Storable) import GHC.Read (Read(readPrec)) import GHC.Show (Show(showsPrec)) import Vulkan.Core10.FundamentalTypes (Flags) type DescriptorPoolCreateFlags = DescriptorPoolCreateFlagBits -- | VkDescriptorPoolCreateFlagBits - Bitmask specifying certain supported -- operations on a descriptor pool -- -- = See Also -- -- , -- 'DescriptorPoolCreateFlags' newtype DescriptorPoolCreateFlagBits = DescriptorPoolCreateFlagBits Flags deriving newtype (Eq, Ord, Storable, Zero, Bits, FiniteBits) -- | 'DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT' specifies that -- descriptor sets /can/ return their individual allocations to the pool, -- i.e. all of 'Vulkan.Core10.DescriptorSet.allocateDescriptorSets', -- 'Vulkan.Core10.DescriptorSet.freeDescriptorSets', and -- 'Vulkan.Core10.DescriptorSet.resetDescriptorPool' are allowed. -- Otherwise, descriptor sets allocated from the pool /must/ not be -- individually freed back to the pool, i.e. only -- 'Vulkan.Core10.DescriptorSet.allocateDescriptorSets' and -- 'Vulkan.Core10.DescriptorSet.resetDescriptorPool' are allowed. pattern DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT = DescriptorPoolCreateFlagBits 0x00000001 -- | 'DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV' specifies -- that the implementation should allow the application to allocate more -- descriptors from the pool than was specified by the -- 'Vulkan.Core10.DescriptorSet.DescriptorPoolSize'::@descriptorCount@ for -- any descriptor type as specified by -- 'Vulkan.Core10.DescriptorSet.DescriptorPoolCreateInfo'::@poolSizeCount@ -- and -- 'Vulkan.Core10.DescriptorSet.DescriptorPoolCreateInfo'::@pPoolSizes@, as -- available resources allow. The implementation /may/ use the -- @descriptorCount@ for each descriptor type to allocate the initial pool, -- but the application is allowed to set the @poolSizeCount@ to zero, or -- any of the @descriptorCount@ values in the @pPoolSizes@ array to zero. pattern DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV = DescriptorPoolCreateFlagBits 0x00000010 -- | 'DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV' specifies that -- the implementation should allow the application to allocate more than -- 'Vulkan.Core10.DescriptorSet.DescriptorPoolCreateInfo'::@maxSets@ -- descriptor set objects from the descriptor pool as available resources -- allow. The implementation /may/ use the @maxSets@ value to allocate the -- initial available sets, but using zero is permitted. pattern DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV = DescriptorPoolCreateFlagBits 0x00000008 -- | 'DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT' specifies that this -- descriptor pool and the descriptor sets allocated from it reside -- entirely in host memory and cannot be bound. Similar to descriptor sets -- allocated without this flag, applications /can/ copy-from and copy-to -- descriptors sets allocated from this descriptor pool. Descriptor sets -- allocated from this pool are partially exempt from the external -- synchronization requirement in -- 'Vulkan.Extensions.VK_KHR_descriptor_update_template.updateDescriptorSetWithTemplateKHR' -- and 'Vulkan.Core10.DescriptorSet.updateDescriptorSets'. Descriptor sets -- and their descriptors can be updated concurrently in different threads, -- though the same descriptor /must/ not be updated concurrently by two -- threads. pattern DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT = DescriptorPoolCreateFlagBits 0x00000004 -- | 'DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT' specifies that descriptor -- sets allocated from this pool /can/ include bindings with the -- 'Vulkan.Core12.Enums.DescriptorBindingFlagBits.DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT' -- bit set. It is valid to allocate descriptor sets that have bindings that -- do not set the -- 'Vulkan.Core12.Enums.DescriptorBindingFlagBits.DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT' -- bit from a pool that has 'DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT' -- set. pattern DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT = DescriptorPoolCreateFlagBits 0x00000002 conNameDescriptorPoolCreateFlagBits :: String conNameDescriptorPoolCreateFlagBits = "DescriptorPoolCreateFlagBits" enumPrefixDescriptorPoolCreateFlagBits :: String enumPrefixDescriptorPoolCreateFlagBits = "DESCRIPTOR_POOL_CREATE_" showTableDescriptorPoolCreateFlagBits :: [(DescriptorPoolCreateFlagBits, String)] showTableDescriptorPoolCreateFlagBits = [ ( DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT , "FREE_DESCRIPTOR_SET_BIT" ) , ( DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_POOLS_BIT_NV , "ALLOW_OVERALLOCATION_POOLS_BIT_NV" ) , ( DESCRIPTOR_POOL_CREATE_ALLOW_OVERALLOCATION_SETS_BIT_NV , "ALLOW_OVERALLOCATION_SETS_BIT_NV" ) , ( DESCRIPTOR_POOL_CREATE_HOST_ONLY_BIT_EXT , "HOST_ONLY_BIT_EXT" ) , ( DESCRIPTOR_POOL_CREATE_UPDATE_AFTER_BIND_BIT , "UPDATE_AFTER_BIND_BIT" ) ] instance Show DescriptorPoolCreateFlagBits where showsPrec = enumShowsPrec enumPrefixDescriptorPoolCreateFlagBits showTableDescriptorPoolCreateFlagBits conNameDescriptorPoolCreateFlagBits (\(DescriptorPoolCreateFlagBits x) -> x) (\x -> showString "0x" . showHex x) instance Read DescriptorPoolCreateFlagBits where readPrec = enumReadPrec enumPrefixDescriptorPoolCreateFlagBits showTableDescriptorPoolCreateFlagBits conNameDescriptorPoolCreateFlagBits DescriptorPoolCreateFlagBits