@FunctionalInterface
public interface VkDebugReportCallbackEXTI
extends org.lwjgl.system.CallbackI.I
The prototype for the VkDebugReportCallbackCreateInfoEXT::pfnCallback function implemented by the application is:
typedef VkBool32 (VKAPI_PTR *PFN_vkDebugReportCallbackEXT)(
VkDebugReportFlagsEXT flags,
VkDebugReportObjectTypeEXT objectType,
uint64_t object,
size_t location,
int32_t messageCode,
const char* pLayerPrefix,
const char* pMessage,
void* pUserData);
The callback must not call vkDestroyDebugReportCallbackEXT.
The callback returns a VkBool32, which is interpreted in a layer-specified manner. The application should always return FALSE. The TRUE value is reserved for use in layer development.
object must be a Vulkan object or NULL_HANDLE. If objectType is not DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT and object is not NULL_HANDLE, object must be a Vulkan object of the corresponding type associated with objectType as defined in VkDebugReportObjectTypeEXT and Vulkan Handle Relationship.
org.lwjgl.system.CallbackI.B, org.lwjgl.system.CallbackI.D, org.lwjgl.system.CallbackI.F, org.lwjgl.system.CallbackI.I, org.lwjgl.system.CallbackI.J, org.lwjgl.system.CallbackI.N, org.lwjgl.system.CallbackI.P, org.lwjgl.system.CallbackI.S, org.lwjgl.system.CallbackI.V, org.lwjgl.system.CallbackI.Z| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
SIGNATURE |
| Modifier and Type | Method and Description |
|---|---|
default int |
callback(long args) |
default java.lang.String |
getSignature() |
int |
invoke(int flags,
int objectType,
long object,
long location,
int messageCode,
long pLayerPrefix,
long pMessage,
long pUserData)
Application-defined debug report callback function.
|
default java.lang.String getSignature()
getSignature in interface org.lwjgl.system.CallbackIdefault int callback(long args)
callback in interface org.lwjgl.system.CallbackI.Iint invoke(int flags,
int objectType,
long object,
long location,
int messageCode,
long pLayerPrefix,
long pMessage,
long pUserData)
flags - specifies the VkDebugReportFlagBitsEXT that triggered this callback.objectType - a VkDebugReportObjectTypeEXT value specifying the type of object being used or created at the time the event was triggered.object - the object where the issue was detected. If objectType is DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, object is undefined.location - a component (layer, driver, loader) defined value specifying the location of the trigger. This is an optional: value.messageCode - a layer-defined value indicating what test triggered this callback.pLayerPrefix - a null-terminated string that is an abbreviation of the name of the component making the callback. pLayerPrefix is only valid for the duration of the callback.pMessage - a null-terminated string detailing the trigger conditions. pMessage is only valid for the duration of the callback.pUserData - the user data given when the VkDebugReportCallbackEXT was created.Copyright LWJGL. All Rights Reserved. License terms.