Class VkDebugReportCallbackCreateInfoEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkDebugReportCallbackCreateInfoEXT>
org.lwjgl.vulkan.VkDebugReportCallbackCreateInfoEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkDebugReportCallbackCreateInfoEXT extends org.lwjgl.system.Struct<VkDebugReportCallbackCreateInfoEXT> implements org.lwjgl.system.NativeResource
Structure specifying parameters of a newly created debug report callback.
Description

For each VkDebugReportCallbackEXT that is created the VkDebugReportCallbackCreateInfoEXT::flags determine when that VkDebugReportCallbackCreateInfoEXT::pfnCallback is called. When an event happens, the implementation will do a bitwise AND of the event’s VkDebugReportFlagBitsEXT flags to each VkDebugReportCallbackEXT 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 VkDebugReportCallbackEXT 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

VkDebugReportCallbackEXT, CreateDebugReportCallbackEXT

Layout


 struct VkDebugReportCallbackCreateInfoEXT {
     VkStructureType sType();
     void const * pNext();
     VkDebugReportFlagsEXT flags();
     PFN_vkDebugReportCallbackEXT pfnCallback();
     void * pUserData();
 }