Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- debugCallbackPtr :: PFN_vkDebugUtilsMessengerCallbackEXT
- debugCallbackFatalPtr :: PFN_vkDebugUtilsMessengerCallbackEXT
- nameObject :: (HasObjectType a, MonadIO m) => Device -> a -> ByteString -> m ()
Documentation
debugCallbackPtr :: PFN_vkDebugUtilsMessengerCallbackEXT Source #
A debug callback which prints the message prefixed with "Validation: " to stderr.
debugCallbackFatalPtr :: PFN_vkDebugUtilsMessengerCallbackEXT Source #
A debug callback the same as debugCallbackPtr
except it will call
abort
when VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT
is set.
nameObject :: (HasObjectType a, MonadIO m) => Device -> a -> ByteString -> m () Source #
Assign a name to a handle using setDebugUtilsObjectNameEXT
, note that
the VK_EXT_debug_utils
extension must be enabled.