{-# language CPP #-} -- No documentation found for Chapter "Promoted_From_VK_KHR_8bit_storage" module Vulkan.Core12.Promoted_From_VK_KHR_8bit_storage ( PhysicalDevice8BitStorageFeatures(..) , StructureType(..) ) where import Foreign.Marshal.Alloc (allocaBytes) import Foreign.Ptr (nullPtr) import Foreign.Ptr (plusPtr) import Vulkan.CStruct (FromCStruct) import Vulkan.CStruct (FromCStruct(..)) import Vulkan.CStruct (ToCStruct) import Vulkan.CStruct (ToCStruct(..)) import Vulkan.Zero (Zero(..)) import Data.Typeable (Typeable) import Foreign.Storable (Storable) import Foreign.Storable (Storable(peek)) import Foreign.Storable (Storable(poke)) import qualified Foreign.Storable (Storable(..)) import GHC.Generics (Generic) import Foreign.Ptr (Ptr) import Data.Kind (Type) import Vulkan.Core10.FundamentalTypes (bool32ToBool) import Vulkan.Core10.FundamentalTypes (boolToBool32) import Vulkan.Core10.FundamentalTypes (Bool32) import Vulkan.Core10.Enums.StructureType (StructureType) import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES)) import Vulkan.Core10.Enums.StructureType (StructureType(..)) -- | VkPhysicalDevice8BitStorageFeatures - Structure describing features -- supported by VK_KHR_8bit_storage -- -- = Members -- -- This structure describes the following features: -- -- = Description -- -- If the 'PhysicalDevice8BitStorageFeatures' structure is included in the -- @pNext@ chain of the -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceFeatures2' -- structure passed to -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.getPhysicalDeviceFeatures2', -- it is filled in to indicate whether each corresponding feature is -- supported. 'PhysicalDevice8BitStorageFeatures' /can/ also be used in the -- @pNext@ chain of 'Vulkan.Core10.Device.DeviceCreateInfo' to selectively -- enable these features. -- -- == Valid Usage (Implicit) -- -- = See Also -- -- , -- , -- 'Vulkan.Core10.FundamentalTypes.Bool32', -- 'Vulkan.Core10.Enums.StructureType.StructureType' data PhysicalDevice8BitStorageFeatures = PhysicalDevice8BitStorageFeatures { -- | #extension-features-storageBuffer8BitAccess# @storageBuffer8BitAccess@ -- indicates whether objects in the @StorageBuffer@, -- @ShaderRecordBufferKHR@, or @PhysicalStorageBuffer@ storage class with -- the @Block@ decoration /can/ have 8-bit integer members. If this feature -- is not enabled, 8-bit integer members /must/ not be used in such -- objects. This also indicates whether shader modules /can/ declare the -- @StorageBuffer8BitAccess@ capability. storageBuffer8BitAccess :: Bool , -- | #extension-features-uniformAndStorageBuffer8BitAccess# -- @uniformAndStorageBuffer8BitAccess@ indicates whether objects in the -- @Uniform@ storage class with the @Block@ decoration /can/ have 8-bit -- integer members. If this feature is not enabled, 8-bit integer members -- /must/ not be used in such objects. This also indicates whether shader -- modules /can/ declare the @UniformAndStorageBuffer8BitAccess@ -- capability. uniformAndStorageBuffer8BitAccess :: Bool , -- | #extension-features-storagePushConstant8# @storagePushConstant8@ -- indicates whether objects in the @PushConstant@ storage class /can/ have -- 8-bit integer members. If this feature is not enabled, 8-bit integer -- members /must/ not be used in such objects. This also indicates whether -- shader modules /can/ declare the @StoragePushConstant8@ capability. storagePushConstant8 :: Bool } deriving (Typeable, Eq) #if defined(GENERIC_INSTANCES) deriving instance Generic (PhysicalDevice8BitStorageFeatures) #endif deriving instance Show PhysicalDevice8BitStorageFeatures instance ToCStruct PhysicalDevice8BitStorageFeatures where withCStruct x f = allocaBytes 32 $ \p -> pokeCStruct p x (f p) pokeCStruct p PhysicalDevice8BitStorageFeatures{..} f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr Bool32)) (boolToBool32 (storageBuffer8BitAccess)) poke ((p `plusPtr` 20 :: Ptr Bool32)) (boolToBool32 (uniformAndStorageBuffer8BitAccess)) poke ((p `plusPtr` 24 :: Ptr Bool32)) (boolToBool32 (storagePushConstant8)) f cStructSize = 32 cStructAlignment = 8 pokeZeroCStruct p f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr Bool32)) (boolToBool32 (zero)) poke ((p `plusPtr` 20 :: Ptr Bool32)) (boolToBool32 (zero)) poke ((p `plusPtr` 24 :: Ptr Bool32)) (boolToBool32 (zero)) f instance FromCStruct PhysicalDevice8BitStorageFeatures where peekCStruct p = do storageBuffer8BitAccess <- peek @Bool32 ((p `plusPtr` 16 :: Ptr Bool32)) uniformAndStorageBuffer8BitAccess <- peek @Bool32 ((p `plusPtr` 20 :: Ptr Bool32)) storagePushConstant8 <- peek @Bool32 ((p `plusPtr` 24 :: Ptr Bool32)) pure $ PhysicalDevice8BitStorageFeatures (bool32ToBool storageBuffer8BitAccess) (bool32ToBool uniformAndStorageBuffer8BitAccess) (bool32ToBool storagePushConstant8) instance Storable PhysicalDevice8BitStorageFeatures where sizeOf ~_ = 32 alignment ~_ = 8 peek = peekCStruct poke ptr poked = pokeCStruct ptr poked (pure ()) instance Zero PhysicalDevice8BitStorageFeatures where zero = PhysicalDevice8BitStorageFeatures zero zero zero