{-# language CPP #-} module Vulkan.Extensions.VK_EXT_debug_report ( createDebugReportCallbackEXT , withDebugReportCallbackEXT , destroyDebugReportCallbackEXT , debugReportMessageEXT , pattern STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT , DebugReportCallbackCreateInfoEXT(..) , DebugReportFlagBitsEXT( DEBUG_REPORT_INFORMATION_BIT_EXT , DEBUG_REPORT_WARNING_BIT_EXT , DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT , DEBUG_REPORT_ERROR_BIT_EXT , DEBUG_REPORT_DEBUG_BIT_EXT , .. ) , DebugReportFlagsEXT , DebugReportObjectTypeEXT( DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT , DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT , DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT , DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT , DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT , DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT , DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT , DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT , DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT , DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT , DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT , DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT , DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT , DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT , DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT , DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT , DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT , DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT , DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT , DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT , DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT , DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT , DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT , DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT , DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT , DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT , DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT , DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT , DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT , DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT , DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT , DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT , DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT , DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT , DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT , .. ) , PFN_vkDebugReportCallbackEXT , FN_vkDebugReportCallbackEXT , EXT_DEBUG_REPORT_SPEC_VERSION , pattern EXT_DEBUG_REPORT_SPEC_VERSION , EXT_DEBUG_REPORT_EXTENSION_NAME , pattern EXT_DEBUG_REPORT_EXTENSION_NAME , DebugReportCallbackEXT(..) ) where import Control.Exception.Base (bracket) import Control.Monad (unless) import Control.Monad.IO.Class (liftIO) import Foreign.Marshal.Alloc (allocaBytesAligned) import Foreign.Marshal.Alloc (callocBytes) import Foreign.Marshal.Alloc (free) import GHC.Base (when) import GHC.IO (throwIO) import GHC.Ptr (nullFunPtr) import Foreign.Ptr (nullPtr) import Foreign.Ptr (plusPtr) import GHC.Read (choose) import GHC.Read (expectP) import GHC.Read (parens) import GHC.Show (showParen) import GHC.Show (showString) import GHC.Show (showsPrec) import Numeric (showHex) import Text.ParserCombinators.ReadPrec ((+++)) import Text.ParserCombinators.ReadPrec (prec) import Text.ParserCombinators.ReadPrec (step) import Data.ByteString (useAsCString) import Control.Monad.Trans.Class (lift) import Control.Monad.Trans.Cont (evalContT) import Foreign.C.Types (CChar(..)) import Foreign.C.Types (CSize(..)) import Control.Monad.IO.Class (MonadIO) import Data.Bits (Bits) import Data.String (IsString) import Data.Typeable (Typeable) import Foreign.C.Types (CChar) 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 Data.Word (Word64) import Text.Read.Lex (Lexeme(Ident)) import Data.ByteString (ByteString) import Data.Kind (Type) import Control.Monad.Trans.Cont (ContT(..)) import Vulkan.NamedType ((:::)) import Vulkan.Core10.AllocationCallbacks (AllocationCallbacks) import Vulkan.Core10.FundamentalTypes (Bool32) import Vulkan.Extensions.Handles (DebugReportCallbackEXT) import Vulkan.Extensions.Handles (DebugReportCallbackEXT(..)) import Vulkan.Core10.FundamentalTypes (Flags) import Vulkan.CStruct (FromCStruct) import Vulkan.CStruct (FromCStruct(..)) import Vulkan.Core10.Handles (Instance) import Vulkan.Core10.Handles (Instance(..)) import Vulkan.Dynamic (InstanceCmds(pVkCreateDebugReportCallbackEXT)) import Vulkan.Dynamic (InstanceCmds(pVkDebugReportMessageEXT)) import Vulkan.Dynamic (InstanceCmds(pVkDestroyDebugReportCallbackEXT)) import Vulkan.Core10.Handles (Instance_T) import Vulkan.Core10.Enums.Result (Result) import Vulkan.Core10.Enums.Result (Result(..)) import Vulkan.Core10.Enums.StructureType (StructureType) import Vulkan.CStruct (ToCStruct) import Vulkan.CStruct (ToCStruct(..)) import Vulkan.Exception (VulkanException(..)) import Vulkan.Zero (Zero) import Vulkan.Zero (Zero(..)) import Vulkan.Core10.Enums.StructureType (StructureType(STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT)) import Vulkan.Core10.Enums.Result (Result(SUCCESS)) import Vulkan.Extensions.Handles (DebugReportCallbackEXT(..)) foreign import ccall #if !defined(SAFE_FOREIGN_CALLS) unsafe #endif "dynamic" mkVkCreateDebugReportCallbackEXT :: FunPtr (Ptr Instance_T -> Ptr DebugReportCallbackCreateInfoEXT -> Ptr AllocationCallbacks -> Ptr DebugReportCallbackEXT -> IO Result) -> Ptr Instance_T -> Ptr DebugReportCallbackCreateInfoEXT -> Ptr AllocationCallbacks -> Ptr DebugReportCallbackEXT -> IO Result -- | vkCreateDebugReportCallbackEXT - Create a debug report callback object -- -- == Valid Usage (Implicit) -- -- - @instance@ /must/ be a valid 'Vulkan.Core10.Handles.Instance' handle -- -- - @pCreateInfo@ /must/ be a valid pointer to a valid -- 'DebugReportCallbackCreateInfoEXT' structure -- -- - If @pAllocator@ is not @NULL@, @pAllocator@ /must/ be a valid -- pointer to a valid -- 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks' structure -- -- - @pCallback@ /must/ be a valid pointer to a -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' handle -- -- == Return Codes -- -- [] -- -- - 'Vulkan.Core10.Enums.Result.SUCCESS' -- -- [] -- -- - 'Vulkan.Core10.Enums.Result.ERROR_OUT_OF_HOST_MEMORY' -- -- = See Also -- -- 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks', -- 'DebugReportCallbackCreateInfoEXT', -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT', -- 'Vulkan.Core10.Handles.Instance' createDebugReportCallbackEXT :: forall io . (MonadIO io) => -- | @instance@ is the instance the callback will be logged on. Instance -> -- | @pCreateInfo@ is a pointer to a 'DebugReportCallbackCreateInfoEXT' -- structure defining the conditions under which this callback will be -- called. DebugReportCallbackCreateInfoEXT -> -- | @pAllocator@ controls host memory allocation as described in the -- -- chapter. ("allocator" ::: Maybe AllocationCallbacks) -> io (DebugReportCallbackEXT) createDebugReportCallbackEXT instance' createInfo allocator = liftIO . evalContT $ do let vkCreateDebugReportCallbackEXTPtr = pVkCreateDebugReportCallbackEXT (instanceCmds (instance' :: Instance)) lift $ unless (vkCreateDebugReportCallbackEXTPtr /= nullFunPtr) $ throwIO $ IOError Nothing InvalidArgument "" "The function pointer for vkCreateDebugReportCallbackEXT is null" Nothing Nothing let vkCreateDebugReportCallbackEXT' = mkVkCreateDebugReportCallbackEXT vkCreateDebugReportCallbackEXTPtr pCreateInfo <- ContT $ withCStruct (createInfo) pAllocator <- case (allocator) of Nothing -> pure nullPtr Just j -> ContT $ withCStruct (j) pPCallback <- ContT $ bracket (callocBytes @DebugReportCallbackEXT 8) free r <- lift $ vkCreateDebugReportCallbackEXT' (instanceHandle (instance')) pCreateInfo pAllocator (pPCallback) lift $ when (r < SUCCESS) (throwIO (VulkanException r)) pCallback <- lift $ peek @DebugReportCallbackEXT pPCallback pure $ (pCallback) -- | A convenience wrapper to make a compatible pair of calls to -- 'createDebugReportCallbackEXT' and 'destroyDebugReportCallbackEXT' -- -- To ensure that 'destroyDebugReportCallbackEXT' is always called: pass -- 'Control.Exception.bracket' (or the allocate function from your -- favourite resource management library) as the first argument. -- To just extract the pair pass '(,)' as the first argument. -- withDebugReportCallbackEXT :: forall io r . MonadIO io => Instance -> DebugReportCallbackCreateInfoEXT -> Maybe AllocationCallbacks -> (io (DebugReportCallbackEXT) -> ((DebugReportCallbackEXT) -> io ()) -> r) -> r withDebugReportCallbackEXT instance' pCreateInfo pAllocator b = b (createDebugReportCallbackEXT instance' pCreateInfo pAllocator) (\(o0) -> destroyDebugReportCallbackEXT instance' o0 pAllocator) foreign import ccall #if !defined(SAFE_FOREIGN_CALLS) unsafe #endif "dynamic" mkVkDestroyDebugReportCallbackEXT :: FunPtr (Ptr Instance_T -> DebugReportCallbackEXT -> Ptr AllocationCallbacks -> IO ()) -> Ptr Instance_T -> DebugReportCallbackEXT -> Ptr AllocationCallbacks -> IO () -- | vkDestroyDebugReportCallbackEXT - Destroy a debug report callback object -- -- == Valid Usage -- -- - If 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks' were -- provided when @callback@ was created, a compatible set of callbacks -- /must/ be provided here -- -- - If no 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks' were -- provided when @callback@ was created, @pAllocator@ /must/ be @NULL@ -- -- == Valid Usage (Implicit) -- -- - @instance@ /must/ be a valid 'Vulkan.Core10.Handles.Instance' handle -- -- - If @callback@ is not 'Vulkan.Core10.APIConstants.NULL_HANDLE', -- @callback@ /must/ be a valid -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' handle -- -- - If @pAllocator@ is not @NULL@, @pAllocator@ /must/ be a valid -- pointer to a valid -- 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks' structure -- -- - If @callback@ is a valid handle, it /must/ have been created, -- allocated, or retrieved from @instance@ -- -- == Host Synchronization -- -- - Host access to @callback@ /must/ be externally synchronized -- -- = See Also -- -- 'Vulkan.Core10.AllocationCallbacks.AllocationCallbacks', -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT', -- 'Vulkan.Core10.Handles.Instance' destroyDebugReportCallbackEXT :: forall io . (MonadIO io) => -- | @instance@ is the instance where the callback was created. Instance -> -- | @callback@ is the 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' -- object to destroy. @callback@ is an externally synchronized object and -- /must/ not be used on more than one thread at a time. This means that -- 'destroyDebugReportCallbackEXT' /must/ not be called when a callback is -- active. DebugReportCallbackEXT -> -- | @pAllocator@ controls host memory allocation as described in the -- -- chapter. ("allocator" ::: Maybe AllocationCallbacks) -> io () destroyDebugReportCallbackEXT instance' callback allocator = liftIO . evalContT $ do let vkDestroyDebugReportCallbackEXTPtr = pVkDestroyDebugReportCallbackEXT (instanceCmds (instance' :: Instance)) lift $ unless (vkDestroyDebugReportCallbackEXTPtr /= nullFunPtr) $ throwIO $ IOError Nothing InvalidArgument "" "The function pointer for vkDestroyDebugReportCallbackEXT is null" Nothing Nothing let vkDestroyDebugReportCallbackEXT' = mkVkDestroyDebugReportCallbackEXT vkDestroyDebugReportCallbackEXTPtr pAllocator <- case (allocator) of Nothing -> pure nullPtr Just j -> ContT $ withCStruct (j) lift $ vkDestroyDebugReportCallbackEXT' (instanceHandle (instance')) (callback) pAllocator pure $ () foreign import ccall #if !defined(SAFE_FOREIGN_CALLS) unsafe #endif "dynamic" mkVkDebugReportMessageEXT :: FunPtr (Ptr Instance_T -> DebugReportFlagsEXT -> DebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> Ptr CChar -> Ptr CChar -> IO ()) -> Ptr Instance_T -> DebugReportFlagsEXT -> DebugReportObjectTypeEXT -> Word64 -> CSize -> Int32 -> Ptr CChar -> Ptr CChar -> IO () -- | vkDebugReportMessageEXT - Inject a message into a debug stream -- -- = Description -- -- The call will propagate through the layers and generate callback(s) as -- indicated by the message’s flags. The parameters are passed on to the -- callback in addition to the @pUserData@ value that was defined at the -- time the callback was registered. -- -- == Valid Usage -- -- - @object@ /must/ be a Vulkan object or -- 'Vulkan.Core10.APIConstants.NULL_HANDLE' -- -- - If @objectType@ is not 'DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT' and -- @object@ is not 'Vulkan.Core10.APIConstants.NULL_HANDLE', @object@ -- /must/ be a Vulkan object of the corresponding type associated with -- @objectType@ as defined in -- -- -- == Valid Usage (Implicit) -- -- - @instance@ /must/ be a valid 'Vulkan.Core10.Handles.Instance' handle -- -- - @flags@ /must/ be a valid combination of 'DebugReportFlagBitsEXT' -- values -- -- - @flags@ /must/ not be @0@ -- -- - @objectType@ /must/ be a valid 'DebugReportObjectTypeEXT' value -- -- - @pLayerPrefix@ /must/ be a null-terminated UTF-8 string -- -- - @pMessage@ /must/ be a null-terminated UTF-8 string -- -- = See Also -- -- 'DebugReportFlagsEXT', 'DebugReportObjectTypeEXT', -- 'Vulkan.Core10.Handles.Instance' debugReportMessageEXT :: forall io . (MonadIO io) => -- | @instance@ is the debug stream’s 'Vulkan.Core10.Handles.Instance'. Instance -> -- | @flags@ specifies the 'DebugReportFlagBitsEXT' classification of this -- event\/message. DebugReportFlagsEXT -> -- | @objectType@ is a 'DebugReportObjectTypeEXT' specifying the type of -- object being used or created at the time the event was triggered. DebugReportObjectTypeEXT -> -- | @object@ is the object where the issue was detected. @object@ /can/ be -- 'Vulkan.Core10.APIConstants.NULL_HANDLE' if there is no object -- associated with the event. ("object" ::: Word64) -> -- | @location@ is an application defined value. ("location" ::: Word64) -> -- | @messageCode@ is an application defined value. ("messageCode" ::: Int32) -> -- | @pLayerPrefix@ is the abbreviation of the component making this -- event\/message. ("layerPrefix" ::: ByteString) -> -- | @pMessage@ is a null-terminated string detailing the trigger conditions. ("message" ::: ByteString) -> io () debugReportMessageEXT instance' flags objectType object location messageCode layerPrefix message = liftIO . evalContT $ do let vkDebugReportMessageEXTPtr = pVkDebugReportMessageEXT (instanceCmds (instance' :: Instance)) lift $ unless (vkDebugReportMessageEXTPtr /= nullFunPtr) $ throwIO $ IOError Nothing InvalidArgument "" "The function pointer for vkDebugReportMessageEXT is null" Nothing Nothing let vkDebugReportMessageEXT' = mkVkDebugReportMessageEXT vkDebugReportMessageEXTPtr pLayerPrefix <- ContT $ useAsCString (layerPrefix) pMessage <- ContT $ useAsCString (message) lift $ vkDebugReportMessageEXT' (instanceHandle (instance')) (flags) (objectType) (object) (CSize (location)) (messageCode) pLayerPrefix pMessage pure $ () -- No documentation found for TopLevel "VK_STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT" pattern STRUCTURE_TYPE_DEBUG_REPORT_CREATE_INFO_EXT = STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT -- | VkDebugReportCallbackCreateInfoEXT - Structure specifying parameters of -- a newly created debug report callback -- -- = Description -- -- For each 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' that is -- created the 'DebugReportCallbackCreateInfoEXT'::@flags@ determine when -- that 'DebugReportCallbackCreateInfoEXT'::@pfnCallback@ is called. When -- an event happens, the implementation will do a bitwise AND of the -- event’s 'DebugReportFlagBitsEXT' flags to each -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' object’s flags. For -- each non-zero result the corresponding callback will be called. The -- callback will come directly from the component that detected the event, -- unless some other layer intercepts the calls for its own purposes -- (filter them in a different way, log to a system error log, etc.). -- -- An application /may/ receive multiple callbacks if multiple -- 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' objects were created. -- A callback will always be executed in the same thread as the originating -- Vulkan call. -- -- A callback may be called from multiple threads simultaneously (if the -- application is making Vulkan calls from multiple threads). -- -- == Valid Usage (Implicit) -- -- = See Also -- -- 'PFN_vkDebugReportCallbackEXT', 'DebugReportFlagsEXT', -- 'Vulkan.Core10.Enums.StructureType.StructureType', -- 'createDebugReportCallbackEXT' data DebugReportCallbackCreateInfoEXT = DebugReportCallbackCreateInfoEXT { -- | @flags@ is a bitmask of 'DebugReportFlagBitsEXT' specifying which -- event(s) will cause this callback to be called. -- -- @flags@ /must/ be a valid combination of 'DebugReportFlagBitsEXT' values flags :: DebugReportFlagsEXT , -- | @pfnCallback@ is the application callback function to call. -- -- @pfnCallback@ /must/ be a valid 'PFN_vkDebugReportCallbackEXT' value pfnCallback :: PFN_vkDebugReportCallbackEXT , -- | @pUserData@ is user data to be passed to the callback. userData :: Ptr () } deriving (Typeable) #if defined(GENERIC_INSTANCES) deriving instance Generic (DebugReportCallbackCreateInfoEXT) #endif deriving instance Show DebugReportCallbackCreateInfoEXT instance ToCStruct DebugReportCallbackCreateInfoEXT where withCStruct x f = allocaBytesAligned 40 8 $ \p -> pokeCStruct p x (f p) pokeCStruct p DebugReportCallbackCreateInfoEXT{..} f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 16 :: Ptr DebugReportFlagsEXT)) (flags) poke ((p `plusPtr` 24 :: Ptr PFN_vkDebugReportCallbackEXT)) (pfnCallback) poke ((p `plusPtr` 32 :: Ptr (Ptr ()))) (userData) f cStructSize = 40 cStructAlignment = 8 pokeZeroCStruct p f = do poke ((p `plusPtr` 0 :: Ptr StructureType)) (STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT) poke ((p `plusPtr` 8 :: Ptr (Ptr ()))) (nullPtr) poke ((p `plusPtr` 24 :: Ptr PFN_vkDebugReportCallbackEXT)) (zero) f instance FromCStruct DebugReportCallbackCreateInfoEXT where peekCStruct p = do flags <- peek @DebugReportFlagsEXT ((p `plusPtr` 16 :: Ptr DebugReportFlagsEXT)) pfnCallback <- peek @PFN_vkDebugReportCallbackEXT ((p `plusPtr` 24 :: Ptr PFN_vkDebugReportCallbackEXT)) pUserData <- peek @(Ptr ()) ((p `plusPtr` 32 :: Ptr (Ptr ()))) pure $ DebugReportCallbackCreateInfoEXT flags pfnCallback pUserData instance Storable DebugReportCallbackCreateInfoEXT where sizeOf ~_ = 40 alignment ~_ = 8 peek = peekCStruct poke ptr poked = pokeCStruct ptr poked (pure ()) instance Zero DebugReportCallbackCreateInfoEXT where zero = DebugReportCallbackCreateInfoEXT zero zero zero -- | VkDebugReportFlagBitsEXT - Bitmask specifying events which cause a debug -- report callback -- -- = See Also -- -- 'DebugReportFlagsEXT' newtype DebugReportFlagBitsEXT = DebugReportFlagBitsEXT Flags deriving newtype (Eq, Ord, Storable, Zero, Bits) -- | 'DEBUG_REPORT_INFORMATION_BIT_EXT' specifies an informational message -- such as resource details that may be handy when debugging an -- application. pattern DEBUG_REPORT_INFORMATION_BIT_EXT = DebugReportFlagBitsEXT 0x00000001 -- | 'DEBUG_REPORT_WARNING_BIT_EXT' specifies use of Vulkan that /may/ expose -- an app bug. Such cases may not be immediately harmful, such as a -- fragment shader outputting to a location with no attachment. Other cases -- /may/ point to behavior that is almost certainly bad when unintended -- such as using an image whose memory has not been filled. In general if -- you see a warning but you know that the behavior is intended\/desired, -- then simply ignore the warning. pattern DEBUG_REPORT_WARNING_BIT_EXT = DebugReportFlagBitsEXT 0x00000002 -- | 'DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT' specifies a potentially -- non-optimal use of Vulkan, e.g. using -- 'Vulkan.Core10.CommandBufferBuilding.cmdClearColorImage' when setting -- 'Vulkan.Core10.Pass.AttachmentDescription'::@loadOp@ to -- 'Vulkan.Core10.Enums.AttachmentLoadOp.ATTACHMENT_LOAD_OP_CLEAR' would -- have worked. pattern DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT = DebugReportFlagBitsEXT 0x00000004 -- | 'DEBUG_REPORT_ERROR_BIT_EXT' specifies that the application has violated -- a valid usage condition of the specification. pattern DEBUG_REPORT_ERROR_BIT_EXT = DebugReportFlagBitsEXT 0x00000008 -- | 'DEBUG_REPORT_DEBUG_BIT_EXT' specifies diagnostic information from the -- implementation and layers. pattern DEBUG_REPORT_DEBUG_BIT_EXT = DebugReportFlagBitsEXT 0x00000010 type DebugReportFlagsEXT = DebugReportFlagBitsEXT instance Show DebugReportFlagBitsEXT where showsPrec p = \case DEBUG_REPORT_INFORMATION_BIT_EXT -> showString "DEBUG_REPORT_INFORMATION_BIT_EXT" DEBUG_REPORT_WARNING_BIT_EXT -> showString "DEBUG_REPORT_WARNING_BIT_EXT" DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT -> showString "DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT" DEBUG_REPORT_ERROR_BIT_EXT -> showString "DEBUG_REPORT_ERROR_BIT_EXT" DEBUG_REPORT_DEBUG_BIT_EXT -> showString "DEBUG_REPORT_DEBUG_BIT_EXT" DebugReportFlagBitsEXT x -> showParen (p >= 11) (showString "DebugReportFlagBitsEXT 0x" . showHex x) instance Read DebugReportFlagBitsEXT where readPrec = parens (choose [("DEBUG_REPORT_INFORMATION_BIT_EXT", pure DEBUG_REPORT_INFORMATION_BIT_EXT) , ("DEBUG_REPORT_WARNING_BIT_EXT", pure DEBUG_REPORT_WARNING_BIT_EXT) , ("DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT", pure DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT) , ("DEBUG_REPORT_ERROR_BIT_EXT", pure DEBUG_REPORT_ERROR_BIT_EXT) , ("DEBUG_REPORT_DEBUG_BIT_EXT", pure DEBUG_REPORT_DEBUG_BIT_EXT)] +++ prec 10 (do expectP (Ident "DebugReportFlagBitsEXT") v <- step readPrec pure (DebugReportFlagBitsEXT v))) -- | VkDebugReportObjectTypeEXT - Specify the type of an object handle -- -- = Description -- -- \' -- -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DebugReportObjectTypeEXT' | Vulkan Handle Type | -- +===========================================================+====================================================+ -- | 'DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT' | Unknown\/Undefined Handle | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT' | 'Vulkan.Core10.Handles.Instance' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT' | 'Vulkan.Core10.Handles.PhysicalDevice' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT' | 'Vulkan.Core10.Handles.Device' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT' | 'Vulkan.Core10.Handles.Queue' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT' | 'Vulkan.Core10.Handles.Semaphore' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT' | 'Vulkan.Core10.Handles.CommandBuffer' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT' | 'Vulkan.Core10.Handles.Fence' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT' | 'Vulkan.Core10.Handles.DeviceMemory' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT' | 'Vulkan.Core10.Handles.Buffer' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT' | 'Vulkan.Core10.Handles.Image' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT' | 'Vulkan.Core10.Handles.Event' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT' | 'Vulkan.Core10.Handles.QueryPool' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT' | 'Vulkan.Core10.Handles.BufferView' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT' | 'Vulkan.Core10.Handles.ImageView' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT' | 'Vulkan.Core10.Handles.ShaderModule' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT' | 'Vulkan.Core10.Handles.PipelineCache' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT' | 'Vulkan.Core10.Handles.PipelineLayout' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT' | 'Vulkan.Core10.Handles.RenderPass' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT' | 'Vulkan.Core10.Handles.Pipeline' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT' | 'Vulkan.Core10.Handles.DescriptorSetLayout' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT' | 'Vulkan.Core10.Handles.Sampler' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT' | 'Vulkan.Core10.Handles.DescriptorPool' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT' | 'Vulkan.Core10.Handles.DescriptorSet' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT' | 'Vulkan.Core10.Handles.Framebuffer' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT' | 'Vulkan.Core10.Handles.CommandPool' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT' | 'Vulkan.Extensions.Handles.SurfaceKHR' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT' | 'Vulkan.Extensions.Handles.SwapchainKHR' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT' | 'Vulkan.Extensions.Handles.DebugReportCallbackEXT' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT' | 'Vulkan.Extensions.Handles.DisplayKHR' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT' | 'Vulkan.Extensions.Handles.DisplayModeKHR' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- | 'DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT' | 'Vulkan.Core11.Handles.DescriptorUpdateTemplate' | -- +-----------------------------------------------------------+----------------------------------------------------+ -- -- 'DebugReportObjectTypeEXT' and Vulkan Handle Relationship -- -- Note -- -- The primary expected use of -- 'Vulkan.Core10.Enums.Result.ERROR_VALIDATION_FAILED_EXT' is for -- validation layer testing. It is not expected that an application would -- see this error code during normal use of the validation layers. -- -- = See Also -- -- 'Vulkan.Extensions.VK_EXT_debug_marker.DebugMarkerObjectNameInfoEXT', -- 'Vulkan.Extensions.VK_EXT_debug_marker.DebugMarkerObjectTagInfoEXT', -- 'debugReportMessageEXT' newtype DebugReportObjectTypeEXT = DebugReportObjectTypeEXT Int32 deriving newtype (Eq, Ord, Storable, Zero) -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT = DebugReportObjectTypeEXT 0 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT = DebugReportObjectTypeEXT 1 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT = DebugReportObjectTypeEXT 2 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT = DebugReportObjectTypeEXT 3 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT = DebugReportObjectTypeEXT 4 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT = DebugReportObjectTypeEXT 5 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT = DebugReportObjectTypeEXT 6 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT = DebugReportObjectTypeEXT 7 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT = DebugReportObjectTypeEXT 8 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT = DebugReportObjectTypeEXT 9 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT = DebugReportObjectTypeEXT 10 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT = DebugReportObjectTypeEXT 11 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT = DebugReportObjectTypeEXT 12 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT = DebugReportObjectTypeEXT 13 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT = DebugReportObjectTypeEXT 14 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT = DebugReportObjectTypeEXT 15 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT = DebugReportObjectTypeEXT 16 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT = DebugReportObjectTypeEXT 17 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT = DebugReportObjectTypeEXT 18 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT = DebugReportObjectTypeEXT 19 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT = DebugReportObjectTypeEXT 20 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT = DebugReportObjectTypeEXT 21 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT = DebugReportObjectTypeEXT 22 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT = DebugReportObjectTypeEXT 23 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT = DebugReportObjectTypeEXT 24 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT = DebugReportObjectTypeEXT 25 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT = DebugReportObjectTypeEXT 26 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT = DebugReportObjectTypeEXT 27 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT = DebugReportObjectTypeEXT 28 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT = DebugReportObjectTypeEXT 29 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT = DebugReportObjectTypeEXT 30 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT = DebugReportObjectTypeEXT 33 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT = DebugReportObjectTypeEXT 1000156000 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT = DebugReportObjectTypeEXT 1000165000 -- No documentation found for Nested "VkDebugReportObjectTypeEXT" "VK_DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT" pattern DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT = DebugReportObjectTypeEXT 1000085000 {-# complete DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT, DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT, DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT, DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT, DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT, DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT, DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT, DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT, DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT, DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT, DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT, DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT, DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT, DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT, DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT, DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT, DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT, DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT, DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT, DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT, DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT, DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT, DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT, DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT, DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT, DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT, DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT, DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT, DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT, DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT, DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT, DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT, DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT :: DebugReportObjectTypeEXT #-} instance Show DebugReportObjectTypeEXT where showsPrec p = \case DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT" DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT" DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT" DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT" DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT" DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT" DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT" DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT" DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT" DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT" DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT" DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT" DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT" DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT" DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT" DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT" DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT" DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT" DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT" DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT" DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT" DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT" DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT" DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT" DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT" DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT" DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT" DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT" DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT" DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT" DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT" DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT" DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT" DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT" DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT -> showString "DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT" DebugReportObjectTypeEXT x -> showParen (p >= 11) (showString "DebugReportObjectTypeEXT " . showsPrec 11 x) instance Read DebugReportObjectTypeEXT where readPrec = parens (choose [("DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT", pure DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_INSTANCE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_PHYSICAL_DEVICE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DEVICE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SEMAPHORE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT", pure DEBUG_REPORT_OBJECT_TYPE_COMMAND_BUFFER_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_FENCE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DEVICE_MEMORY_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT", pure DEBUG_REPORT_OBJECT_TYPE_BUFFER_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT", pure DEBUG_REPORT_OBJECT_TYPE_EVENT_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT", pure DEBUG_REPORT_OBJECT_TYPE_QUERY_POOL_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT", pure DEBUG_REPORT_OBJECT_TYPE_BUFFER_VIEW_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT", pure DEBUG_REPORT_OBJECT_TYPE_IMAGE_VIEW_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SHADER_MODULE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_PIPELINE_CACHE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT", pure DEBUG_REPORT_OBJECT_TYPE_PIPELINE_LAYOUT_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT", pure DEBUG_REPORT_OBJECT_TYPE_RENDER_PASS_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_PIPELINE_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_LAYOUT_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SAMPLER_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_POOL_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_SET_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT", pure DEBUG_REPORT_OBJECT_TYPE_FRAMEBUFFER_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT", pure DEBUG_REPORT_OBJECT_TYPE_COMMAND_POOL_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SURFACE_KHR_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SWAPCHAIN_KHR_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DEBUG_REPORT_CALLBACK_EXT_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DISPLAY_KHR_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DISPLAY_MODE_KHR_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT", pure DEBUG_REPORT_OBJECT_TYPE_VALIDATION_CACHE_EXT_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT", pure DEBUG_REPORT_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT", pure DEBUG_REPORT_OBJECT_TYPE_ACCELERATION_STRUCTURE_KHR_EXT) , ("DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT", pure DEBUG_REPORT_OBJECT_TYPE_DESCRIPTOR_UPDATE_TEMPLATE_EXT)] +++ prec 10 (do expectP (Ident "DebugReportObjectTypeEXT") v <- step readPrec pure (DebugReportObjectTypeEXT v))) type FN_vkDebugReportCallbackEXT = DebugReportFlagsEXT -> DebugReportObjectTypeEXT -> ("object" ::: Word64) -> ("location" ::: CSize) -> ("messageCode" ::: Int32) -> ("pLayerPrefix" ::: Ptr CChar) -> ("pMessage" ::: Ptr CChar) -> ("pUserData" ::: Ptr ()) -> IO Bool32 -- | PFN_vkDebugReportCallbackEXT - Application-defined debug report callback -- function -- -- = Description -- -- The callback /must/ not call 'destroyDebugReportCallbackEXT'. -- -- The callback returns a 'Vulkan.Core10.FundamentalTypes.Bool32', which is -- interpreted in a layer-specified manner. The application /should/ always -- return 'Vulkan.Core10.FundamentalTypes.FALSE'. The -- 'Vulkan.Core10.FundamentalTypes.TRUE' value is reserved for use in layer -- development. -- -- @object@ /must/ be a Vulkan object or -- 'Vulkan.Core10.APIConstants.NULL_HANDLE'. If @objectType@ is not -- 'DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT' and @object@ is not -- 'Vulkan.Core10.APIConstants.NULL_HANDLE', @object@ /must/ be a Vulkan -- object of the corresponding type associated with @objectType@ as defined -- in -- . -- -- = See Also -- -- 'DebugReportCallbackCreateInfoEXT' type PFN_vkDebugReportCallbackEXT = FunPtr FN_vkDebugReportCallbackEXT type EXT_DEBUG_REPORT_SPEC_VERSION = 9 -- No documentation found for TopLevel "VK_EXT_DEBUG_REPORT_SPEC_VERSION" pattern EXT_DEBUG_REPORT_SPEC_VERSION :: forall a . Integral a => a pattern EXT_DEBUG_REPORT_SPEC_VERSION = 9 type EXT_DEBUG_REPORT_EXTENSION_NAME = "VK_EXT_debug_report" -- No documentation found for TopLevel "VK_EXT_DEBUG_REPORT_EXTENSION_NAME" pattern EXT_DEBUG_REPORT_EXTENSION_NAME :: forall a . (Eq a, IsString a) => a pattern EXT_DEBUG_REPORT_EXTENSION_NAME = "VK_EXT_debug_report"