vulkan-3.6.1: Bindings to the Vulkan graphics API.
Safe HaskellNone
LanguageHaskell2010

Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Synopsis

Documentation

newtype CommandPoolCreateFlagBits Source #

VkCommandPoolCreateFlagBits - Bitmask specifying usage behavior for a command pool

See Also

CommandPoolCreateFlags

Bundled Patterns

pattern COMMAND_POOL_CREATE_TRANSIENT_BIT :: CommandPoolCreateFlagBits

COMMAND_POOL_CREATE_TRANSIENT_BIT specifies that command buffers allocated from the pool will be short-lived, meaning that they will be reset or freed in a relatively short timeframe. This flag may be used by the implementation to control memory allocation behavior within the pool.

pattern COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT :: CommandPoolCreateFlagBits

COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT allows any command buffer allocated from a pool to be individually reset to the initial state; either by calling resetCommandBuffer, or via the implicit reset when calling beginCommandBuffer. If this flag is not set on a pool, then resetCommandBuffer must not be called for any command buffer allocated from that pool.

pattern COMMAND_POOL_CREATE_PROTECTED_BIT :: CommandPoolCreateFlagBits

COMMAND_POOL_CREATE_PROTECTED_BIT specifies that command buffers allocated from the pool are protected command buffers.

Instances

Instances details
Eq CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Ord CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Read CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Show CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Storable CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Bits CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits

Methods

(.&.) :: CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits #

(.|.) :: CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits #

xor :: CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits #

complement :: CommandPoolCreateFlagBits -> CommandPoolCreateFlagBits #

shift :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

rotate :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

zeroBits :: CommandPoolCreateFlagBits #

bit :: Int -> CommandPoolCreateFlagBits #

setBit :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

clearBit :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

complementBit :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

testBit :: CommandPoolCreateFlagBits -> Int -> Bool #

bitSizeMaybe :: CommandPoolCreateFlagBits -> Maybe Int #

bitSize :: CommandPoolCreateFlagBits -> Int #

isSigned :: CommandPoolCreateFlagBits -> Bool #

shiftL :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

unsafeShiftL :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

shiftR :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

unsafeShiftR :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

rotateL :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

rotateR :: CommandPoolCreateFlagBits -> Int -> CommandPoolCreateFlagBits #

popCount :: CommandPoolCreateFlagBits -> Int #

Zero CommandPoolCreateFlagBits Source # 
Instance details

Defined in Vulkan.Core10.Enums.CommandPoolCreateFlagBits