org.lwjgl.vulkan.EXTDebugMarker Maven / Gradle / Ivy
Show all versions of lwjgl-vulkan Show documentation
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan;
import org.lwjgl.system.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
/**
* The {@code VK_EXT_debug_marker} extension is a device extension. It introduces concepts of object naming and tagging, for better tracking of Vulkan objects, as well as additional commands for recording annotations of named sections of a workload to aid organization and offline analysis in external tools.
*
* Examples
*
* Example 1
*
* Associate a name with an image, for easier debugging in external tools or with validation layers that can print a friendly name when referring to objects in error messages.
*
*
* extern VkDevice device;
* extern VkImage image;
*
* // Must call extension functions through a function pointer:
* PFN_vkDebugMarkerSetObjectNameEXT pfnDebugMarkerSetObjectNameEXT = (PFN_vkDebugMarkerSetObjectNameEXT)vkGetDeviceProcAddr(device, "vkDebugMarkerSetObjectNameEXT");
*
* // Set a name on the image
* const VkDebugMarkerObjectNameInfoEXT imageNameInfo =
* {
* VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT, // sType
* NULL, // pNext
* VK_DEBUG_REPORT_OBJECT_TYPE_IMAGE_EXT, // objectType
* (uint64_t)image, // object
* "Brick Diffuse Texture", // pObjectName
* };
*
* pfnDebugMarkerSetObjectNameEXT(device, &imageNameInfo);
*
* // A subsequent error might print:
* // Image 'Brick Diffuse Texture' (0xc0dec0dedeadbeef) is used in a
* // command buffer with no memory bound to it.
*
* Example 2
*
* Annotating regions of a workload with naming information so that offline analysis tools can display a more usable visualisation of the commands submitted.
*
*
* extern VkDevice device;
* extern VkCommandBuffer commandBuffer;
*
* // Must call extension functions through a function pointer:
* PFN_vkCmdDebugMarkerBeginEXT pfnCmdDebugMarkerBeginEXT = (PFN_vkCmdDebugMarkerBeginEXT)vkGetDeviceProcAddr(device, "vkCmdDebugMarkerBeginEXT");
* PFN_vkCmdDebugMarkerEndEXT pfnCmdDebugMarkerEndEXT = (PFN_vkCmdDebugMarkerEndEXT)vkGetDeviceProcAddr(device, "vkCmdDebugMarkerEndEXT");
* PFN_vkCmdDebugMarkerInsertEXT pfnCmdDebugMarkerInsertEXT = (PFN_vkCmdDebugMarkerInsertEXT)vkGetDeviceProcAddr(device, "vkCmdDebugMarkerInsertEXT");
*
* // Describe the area being rendered
* const VkDebugMarkerMarkerInfoEXT houseMarker =
* {
* VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT, // sType
* NULL, // pNext
* "Brick House", // pMarkerName
* { 1.0f, 0.0f, 0.0f, 1.0f }, // color
* };
*
* // Start an annotated group of calls under the 'Brick House' name
* pfnCmdDebugMarkerBeginEXT(commandBuffer, &houseMarker);
* {
* // A mutable structure for each part being rendered
* VkDebugMarkerMarkerInfoEXT housePartMarker =
* {
* VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT, // sType
* NULL, // pNext
* NULL, // pMarkerName
* { 0.0f, 0.0f, 0.0f, 0.0f }, // color
* };
*
* // Set the name and insert the marker
* housePartMarker.pMarkerName = "Walls";
* pfnCmdDebugMarkerInsertEXT(commandBuffer, &housePartMarker);
*
* // Insert the drawcall for the walls
* vkCmdDrawIndexed(commandBuffer, 1000, 1, 0, 0, 0);
*
* // Insert a recursive region for two sets of windows
* housePartMarker.pMarkerName = "Windows";
* pfnCmdDebugMarkerBeginEXT(commandBuffer, &housePartMarker);
* {
* vkCmdDrawIndexed(commandBuffer, 75, 6, 1000, 0, 0);
* vkCmdDrawIndexed(commandBuffer, 100, 2, 1450, 0, 0);
* }
* pfnCmdDebugMarkerEndEXT(commandBuffer);
*
* housePartMarker.pMarkerName = "Front Door";
* pfnCmdDebugMarkerInsertEXT(commandBuffer, &housePartMarker);
*
* vkCmdDrawIndexed(commandBuffer, 350, 1, 1650, 0, 0);
*
* housePartMarker.pMarkerName = "Roof";
* pfnCmdDebugMarkerInsertEXT(commandBuffer, &housePartMarker);
*
* vkCmdDrawIndexed(commandBuffer, 500, 1, 2000, 0, 0);
* }
* // End the house annotation started above
* pfnCmdDebugMarkerEndEXT(commandBuffer);
*
* VK_EXT_debug_marker
*
*
* - Name String
* - {@code VK_EXT_debug_marker}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 23
* - Revision
* - 4
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link EXTDebugReport VK_EXT_debug_report}
*
* - Deprecation state
*
* - Promoted to {@link EXTDebugUtils VK_EXT_debug_utils} extension
*
* - Special Use
*
* - Debugging tools
*
* - Contact
*
* - Baldur Karlsson baldurk
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2017-01-31
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Baldur Karlsson
* - Dan Ginsburg, Valve
* - Jon Ashburn, LunarG
* - Kyle Spagnoli, NVIDIA
*
*
*/
public class EXTDebugMarker {
/** The extension specification version. */
public static final int VK_EXT_DEBUG_MARKER_SPEC_VERSION = 4;
/** The extension name. */
public static final String VK_EXT_DEBUG_MARKER_EXTENSION_NAME = "VK_EXT_debug_marker";
/**
* Extends {@code VkStructureType}.
*
* Enum values:
*
*
* - {@link #VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT}
* - {@link #VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT}
* - {@link #VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT}
*
*/
public static final int
VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_NAME_INFO_EXT = 1000022000,
VK_STRUCTURE_TYPE_DEBUG_MARKER_OBJECT_TAG_INFO_EXT = 1000022001,
VK_STRUCTURE_TYPE_DEBUG_MARKER_MARKER_INFO_EXT = 1000022002;
protected EXTDebugMarker() {
throw new UnsupportedOperationException();
}
// --- [ vkDebugMarkerSetObjectTagEXT ] ---
/** Unsafe version of: {@link #vkDebugMarkerSetObjectTagEXT DebugMarkerSetObjectTagEXT} */
public static int nvkDebugMarkerSetObjectTagEXT(VkDevice device, long pTagInfo) {
long __functionAddress = device.getCapabilities().vkDebugMarkerSetObjectTagEXT;
if (CHECKS) {
check(__functionAddress);
VkDebugMarkerObjectTagInfoEXT.validate(pTagInfo);
}
return callPPI(device.address(), pTagInfo, __functionAddress);
}
/**
* Attach arbitrary data to an object.
*
* C Specification
*
* In addition to setting a name for an object, debugging and validation layers may have uses for additional binary data on a per-object basis that has no other place in the Vulkan API. For example, a {@code VkShaderModule} could have additional debugging data attached to it to aid in offline shader tracing. To attach data to an object, call:
*
*
* VkResult vkDebugMarkerSetObjectTagEXT(
* VkDevice device,
* const VkDebugMarkerObjectTagInfoEXT* pTagInfo);
*
* Valid Usage (Implicit)
*
*
* - {@code device} must be a valid {@code VkDevice} handle
* - {@code pTagInfo} must be a valid pointer to a valid {@link VkDebugMarkerObjectTagInfoEXT} structure
*
*
* Host Synchronization
*
*
* - Host access to {@code pTagInfo→object} must be externally synchronized
*
*
* Return Codes
*
*
* - On success, this command returns
*
* - {@link VK10#VK_SUCCESS SUCCESS}
*
* - On failure, this command returns
*
* - {@link VK10#VK_ERROR_OUT_OF_HOST_MEMORY ERROR_OUT_OF_HOST_MEMORY}
* - {@link VK10#VK_ERROR_OUT_OF_DEVICE_MEMORY ERROR_OUT_OF_DEVICE_MEMORY}
*
*
*
* See Also
*
* {@link VkDebugMarkerObjectTagInfoEXT}
*
* @param device the device that created the object.
* @param pTagInfo a pointer to a {@link VkDebugMarkerObjectTagInfoEXT} structure specifying the parameters of the tag to attach to the object.
*/
@NativeType("VkResult")
public static int vkDebugMarkerSetObjectTagEXT(VkDevice device, @NativeType("VkDebugMarkerObjectTagInfoEXT const *") VkDebugMarkerObjectTagInfoEXT pTagInfo) {
return nvkDebugMarkerSetObjectTagEXT(device, pTagInfo.address());
}
// --- [ vkDebugMarkerSetObjectNameEXT ] ---
/** Unsafe version of: {@link #vkDebugMarkerSetObjectNameEXT DebugMarkerSetObjectNameEXT} */
public static int nvkDebugMarkerSetObjectNameEXT(VkDevice device, long pNameInfo) {
long __functionAddress = device.getCapabilities().vkDebugMarkerSetObjectNameEXT;
if (CHECKS) {
check(__functionAddress);
VkDebugMarkerObjectNameInfoEXT.validate(pNameInfo);
}
return callPPI(device.address(), pNameInfo, __functionAddress);
}
/**
* Give a user-friendly name to an object.
*
* C Specification
*
* An object can be given a user-friendly name by calling:
*
*
* VkResult vkDebugMarkerSetObjectNameEXT(
* VkDevice device,
* const VkDebugMarkerObjectNameInfoEXT* pNameInfo);
*
* Valid Usage (Implicit)
*
*
* - {@code device} must be a valid {@code VkDevice} handle
* - {@code pNameInfo} must be a valid pointer to a valid {@link VkDebugMarkerObjectNameInfoEXT} structure
*
*
* Host Synchronization
*
*
* - Host access to {@code pNameInfo→object} must be externally synchronized
*
*
* Return Codes
*
*
* - On success, this command returns
*
* - {@link VK10#VK_SUCCESS SUCCESS}
*
* - On failure, this command returns
*
* - {@link VK10#VK_ERROR_OUT_OF_HOST_MEMORY ERROR_OUT_OF_HOST_MEMORY}
* - {@link VK10#VK_ERROR_OUT_OF_DEVICE_MEMORY ERROR_OUT_OF_DEVICE_MEMORY}
*
*
*
* See Also
*
* {@link VkDebugMarkerObjectNameInfoEXT}
*
* @param device the device that created the object.
* @param pNameInfo a pointer to a {@link VkDebugMarkerObjectNameInfoEXT} structure specifying the parameters of the name to set on the object.
*/
@NativeType("VkResult")
public static int vkDebugMarkerSetObjectNameEXT(VkDevice device, @NativeType("VkDebugMarkerObjectNameInfoEXT const *") VkDebugMarkerObjectNameInfoEXT pNameInfo) {
return nvkDebugMarkerSetObjectNameEXT(device, pNameInfo.address());
}
// --- [ vkCmdDebugMarkerBeginEXT ] ---
/** Unsafe version of: {@link #vkCmdDebugMarkerBeginEXT CmdDebugMarkerBeginEXT} */
public static void nvkCmdDebugMarkerBeginEXT(VkCommandBuffer commandBuffer, long pMarkerInfo) {
long __functionAddress = commandBuffer.getCapabilities().vkCmdDebugMarkerBeginEXT;
if (CHECKS) {
check(__functionAddress);
VkDebugMarkerMarkerInfoEXT.validate(pMarkerInfo);
}
callPPV(commandBuffer.address(), pMarkerInfo, __functionAddress);
}
/**
* Open a command buffer marker region.
*
* C Specification
*
* A marker region can be opened by calling:
*
*
* void vkCmdDebugMarkerBeginEXT(
* VkCommandBuffer commandBuffer,
* const VkDebugMarkerMarkerInfoEXT* pMarkerInfo);
*
* Valid Usage (Implicit)
*
*
* - {@code commandBuffer} must be a valid {@code VkCommandBuffer} handle
* - {@code pMarkerInfo} must be a valid pointer to a valid {@link VkDebugMarkerMarkerInfoEXT} structure
* - {@code commandBuffer} must be in the recording state
* - The {@code VkCommandPool} that {@code commandBuffer} was allocated from must support graphics, or compute operations
*
*
* Host Synchronization
*
*
* - Host access to {@code commandBuffer} must be externally synchronized
* - Host access to the {@code VkCommandPool} that {@code commandBuffer} was allocated from must be externally synchronized
*
*
* Command Properties
*
*
* Command Buffer Levels Render Pass Scope Supported Queue Types
* Primary Secondary Both Graphics Compute
*
*
* See Also
*
* {@link VkDebugMarkerMarkerInfoEXT}
*
* @param commandBuffer the command buffer into which the command is recorded.
* @param pMarkerInfo a pointer to a {@link VkDebugMarkerMarkerInfoEXT} structure specifying the parameters of the marker region to open.
*/
public static void vkCmdDebugMarkerBeginEXT(VkCommandBuffer commandBuffer, @NativeType("VkDebugMarkerMarkerInfoEXT const *") VkDebugMarkerMarkerInfoEXT pMarkerInfo) {
nvkCmdDebugMarkerBeginEXT(commandBuffer, pMarkerInfo.address());
}
// --- [ vkCmdDebugMarkerEndEXT ] ---
/**
* Close a command buffer marker region.
*
* C Specification
*
* A marker region can be closed by calling:
*
*
* void vkCmdDebugMarkerEndEXT(
* VkCommandBuffer commandBuffer);
*
* Description
*
* An application may open a marker region in one command buffer and close it in another, or otherwise split marker regions across multiple command buffers or multiple queue submissions. When viewed from the linear series of submissions to a single queue, the calls to {@code vkCmdDebugMarkerBeginEXT} and {@code vkCmdDebugMarkerEndEXT} must be matched and balanced.
*
* Valid Usage
*
*
* - There must be an outstanding {@link #vkCmdDebugMarkerBeginEXT CmdDebugMarkerBeginEXT} command prior to the {@code vkCmdDebugMarkerEndEXT} on the queue that {@code commandBuffer} is submitted to
* - If {@code commandBuffer} is a secondary command buffer, there must be an outstanding {@link #vkCmdDebugMarkerBeginEXT CmdDebugMarkerBeginEXT} command recorded to {@code commandBuffer} that has not previously been ended by a call to {@link #vkCmdDebugMarkerEndEXT CmdDebugMarkerEndEXT}
*
*
* Valid Usage (Implicit)
*
*
* - {@code commandBuffer} must be a valid {@code VkCommandBuffer} handle
* - {@code commandBuffer} must be in the recording state
* - The {@code VkCommandPool} that {@code commandBuffer} was allocated from must support graphics, or compute operations
*
*
* Host Synchronization
*
*
* - Host access to {@code commandBuffer} must be externally synchronized
* - Host access to the {@code VkCommandPool} that {@code commandBuffer} was allocated from must be externally synchronized
*
*
* Command Properties
*
*
* Command Buffer Levels Render Pass Scope Supported Queue Types
* Primary Secondary Both Graphics Compute
*
*
* @param commandBuffer the command buffer into which the command is recorded.
*/
public static void vkCmdDebugMarkerEndEXT(VkCommandBuffer commandBuffer) {
long __functionAddress = commandBuffer.getCapabilities().vkCmdDebugMarkerEndEXT;
if (CHECKS) {
check(__functionAddress);
}
callPV(commandBuffer.address(), __functionAddress);
}
// --- [ vkCmdDebugMarkerInsertEXT ] ---
/** Unsafe version of: {@link #vkCmdDebugMarkerInsertEXT CmdDebugMarkerInsertEXT} */
public static void nvkCmdDebugMarkerInsertEXT(VkCommandBuffer commandBuffer, long pMarkerInfo) {
long __functionAddress = commandBuffer.getCapabilities().vkCmdDebugMarkerInsertEXT;
if (CHECKS) {
check(__functionAddress);
VkDebugMarkerMarkerInfoEXT.validate(pMarkerInfo);
}
callPPV(commandBuffer.address(), pMarkerInfo, __functionAddress);
}
/**
* Insert a marker label into a command buffer.
*
* C Specification
*
* A single marker label can be inserted into a command buffer by calling:
*
*
* void vkCmdDebugMarkerInsertEXT(
* VkCommandBuffer commandBuffer,
* const VkDebugMarkerMarkerInfoEXT* pMarkerInfo);
*
* Valid Usage (Implicit)
*
*
* - {@code commandBuffer} must be a valid {@code VkCommandBuffer} handle
* - {@code pMarkerInfo} must be a valid pointer to a valid {@link VkDebugMarkerMarkerInfoEXT} structure
* - {@code commandBuffer} must be in the recording state
* - The {@code VkCommandPool} that {@code commandBuffer} was allocated from must support graphics, or compute operations
*
*
* Host Synchronization
*
*
* - Host access to {@code commandBuffer} must be externally synchronized
* - Host access to the {@code VkCommandPool} that {@code commandBuffer} was allocated from must be externally synchronized
*
*
* Command Properties
*
*
* Command Buffer Levels Render Pass Scope Supported Queue Types
* Primary Secondary Both Graphics Compute
*
*
* See Also
*
* {@link VkDebugMarkerMarkerInfoEXT}
*
* @param commandBuffer the command buffer into which the command is recorded.
* @param pMarkerInfo a pointer to a {@link VkDebugMarkerMarkerInfoEXT} structure specifying the parameters of the marker to insert.
*/
public static void vkCmdDebugMarkerInsertEXT(VkCommandBuffer commandBuffer, @NativeType("VkDebugMarkerMarkerInfoEXT const *") VkDebugMarkerMarkerInfoEXT pMarkerInfo) {
nvkCmdDebugMarkerInsertEXT(commandBuffer, pMarkerInfo.address());
}
}