erupted.functions

Dlang vulkan function pointer prototypes, declarations and loader from vkGetInstanceProcAddr

Public Imports

erupted.types
public import erupted.types;
Undocumented in source.

Members

Aliases

PFN_vkAcquireNextImage2KHR
alias PFN_vkAcquireNextImage2KHR = VkResult function(VkDevice device, const(VkAcquireNextImageInfoKHR)* pAcquireInfo, uint32_t* pImageIndex)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkAcquireNextImageKHR
alias PFN_vkAcquireNextImageKHR = VkResult function(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkAllocateCommandBuffers
alias PFN_vkAllocateCommandBuffers = VkResult function(VkDevice device, const(VkCommandBufferAllocateInfo)* pAllocateInfo, VkCommandBuffer* pCommandBuffers)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkAllocateDescriptorSets
alias PFN_vkAllocateDescriptorSets = VkResult function(VkDevice device, const(VkDescriptorSetAllocateInfo)* pAllocateInfo, VkDescriptorSet* pDescriptorSets)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkAllocateMemory
alias PFN_vkAllocateMemory = VkResult function(VkDevice device, const(VkMemoryAllocateInfo)* pAllocateInfo, const(VkAllocationCallbacks)* pAllocator, VkDeviceMemory* pMemory)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkBeginCommandBuffer
alias PFN_vkBeginCommandBuffer = VkResult function(VkCommandBuffer commandBuffer, const(VkCommandBufferBeginInfo)* pBeginInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkBindBufferMemory
alias PFN_vkBindBufferMemory = VkResult function(VkDevice device, VkBuffer buffer, VkDeviceMemory memory, VkDeviceSize memoryOffset)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkBindBufferMemory2
alias PFN_vkBindBufferMemory2 = VkResult function(VkDevice device, uint32_t bindInfoCount, const(VkBindBufferMemoryInfo)* pBindInfos)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkBindImageMemory
alias PFN_vkBindImageMemory = VkResult function(VkDevice device, VkImage image, VkDeviceMemory memory, VkDeviceSize memoryOffset)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkBindImageMemory2
alias PFN_vkBindImageMemory2 = VkResult function(VkDevice device, uint32_t bindInfoCount, const(VkBindImageMemoryInfo)* pBindInfos)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBeginDebugUtilsLabelEXT
alias PFN_vkCmdBeginDebugUtilsLabelEXT = void function(VkCommandBuffer commandBuffer, const(VkDebugUtilsLabelEXT)* pLabelInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBeginQuery
alias PFN_vkCmdBeginQuery = void function(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query, VkQueryControlFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBeginRenderPass
alias PFN_vkCmdBeginRenderPass = void function(VkCommandBuffer commandBuffer, const(VkRenderPassBeginInfo)* pRenderPassBegin, VkSubpassContents contents)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBindDescriptorSets
alias PFN_vkCmdBindDescriptorSets = void function(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t firstSet, uint32_t descriptorSetCount, const(VkDescriptorSet)* pDescriptorSets, uint32_t dynamicOffsetCount, const(uint32_t)* pDynamicOffsets)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBindIndexBuffer
alias PFN_vkCmdBindIndexBuffer = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkIndexType indexType)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBindPipeline
alias PFN_vkCmdBindPipeline = void function(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipeline pipeline)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBindVertexBuffers
alias PFN_vkCmdBindVertexBuffers = void function(VkCommandBuffer commandBuffer, uint32_t firstBinding, uint32_t bindingCount, const(VkBuffer)* pBuffers, const(VkDeviceSize)* pOffsets)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdBlitImage
alias PFN_vkCmdBlitImage = void function(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const(VkImageBlit)* pRegions, VkFilter filter)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdClearAttachments
alias PFN_vkCmdClearAttachments = void function(VkCommandBuffer commandBuffer, uint32_t attachmentCount, const(VkClearAttachment)* pAttachments, uint32_t rectCount, const(VkClearRect)* pRects)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdClearColorImage
alias PFN_vkCmdClearColorImage = void function(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const(VkClearColorValue)* pColor, uint32_t rangeCount, const(VkImageSubresourceRange)* pRanges)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdClearDepthStencilImage
alias PFN_vkCmdClearDepthStencilImage = void function(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const(VkClearDepthStencilValue)* pDepthStencil, uint32_t rangeCount, const(VkImageSubresourceRange)* pRanges)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdCopyBuffer
alias PFN_vkCmdCopyBuffer = void function(VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkBuffer dstBuffer, uint32_t regionCount, const(VkBufferCopy)* pRegions)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdCopyBufferToImage
alias PFN_vkCmdCopyBufferToImage = void function(VkCommandBuffer commandBuffer, VkBuffer srcBuffer, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const(VkBufferImageCopy)* pRegions)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdCopyImage
alias PFN_vkCmdCopyImage = void function(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const(VkImageCopy)* pRegions)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdCopyImageToBuffer
alias PFN_vkCmdCopyImageToBuffer = void function(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkBuffer dstBuffer, uint32_t regionCount, const(VkBufferImageCopy)* pRegions)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdCopyQueryPoolResults
alias PFN_vkCmdCopyQueryPoolResults = void function(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize stride, VkQueryResultFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDebugMarkerBeginEXT
alias PFN_vkCmdDebugMarkerBeginEXT = void function(VkCommandBuffer commandBuffer, const(VkDebugMarkerMarkerInfoEXT)* pMarkerInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDebugMarkerEndEXT
alias PFN_vkCmdDebugMarkerEndEXT = void function(VkCommandBuffer commandBuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDebugMarkerInsertEXT
alias PFN_vkCmdDebugMarkerInsertEXT = void function(VkCommandBuffer commandBuffer, const(VkDebugMarkerMarkerInfoEXT)* pMarkerInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDispatch
alias PFN_vkCmdDispatch = void function(VkCommandBuffer commandBuffer, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDispatchBase
alias PFN_vkCmdDispatchBase = void function(VkCommandBuffer commandBuffer, uint32_t baseGroupX, uint32_t baseGroupY, uint32_t baseGroupZ, uint32_t groupCountX, uint32_t groupCountY, uint32_t groupCountZ)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDispatchIndirect
alias PFN_vkCmdDispatchIndirect = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDraw
alias PFN_vkCmdDraw = void function(VkCommandBuffer commandBuffer, uint32_t vertexCount, uint32_t instanceCount, uint32_t firstVertex, uint32_t firstInstance)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDrawIndexed
alias PFN_vkCmdDrawIndexed = void function(VkCommandBuffer commandBuffer, uint32_t indexCount, uint32_t instanceCount, uint32_t firstIndex, int32_t vertexOffset, uint32_t firstInstance)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDrawIndexedIndirect
alias PFN_vkCmdDrawIndexedIndirect = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDrawIndexedIndirectCountAMD
alias PFN_vkCmdDrawIndexedIndirectCountAMD = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDrawIndirect
alias PFN_vkCmdDrawIndirect = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdDrawIndirectCountAMD
alias PFN_vkCmdDrawIndirectCountAMD = void function(VkCommandBuffer commandBuffer, VkBuffer buffer, VkDeviceSize offset, VkBuffer countBuffer, VkDeviceSize countBufferOffset, uint32_t maxDrawCount, uint32_t stride)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdEndDebugUtilsLabelEXT
alias PFN_vkCmdEndDebugUtilsLabelEXT = void function(VkCommandBuffer commandBuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdEndQuery
alias PFN_vkCmdEndQuery = void function(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t query)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdEndRenderPass
alias PFN_vkCmdEndRenderPass = void function(VkCommandBuffer commandBuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdExecuteCommands
alias PFN_vkCmdExecuteCommands = void function(VkCommandBuffer commandBuffer, uint32_t commandBufferCount, const(VkCommandBuffer)* pCommandBuffers)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdFillBuffer
alias PFN_vkCmdFillBuffer = void function(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize size, uint32_t data)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdInsertDebugUtilsLabelEXT
alias PFN_vkCmdInsertDebugUtilsLabelEXT = void function(VkCommandBuffer commandBuffer, const(VkDebugUtilsLabelEXT)* pLabelInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdNextSubpass
alias PFN_vkCmdNextSubpass = void function(VkCommandBuffer commandBuffer, VkSubpassContents contents)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdPipelineBarrier
alias PFN_vkCmdPipelineBarrier = void function(VkCommandBuffer commandBuffer, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, VkDependencyFlags dependencyFlags, uint32_t memoryBarrierCount, const(VkMemoryBarrier)* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const(VkBufferMemoryBarrier)* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const(VkImageMemoryBarrier)* pImageMemoryBarriers)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdProcessCommandsNVX
alias PFN_vkCmdProcessCommandsNVX = void function(VkCommandBuffer commandBuffer, const(VkCmdProcessCommandsInfoNVX)* pProcessCommandsInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdPushConstants
alias PFN_vkCmdPushConstants = void function(VkCommandBuffer commandBuffer, VkPipelineLayout layout, VkShaderStageFlags stageFlags, uint32_t offset, uint32_t size, const(void)* pValues)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdPushDescriptorSetKHR
alias PFN_vkCmdPushDescriptorSetKHR = void function(VkCommandBuffer commandBuffer, VkPipelineBindPoint pipelineBindPoint, VkPipelineLayout layout, uint32_t set, uint32_t descriptorWriteCount, const(VkWriteDescriptorSet)* pDescriptorWrites)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdPushDescriptorSetWithTemplateKHR
alias PFN_vkCmdPushDescriptorSetWithTemplateKHR = void function(VkCommandBuffer commandBuffer, VkDescriptorUpdateTemplate descriptorUpdateTemplate, VkPipelineLayout layout, uint32_t set, const(void)* pData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdReserveSpaceForCommandsNVX
alias PFN_vkCmdReserveSpaceForCommandsNVX = void function(VkCommandBuffer commandBuffer, const(VkCmdReserveSpaceForCommandsInfoNVX)* pReserveSpaceInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdResetEvent
alias PFN_vkCmdResetEvent = void function(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdResetQueryPool
alias PFN_vkCmdResetQueryPool = void function(VkCommandBuffer commandBuffer, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdResolveImage
alias PFN_vkCmdResolveImage = void function(VkCommandBuffer commandBuffer, VkImage srcImage, VkImageLayout srcImageLayout, VkImage dstImage, VkImageLayout dstImageLayout, uint32_t regionCount, const(VkImageResolve)* pRegions)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetBlendConstants
alias PFN_vkCmdSetBlendConstants = void function(VkCommandBuffer commandBuffer, const float[4] blendConstants)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetDepthBias
alias PFN_vkCmdSetDepthBias = void function(VkCommandBuffer commandBuffer, float depthBiasConstantFactor, float depthBiasClamp, float depthBiasSlopeFactor)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetDepthBounds
alias PFN_vkCmdSetDepthBounds = void function(VkCommandBuffer commandBuffer, float minDepthBounds, float maxDepthBounds)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetDeviceMask
alias PFN_vkCmdSetDeviceMask = void function(VkCommandBuffer commandBuffer, uint32_t deviceMask)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetDiscardRectangleEXT
alias PFN_vkCmdSetDiscardRectangleEXT = void function(VkCommandBuffer commandBuffer, uint32_t firstDiscardRectangle, uint32_t discardRectangleCount, const(VkRect2D)* pDiscardRectangles)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetEvent
alias PFN_vkCmdSetEvent = void function(VkCommandBuffer commandBuffer, VkEvent event, VkPipelineStageFlags stageMask)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetLineWidth
alias PFN_vkCmdSetLineWidth = void function(VkCommandBuffer commandBuffer, float lineWidth)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetSampleLocationsEXT
alias PFN_vkCmdSetSampleLocationsEXT = void function(VkCommandBuffer commandBuffer, const(VkSampleLocationsInfoEXT)* pSampleLocationsInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetScissor
alias PFN_vkCmdSetScissor = void function(VkCommandBuffer commandBuffer, uint32_t firstScissor, uint32_t scissorCount, const(VkRect2D)* pScissors)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetStencilCompareMask
alias PFN_vkCmdSetStencilCompareMask = void function(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t compareMask)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetStencilReference
alias PFN_vkCmdSetStencilReference = void function(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t reference)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetStencilWriteMask
alias PFN_vkCmdSetStencilWriteMask = void function(VkCommandBuffer commandBuffer, VkStencilFaceFlags faceMask, uint32_t writeMask)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetViewport
alias PFN_vkCmdSetViewport = void function(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const(VkViewport)* pViewports)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdSetViewportWScalingNV
alias PFN_vkCmdSetViewportWScalingNV = void function(VkCommandBuffer commandBuffer, uint32_t firstViewport, uint32_t viewportCount, const(VkViewportWScalingNV)* pViewportWScalings)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdUpdateBuffer
alias PFN_vkCmdUpdateBuffer = void function(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize dataSize, const(void)* pData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdWaitEvents
alias PFN_vkCmdWaitEvents = void function(VkCommandBuffer commandBuffer, uint32_t eventCount, const(VkEvent)* pEvents, VkPipelineStageFlags srcStageMask, VkPipelineStageFlags dstStageMask, uint32_t memoryBarrierCount, const(VkMemoryBarrier)* pMemoryBarriers, uint32_t bufferMemoryBarrierCount, const(VkBufferMemoryBarrier)* pBufferMemoryBarriers, uint32_t imageMemoryBarrierCount, const(VkImageMemoryBarrier)* pImageMemoryBarriers)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdWriteBufferMarkerAMD
alias PFN_vkCmdWriteBufferMarkerAMD = void function(VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkBuffer dstBuffer, VkDeviceSize dstOffset, uint32_t marker)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCmdWriteTimestamp
alias PFN_vkCmdWriteTimestamp = void function(VkCommandBuffer commandBuffer, VkPipelineStageFlagBits pipelineStage, VkQueryPool queryPool, uint32_t query)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateBuffer
alias PFN_vkCreateBuffer = VkResult function(VkDevice device, const(VkBufferCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkBuffer* pBuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateBufferView
alias PFN_vkCreateBufferView = VkResult function(VkDevice device, const(VkBufferViewCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkBufferView* pView)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateCommandPool
alias PFN_vkCreateCommandPool = VkResult function(VkDevice device, const(VkCommandPoolCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkCommandPool* pCommandPool)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateComputePipelines
alias PFN_vkCreateComputePipelines = VkResult function(VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const(VkComputePipelineCreateInfo)* pCreateInfos, const(VkAllocationCallbacks)* pAllocator, VkPipeline* pPipelines)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDebugReportCallbackEXT
alias PFN_vkCreateDebugReportCallbackEXT = VkResult function(VkInstance instance, const(VkDebugReportCallbackCreateInfoEXT)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDebugReportCallbackEXT* pCallback)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDebugUtilsMessengerEXT
alias PFN_vkCreateDebugUtilsMessengerEXT = VkResult function(VkInstance instance, const(VkDebugUtilsMessengerCreateInfoEXT)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDebugUtilsMessengerEXT* pMessenger)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDescriptorPool
alias PFN_vkCreateDescriptorPool = VkResult function(VkDevice device, const(VkDescriptorPoolCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDescriptorPool* pDescriptorPool)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDescriptorSetLayout
alias PFN_vkCreateDescriptorSetLayout = VkResult function(VkDevice device, const(VkDescriptorSetLayoutCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDescriptorSetLayout* pSetLayout)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDescriptorUpdateTemplate
alias PFN_vkCreateDescriptorUpdateTemplate = VkResult function(VkDevice device, const(VkDescriptorUpdateTemplateCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDescriptorUpdateTemplate* pDescriptorUpdateTemplate)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDevice
alias PFN_vkCreateDevice = VkResult function(VkPhysicalDevice physicalDevice, const(VkDeviceCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDevice* pDevice)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDisplayModeKHR
alias PFN_vkCreateDisplayModeKHR = VkResult function(VkPhysicalDevice physicalDevice, VkDisplayKHR display, const(VkDisplayModeCreateInfoKHR)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkDisplayModeKHR* pMode)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateDisplayPlaneSurfaceKHR
alias PFN_vkCreateDisplayPlaneSurfaceKHR = VkResult function(VkInstance instance, const(VkDisplaySurfaceCreateInfoKHR)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkSurfaceKHR* pSurface)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateEvent
alias PFN_vkCreateEvent = VkResult function(VkDevice device, const(VkEventCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkEvent* pEvent)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateFence
alias PFN_vkCreateFence = VkResult function(VkDevice device, const(VkFenceCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkFence* pFence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateFramebuffer
alias PFN_vkCreateFramebuffer = VkResult function(VkDevice device, const(VkFramebufferCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkFramebuffer* pFramebuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateGraphicsPipelines
alias PFN_vkCreateGraphicsPipelines = VkResult function(VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, const(VkGraphicsPipelineCreateInfo)* pCreateInfos, const(VkAllocationCallbacks)* pAllocator, VkPipeline* pPipelines)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateImage
alias PFN_vkCreateImage = VkResult function(VkDevice device, const(VkImageCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkImage* pImage)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateImageView
alias PFN_vkCreateImageView = VkResult function(VkDevice device, const(VkImageViewCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkImageView* pView)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateIndirectCommandsLayoutNVX
alias PFN_vkCreateIndirectCommandsLayoutNVX = VkResult function(VkDevice device, const(VkIndirectCommandsLayoutCreateInfoNVX)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkIndirectCommandsLayoutNVX* pIndirectCommandsLayout)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateInstance
alias PFN_vkCreateInstance = VkResult function(const(VkInstanceCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkInstance* pInstance)

function type aliases

PFN_vkCreateObjectTableNVX
alias PFN_vkCreateObjectTableNVX = VkResult function(VkDevice device, const(VkObjectTableCreateInfoNVX)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkObjectTableNVX* pObjectTable)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreatePipelineCache
alias PFN_vkCreatePipelineCache = VkResult function(VkDevice device, const(VkPipelineCacheCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkPipelineCache* pPipelineCache)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreatePipelineLayout
alias PFN_vkCreatePipelineLayout = VkResult function(VkDevice device, const(VkPipelineLayoutCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkPipelineLayout* pPipelineLayout)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateQueryPool
alias PFN_vkCreateQueryPool = VkResult function(VkDevice device, const(VkQueryPoolCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkQueryPool* pQueryPool)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateRenderPass
alias PFN_vkCreateRenderPass = VkResult function(VkDevice device, const(VkRenderPassCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkRenderPass* pRenderPass)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateSampler
alias PFN_vkCreateSampler = VkResult function(VkDevice device, const(VkSamplerCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkSampler* pSampler)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateSamplerYcbcrConversion
alias PFN_vkCreateSamplerYcbcrConversion = VkResult function(VkDevice device, const(VkSamplerYcbcrConversionCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkSamplerYcbcrConversion* pYcbcrConversion)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateSemaphore
alias PFN_vkCreateSemaphore = VkResult function(VkDevice device, const(VkSemaphoreCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkSemaphore* pSemaphore)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateShaderModule
alias PFN_vkCreateShaderModule = VkResult function(VkDevice device, const(VkShaderModuleCreateInfo)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkShaderModule* pShaderModule)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateSharedSwapchainsKHR
alias PFN_vkCreateSharedSwapchainsKHR = VkResult function(VkDevice device, uint32_t swapchainCount, const(VkSwapchainCreateInfoKHR)* pCreateInfos, const(VkAllocationCallbacks)* pAllocator, VkSwapchainKHR* pSwapchains)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateSwapchainKHR
alias PFN_vkCreateSwapchainKHR = VkResult function(VkDevice device, const(VkSwapchainCreateInfoKHR)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkSwapchainKHR* pSwapchain)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkCreateValidationCacheEXT
alias PFN_vkCreateValidationCacheEXT = VkResult function(VkDevice device, const(VkValidationCacheCreateInfoEXT)* pCreateInfo, const(VkAllocationCallbacks)* pAllocator, VkValidationCacheEXT* pValidationCache)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDebugMarkerSetObjectNameEXT
alias PFN_vkDebugMarkerSetObjectNameEXT = VkResult function(VkDevice device, const(VkDebugMarkerObjectNameInfoEXT)* pNameInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDebugMarkerSetObjectTagEXT
alias PFN_vkDebugMarkerSetObjectTagEXT = VkResult function(VkDevice device, const(VkDebugMarkerObjectTagInfoEXT)* pTagInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDebugReportMessageEXT
alias PFN_vkDebugReportMessageEXT = void function(VkInstance instance, VkDebugReportFlagsEXT flags, VkDebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const(char)* pLayerPrefix, const(char)* pMessage)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyBuffer
alias PFN_vkDestroyBuffer = void function(VkDevice device, VkBuffer buffer, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyBufferView
alias PFN_vkDestroyBufferView = void function(VkDevice device, VkBufferView bufferView, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyCommandPool
alias PFN_vkDestroyCommandPool = void function(VkDevice device, VkCommandPool commandPool, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDebugReportCallbackEXT
alias PFN_vkDestroyDebugReportCallbackEXT = void function(VkInstance instance, VkDebugReportCallbackEXT callback, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDebugUtilsMessengerEXT
alias PFN_vkDestroyDebugUtilsMessengerEXT = void function(VkInstance instance, VkDebugUtilsMessengerEXT messenger, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDescriptorPool
alias PFN_vkDestroyDescriptorPool = void function(VkDevice device, VkDescriptorPool descriptorPool, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDescriptorSetLayout
alias PFN_vkDestroyDescriptorSetLayout = void function(VkDevice device, VkDescriptorSetLayout descriptorSetLayout, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDescriptorUpdateTemplate
alias PFN_vkDestroyDescriptorUpdateTemplate = void function(VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyDevice
alias PFN_vkDestroyDevice = void function(VkDevice device, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyEvent
alias PFN_vkDestroyEvent = void function(VkDevice device, VkEvent event, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyFence
alias PFN_vkDestroyFence = void function(VkDevice device, VkFence fence, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyFramebuffer
alias PFN_vkDestroyFramebuffer = void function(VkDevice device, VkFramebuffer framebuffer, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyImage
alias PFN_vkDestroyImage = void function(VkDevice device, VkImage image, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyImageView
alias PFN_vkDestroyImageView = void function(VkDevice device, VkImageView imageView, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyIndirectCommandsLayoutNVX
alias PFN_vkDestroyIndirectCommandsLayoutNVX = void function(VkDevice device, VkIndirectCommandsLayoutNVX indirectCommandsLayout, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyInstance
alias PFN_vkDestroyInstance = void function(VkInstance instance, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyObjectTableNVX
alias PFN_vkDestroyObjectTableNVX = void function(VkDevice device, VkObjectTableNVX objectTable, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyPipeline
alias PFN_vkDestroyPipeline = void function(VkDevice device, VkPipeline pipeline, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyPipelineCache
alias PFN_vkDestroyPipelineCache = void function(VkDevice device, VkPipelineCache pipelineCache, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyPipelineLayout
alias PFN_vkDestroyPipelineLayout = void function(VkDevice device, VkPipelineLayout pipelineLayout, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyQueryPool
alias PFN_vkDestroyQueryPool = void function(VkDevice device, VkQueryPool queryPool, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyRenderPass
alias PFN_vkDestroyRenderPass = void function(VkDevice device, VkRenderPass renderPass, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroySampler
alias PFN_vkDestroySampler = void function(VkDevice device, VkSampler sampler, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroySamplerYcbcrConversion
alias PFN_vkDestroySamplerYcbcrConversion = void function(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroySemaphore
alias PFN_vkDestroySemaphore = void function(VkDevice device, VkSemaphore semaphore, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyShaderModule
alias PFN_vkDestroyShaderModule = void function(VkDevice device, VkShaderModule shaderModule, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroySurfaceKHR
alias PFN_vkDestroySurfaceKHR = void function(VkInstance instance, VkSurfaceKHR surface, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroySwapchainKHR
alias PFN_vkDestroySwapchainKHR = void function(VkDevice device, VkSwapchainKHR swapchain, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDestroyValidationCacheEXT
alias PFN_vkDestroyValidationCacheEXT = void function(VkDevice device, VkValidationCacheEXT validationCache, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDeviceWaitIdle
alias PFN_vkDeviceWaitIdle = VkResult function(VkDevice device)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkDisplayPowerControlEXT
alias PFN_vkDisplayPowerControlEXT = VkResult function(VkDevice device, VkDisplayKHR display, const(VkDisplayPowerInfoEXT)* pDisplayPowerInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEndCommandBuffer
alias PFN_vkEndCommandBuffer = VkResult function(VkCommandBuffer commandBuffer)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumerateDeviceExtensionProperties
alias PFN_vkEnumerateDeviceExtensionProperties = VkResult function(VkPhysicalDevice physicalDevice, const(char)* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumerateDeviceLayerProperties
alias PFN_vkEnumerateDeviceLayerProperties = VkResult function(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkLayerProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumerateInstanceExtensionProperties
alias PFN_vkEnumerateInstanceExtensionProperties = VkResult function(const(char)* pLayerName, uint32_t* pPropertyCount, VkExtensionProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumerateInstanceLayerProperties
alias PFN_vkEnumerateInstanceLayerProperties = VkResult function(uint32_t* pPropertyCount, VkLayerProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumerateInstanceVersion
alias PFN_vkEnumerateInstanceVersion = VkResult function(uint32_t* pApiVersion)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumeratePhysicalDeviceGroups
alias PFN_vkEnumeratePhysicalDeviceGroups = VkResult function(VkInstance instance, uint32_t* pPhysicalDeviceGroupCount, VkPhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkEnumeratePhysicalDevices
alias PFN_vkEnumeratePhysicalDevices = VkResult function(VkInstance instance, uint32_t* pPhysicalDeviceCount, VkPhysicalDevice* pPhysicalDevices)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkFlushMappedMemoryRanges
alias PFN_vkFlushMappedMemoryRanges = VkResult function(VkDevice device, uint32_t memoryRangeCount, const(VkMappedMemoryRange)* pMemoryRanges)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkFreeCommandBuffers
alias PFN_vkFreeCommandBuffers = void function(VkDevice device, VkCommandPool commandPool, uint32_t commandBufferCount, const(VkCommandBuffer)* pCommandBuffers)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkFreeDescriptorSets
alias PFN_vkFreeDescriptorSets = VkResult function(VkDevice device, VkDescriptorPool descriptorPool, uint32_t descriptorSetCount, const(VkDescriptorSet)* pDescriptorSets)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkFreeMemory
alias PFN_vkFreeMemory = void function(VkDevice device, VkDeviceMemory memory, const(VkAllocationCallbacks)* pAllocator)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetBufferMemoryRequirements
alias PFN_vkGetBufferMemoryRequirements = void function(VkDevice device, VkBuffer buffer, VkMemoryRequirements* pMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetBufferMemoryRequirements2
alias PFN_vkGetBufferMemoryRequirements2 = void function(VkDevice device, const(VkBufferMemoryRequirementsInfo2)* pInfo, VkMemoryRequirements2* pMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDescriptorSetLayoutSupport
alias PFN_vkGetDescriptorSetLayoutSupport = void function(VkDevice device, const(VkDescriptorSetLayoutCreateInfo)* pCreateInfo, VkDescriptorSetLayoutSupport* pSupport)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceGroupPeerMemoryFeatures
alias PFN_vkGetDeviceGroupPeerMemoryFeatures = void function(VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, VkPeerMemoryFeatureFlags* pPeerMemoryFeatures)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceGroupPresentCapabilitiesKHR
alias PFN_vkGetDeviceGroupPresentCapabilitiesKHR = VkResult function(VkDevice device, VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceGroupSurfacePresentModesKHR
alias PFN_vkGetDeviceGroupSurfacePresentModesKHR = VkResult function(VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR* pModes)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceMemoryCommitment
alias PFN_vkGetDeviceMemoryCommitment = void function(VkDevice device, VkDeviceMemory memory, VkDeviceSize* pCommittedMemoryInBytes)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceProcAddr
alias PFN_vkGetDeviceProcAddr = PFN_vkVoidFunction function(VkDevice device, const(char)* pName)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceQueue
alias PFN_vkGetDeviceQueue = void function(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDeviceQueue2
alias PFN_vkGetDeviceQueue2 = void function(VkDevice device, const(VkDeviceQueueInfo2)* pQueueInfo, VkQueue* pQueue)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDisplayModePropertiesKHR
alias PFN_vkGetDisplayModePropertiesKHR = VkResult function(VkPhysicalDevice physicalDevice, VkDisplayKHR display, uint32_t* pPropertyCount, VkDisplayModePropertiesKHR* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDisplayPlaneCapabilitiesKHR
alias PFN_vkGetDisplayPlaneCapabilitiesKHR = VkResult function(VkPhysicalDevice physicalDevice, VkDisplayModeKHR mode, uint32_t planeIndex, VkDisplayPlaneCapabilitiesKHR* pCapabilities)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetDisplayPlaneSupportedDisplaysKHR
alias PFN_vkGetDisplayPlaneSupportedDisplaysKHR = VkResult function(VkPhysicalDevice physicalDevice, uint32_t planeIndex, uint32_t* pDisplayCount, VkDisplayKHR* pDisplays)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetEventStatus
alias PFN_vkGetEventStatus = VkResult function(VkDevice device, VkEvent event)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetFenceFdKHR
alias PFN_vkGetFenceFdKHR = VkResult function(VkDevice device, const(VkFenceGetFdInfoKHR)* pGetFdInfo, int* pFd)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetFenceStatus
alias PFN_vkGetFenceStatus = VkResult function(VkDevice device, VkFence fence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetImageMemoryRequirements
alias PFN_vkGetImageMemoryRequirements = void function(VkDevice device, VkImage image, VkMemoryRequirements* pMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetImageMemoryRequirements2
alias PFN_vkGetImageMemoryRequirements2 = void function(VkDevice device, const(VkImageMemoryRequirementsInfo2)* pInfo, VkMemoryRequirements2* pMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetImageSparseMemoryRequirements
alias PFN_vkGetImageSparseMemoryRequirements = void function(VkDevice device, VkImage image, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements* pSparseMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetImageSparseMemoryRequirements2
alias PFN_vkGetImageSparseMemoryRequirements2 = void function(VkDevice device, const(VkImageSparseMemoryRequirementsInfo2)* pInfo, uint32_t* pSparseMemoryRequirementCount, VkSparseImageMemoryRequirements2* pSparseMemoryRequirements)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetImageSubresourceLayout
alias PFN_vkGetImageSubresourceLayout = void function(VkDevice device, VkImage image, const(VkImageSubresource)* pSubresource, VkSubresourceLayout* pLayout)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetInstanceProcAddr
alias PFN_vkGetInstanceProcAddr = PFN_vkVoidFunction function(VkInstance instance, const(char)* pName)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetMemoryFdKHR
alias PFN_vkGetMemoryFdKHR = VkResult function(VkDevice device, const(VkMemoryGetFdInfoKHR)* pGetFdInfo, int* pFd)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetMemoryFdPropertiesKHR
alias PFN_vkGetMemoryFdPropertiesKHR = VkResult function(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, int fd, VkMemoryFdPropertiesKHR* pMemoryFdProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetMemoryHostPointerPropertiesEXT
alias PFN_vkGetMemoryHostPointerPropertiesEXT = VkResult function(VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, const(void)* pHostPointer, VkMemoryHostPointerPropertiesEXT* pMemoryHostPointerProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPastPresentationTimingGOOGLE
alias PFN_vkGetPastPresentationTimingGOOGLE = VkResult function(VkDevice device, VkSwapchainKHR swapchain, uint32_t* pPresentationTimingCount, VkPastPresentationTimingGOOGLE* pPresentationTimings)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR
alias PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR = VkResult function(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPlanePropertiesKHR* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceDisplayPropertiesKHR
alias PFN_vkGetPhysicalDeviceDisplayPropertiesKHR = VkResult function(VkPhysicalDevice physicalDevice, uint32_t* pPropertyCount, VkDisplayPropertiesKHR* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceExternalBufferProperties
alias PFN_vkGetPhysicalDeviceExternalBufferProperties = void function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceExternalBufferInfo)* pExternalBufferInfo, VkExternalBufferProperties* pExternalBufferProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceExternalFenceProperties
alias PFN_vkGetPhysicalDeviceExternalFenceProperties = void function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceExternalFenceInfo)* pExternalFenceInfo, VkExternalFenceProperties* pExternalFenceProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV
alias PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV = VkResult function(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkExternalMemoryHandleTypeFlagsNV externalHandleType, VkExternalImageFormatPropertiesNV* pExternalImageFormatProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceExternalSemaphoreProperties
alias PFN_vkGetPhysicalDeviceExternalSemaphoreProperties = void function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceExternalSemaphoreInfo)* pExternalSemaphoreInfo, VkExternalSemaphoreProperties* pExternalSemaphoreProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceFeatures
alias PFN_vkGetPhysicalDeviceFeatures = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures* pFeatures)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceFeatures2
alias PFN_vkGetPhysicalDeviceFeatures2 = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceFeatures2* pFeatures)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceFormatProperties
alias PFN_vkGetPhysicalDeviceFormatProperties = void function(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties* pFormatProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceFormatProperties2
alias PFN_vkGetPhysicalDeviceFormatProperties2 = void function(VkPhysicalDevice physicalDevice, VkFormat format, VkFormatProperties2* pFormatProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX
alias PFN_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX = void function(VkPhysicalDevice physicalDevice, VkDeviceGeneratedCommandsFeaturesNVX* pFeatures, VkDeviceGeneratedCommandsLimitsNVX* pLimits)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceImageFormatProperties
alias PFN_vkGetPhysicalDeviceImageFormatProperties = VkResult function(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceImageFormatProperties2
alias PFN_vkGetPhysicalDeviceImageFormatProperties2 = VkResult function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceImageFormatInfo2)* pImageFormatInfo, VkImageFormatProperties2* pImageFormatProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceMemoryProperties
alias PFN_vkGetPhysicalDeviceMemoryProperties = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties* pMemoryProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceMemoryProperties2
alias PFN_vkGetPhysicalDeviceMemoryProperties2 = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceMemoryProperties2* pMemoryProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT
alias PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT = void function(VkPhysicalDevice physicalDevice, VkSampleCountFlagBits samples, VkMultisamplePropertiesEXT* pMultisampleProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDevicePresentRectanglesKHR
alias PFN_vkGetPhysicalDevicePresentRectanglesKHR = VkResult function(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pRectCount, VkRect2D* pRects)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceProperties
alias PFN_vkGetPhysicalDeviceProperties = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceProperties2
alias PFN_vkGetPhysicalDeviceProperties2 = void function(VkPhysicalDevice physicalDevice, VkPhysicalDeviceProperties2* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceQueueFamilyProperties
alias PFN_vkGetPhysicalDeviceQueueFamilyProperties = void function(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties* pQueueFamilyProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceQueueFamilyProperties2
alias PFN_vkGetPhysicalDeviceQueueFamilyProperties2 = void function(VkPhysicalDevice physicalDevice, uint32_t* pQueueFamilyPropertyCount, VkQueueFamilyProperties2* pQueueFamilyProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSparseImageFormatProperties
alias PFN_vkGetPhysicalDeviceSparseImageFormatProperties = void function(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkSampleCountFlagBits samples, VkImageUsageFlags usage, VkImageTiling tiling, uint32_t* pPropertyCount, VkSparseImageFormatProperties* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSparseImageFormatProperties2
alias PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 = void function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceSparseImageFormatInfo2)* pFormatInfo, uint32_t* pPropertyCount, VkSparseImageFormatProperties2* pProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT
alias PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT = VkResult function(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilities2EXT* pSurfaceCapabilities)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR
alias PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR = VkResult function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceSurfaceInfo2KHR)* pSurfaceInfo, VkSurfaceCapabilities2KHR* pSurfaceCapabilities)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR
alias PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR = VkResult function(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, VkSurfaceCapabilitiesKHR* pSurfaceCapabilities)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceFormats2KHR
alias PFN_vkGetPhysicalDeviceSurfaceFormats2KHR = VkResult function(VkPhysicalDevice physicalDevice, const(VkPhysicalDeviceSurfaceInfo2KHR)* pSurfaceInfo, uint32_t* pSurfaceFormatCount, VkSurfaceFormat2KHR* pSurfaceFormats)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceFormatsKHR
alias PFN_vkGetPhysicalDeviceSurfaceFormatsKHR = VkResult function(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pSurfaceFormatCount, VkSurfaceFormatKHR* pSurfaceFormats)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfacePresentModesKHR
alias PFN_vkGetPhysicalDeviceSurfacePresentModesKHR = VkResult function(VkPhysicalDevice physicalDevice, VkSurfaceKHR surface, uint32_t* pPresentModeCount, VkPresentModeKHR* pPresentModes)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPhysicalDeviceSurfaceSupportKHR
alias PFN_vkGetPhysicalDeviceSurfaceSupportKHR = VkResult function(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, VkSurfaceKHR surface, VkBool32* pSupported)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetPipelineCacheData
alias PFN_vkGetPipelineCacheData = VkResult function(VkDevice device, VkPipelineCache pipelineCache, size_t* pDataSize, void* pData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetQueryPoolResults
alias PFN_vkGetQueryPoolResults = VkResult function(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, uint32_t queryCount, size_t dataSize, void* pData, VkDeviceSize stride, VkQueryResultFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetRefreshCycleDurationGOOGLE
alias PFN_vkGetRefreshCycleDurationGOOGLE = VkResult function(VkDevice device, VkSwapchainKHR swapchain, VkRefreshCycleDurationGOOGLE* pDisplayTimingProperties)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetRenderAreaGranularity
alias PFN_vkGetRenderAreaGranularity = void function(VkDevice device, VkRenderPass renderPass, VkExtent2D* pGranularity)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetSemaphoreFdKHR
alias PFN_vkGetSemaphoreFdKHR = VkResult function(VkDevice device, const(VkSemaphoreGetFdInfoKHR)* pGetFdInfo, int* pFd)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetShaderInfoAMD
alias PFN_vkGetShaderInfoAMD = VkResult function(VkDevice device, VkPipeline pipeline, VkShaderStageFlagBits shaderStage, VkShaderInfoTypeAMD infoType, size_t* pInfoSize, void* pInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetSwapchainCounterEXT
alias PFN_vkGetSwapchainCounterEXT = VkResult function(VkDevice device, VkSwapchainKHR swapchain, VkSurfaceCounterFlagBitsEXT counter, uint64_t* pCounterValue)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetSwapchainImagesKHR
alias PFN_vkGetSwapchainImagesKHR = VkResult function(VkDevice device, VkSwapchainKHR swapchain, uint32_t* pSwapchainImageCount, VkImage* pSwapchainImages)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetSwapchainStatusKHR
alias PFN_vkGetSwapchainStatusKHR = VkResult function(VkDevice device, VkSwapchainKHR swapchain)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkGetValidationCacheDataEXT
alias PFN_vkGetValidationCacheDataEXT = VkResult function(VkDevice device, VkValidationCacheEXT validationCache, size_t* pDataSize, void* pData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkImportFenceFdKHR
alias PFN_vkImportFenceFdKHR = VkResult function(VkDevice device, const(VkImportFenceFdInfoKHR)* pImportFenceFdInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkImportSemaphoreFdKHR
alias PFN_vkImportSemaphoreFdKHR = VkResult function(VkDevice device, const(VkImportSemaphoreFdInfoKHR)* pImportSemaphoreFdInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkInvalidateMappedMemoryRanges
alias PFN_vkInvalidateMappedMemoryRanges = VkResult function(VkDevice device, uint32_t memoryRangeCount, const(VkMappedMemoryRange)* pMemoryRanges)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkMapMemory
alias PFN_vkMapMemory = VkResult function(VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, VkDeviceSize size, VkMemoryMapFlags flags, void** ppData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkMergePipelineCaches
alias PFN_vkMergePipelineCaches = VkResult function(VkDevice device, VkPipelineCache dstCache, uint32_t srcCacheCount, const(VkPipelineCache)* pSrcCaches)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkMergeValidationCachesEXT
alias PFN_vkMergeValidationCachesEXT = VkResult function(VkDevice device, VkValidationCacheEXT dstCache, uint32_t srcCacheCount, const(VkValidationCacheEXT)* pSrcCaches)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueBeginDebugUtilsLabelEXT
alias PFN_vkQueueBeginDebugUtilsLabelEXT = void function(VkQueue queue, const(VkDebugUtilsLabelEXT)* pLabelInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueBindSparse
alias PFN_vkQueueBindSparse = VkResult function(VkQueue queue, uint32_t bindInfoCount, const(VkBindSparseInfo)* pBindInfo, VkFence fence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueEndDebugUtilsLabelEXT
alias PFN_vkQueueEndDebugUtilsLabelEXT = void function(VkQueue queue)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueInsertDebugUtilsLabelEXT
alias PFN_vkQueueInsertDebugUtilsLabelEXT = void function(VkQueue queue, const(VkDebugUtilsLabelEXT)* pLabelInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueuePresentKHR
alias PFN_vkQueuePresentKHR = VkResult function(VkQueue queue, const(VkPresentInfoKHR)* pPresentInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueSubmit
alias PFN_vkQueueSubmit = VkResult function(VkQueue queue, uint32_t submitCount, const(VkSubmitInfo)* pSubmits, VkFence fence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkQueueWaitIdle
alias PFN_vkQueueWaitIdle = VkResult function(VkQueue queue)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkRegisterDeviceEventEXT
alias PFN_vkRegisterDeviceEventEXT = VkResult function(VkDevice device, const(VkDeviceEventInfoEXT)* pDeviceEventInfo, const(VkAllocationCallbacks)* pAllocator, VkFence* pFence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkRegisterDisplayEventEXT
alias PFN_vkRegisterDisplayEventEXT = VkResult function(VkDevice device, VkDisplayKHR display, const(VkDisplayEventInfoEXT)* pDisplayEventInfo, const(VkAllocationCallbacks)* pAllocator, VkFence* pFence)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkRegisterObjectsNVX
alias PFN_vkRegisterObjectsNVX = VkResult function(VkDevice device, VkObjectTableNVX objectTable, uint32_t objectCount, const(VkObjectTableEntryNVX*)* ppObjectTableEntries, const(uint32_t)* pObjectIndices)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkReleaseDisplayEXT
alias PFN_vkReleaseDisplayEXT = VkResult function(VkPhysicalDevice physicalDevice, VkDisplayKHR display)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkResetCommandBuffer
alias PFN_vkResetCommandBuffer = VkResult function(VkCommandBuffer commandBuffer, VkCommandBufferResetFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkResetCommandPool
alias PFN_vkResetCommandPool = VkResult function(VkDevice device, VkCommandPool commandPool, VkCommandPoolResetFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkResetDescriptorPool
alias PFN_vkResetDescriptorPool = VkResult function(VkDevice device, VkDescriptorPool descriptorPool, VkDescriptorPoolResetFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkResetEvent
alias PFN_vkResetEvent = VkResult function(VkDevice device, VkEvent event)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkResetFences
alias PFN_vkResetFences = VkResult function(VkDevice device, uint32_t fenceCount, const(VkFence)* pFences)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkSetDebugUtilsObjectNameEXT
alias PFN_vkSetDebugUtilsObjectNameEXT = VkResult function(VkDevice device, const(VkDebugUtilsObjectNameInfoEXT)* pNameInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkSetDebugUtilsObjectTagEXT
alias PFN_vkSetDebugUtilsObjectTagEXT = VkResult function(VkDevice device, const(VkDebugUtilsObjectTagInfoEXT)* pTagInfo)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkSetEvent
alias PFN_vkSetEvent = VkResult function(VkDevice device, VkEvent event)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkSetHdrMetadataEXT
alias PFN_vkSetHdrMetadataEXT = void function(VkDevice device, uint32_t swapchainCount, const(VkSwapchainKHR)* pSwapchains, const(VkHdrMetadataEXT)* pMetadata)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkSubmitDebugUtilsMessageEXT
alias PFN_vkSubmitDebugUtilsMessageEXT = void function(VkInstance instance, VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VkDebugUtilsMessageTypeFlagsEXT messageTypes, const(VkDebugUtilsMessengerCallbackDataEXT)* pCallbackData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkTrimCommandPool
alias PFN_vkTrimCommandPool = void function(VkDevice device, VkCommandPool commandPool, VkCommandPoolTrimFlags flags)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkUnmapMemory
alias PFN_vkUnmapMemory = void function(VkDevice device, VkDeviceMemory memory)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkUnregisterObjectsNVX
alias PFN_vkUnregisterObjectsNVX = VkResult function(VkDevice device, VkObjectTableNVX objectTable, uint32_t objectCount, const(VkObjectEntryTypeNVX)* pObjectEntryTypes, const(uint32_t)* pObjectIndices)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkUpdateDescriptorSetWithTemplate
alias PFN_vkUpdateDescriptorSetWithTemplate = void function(VkDevice device, VkDescriptorSet descriptorSet, VkDescriptorUpdateTemplate descriptorUpdateTemplate, const(void)* pData)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkUpdateDescriptorSets
alias PFN_vkUpdateDescriptorSets = void function(VkDevice device, uint32_t descriptorWriteCount, const(VkWriteDescriptorSet)* pDescriptorWrites, uint32_t descriptorCopyCount, const(VkCopyDescriptorSet)* pDescriptorCopies)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
PFN_vkWaitForFences
alias PFN_vkWaitForFences = VkResult function(VkDevice device, uint32_t fenceCount, const(VkFence)* pFences, VkBool32 waitAll, uint64_t timeout)
Undocumented in source but is binding to an external library. You might be able to learn more by searching the web for its name.
vkBindBufferMemory2KHR
alias vkBindBufferMemory2KHR = vkBindBufferMemory2
Undocumented in source.
vkBindImageMemory2KHR
alias vkBindImageMemory2KHR = vkBindImageMemory2
Undocumented in source.
vkCmdDispatchBaseKHR
alias vkCmdDispatchBaseKHR = vkCmdDispatchBase
Undocumented in source.
vkCmdSetDeviceMaskKHR
alias vkCmdSetDeviceMaskKHR = vkCmdSetDeviceMask
Undocumented in source.
vkCreateDescriptorUpdateTemplateKHR
alias vkCreateDescriptorUpdateTemplateKHR = vkCreateDescriptorUpdateTemplate
Undocumented in source.
vkCreateSamplerYcbcrConversionKHR
alias vkCreateSamplerYcbcrConversionKHR = vkCreateSamplerYcbcrConversion
Undocumented in source.
vkDestroyDescriptorUpdateTemplateKHR
alias vkDestroyDescriptorUpdateTemplateKHR = vkDestroyDescriptorUpdateTemplate
Undocumented in source.
vkDestroySamplerYcbcrConversionKHR
alias vkDestroySamplerYcbcrConversionKHR = vkDestroySamplerYcbcrConversion
Undocumented in source.
vkEnumeratePhysicalDeviceGroupsKHR
alias vkEnumeratePhysicalDeviceGroupsKHR = vkEnumeratePhysicalDeviceGroups
Undocumented in source.
vkGetBufferMemoryRequirements2KHR
alias vkGetBufferMemoryRequirements2KHR = vkGetBufferMemoryRequirements2
Undocumented in source.
vkGetDescriptorSetLayoutSupportKHR
alias vkGetDescriptorSetLayoutSupportKHR = vkGetDescriptorSetLayoutSupport
Undocumented in source.
vkGetDeviceGroupPeerMemoryFeaturesKHR
alias vkGetDeviceGroupPeerMemoryFeaturesKHR = vkGetDeviceGroupPeerMemoryFeatures
Undocumented in source.
vkGetImageMemoryRequirements2KHR
alias vkGetImageMemoryRequirements2KHR = vkGetImageMemoryRequirements2
Undocumented in source.
vkGetImageSparseMemoryRequirements2KHR
alias vkGetImageSparseMemoryRequirements2KHR = vkGetImageSparseMemoryRequirements2
Undocumented in source.
vkGetPhysicalDeviceExternalBufferPropertiesKHR
alias vkGetPhysicalDeviceExternalBufferPropertiesKHR = vkGetPhysicalDeviceExternalBufferProperties
Undocumented in source.
vkGetPhysicalDeviceExternalFencePropertiesKHR
alias vkGetPhysicalDeviceExternalFencePropertiesKHR = vkGetPhysicalDeviceExternalFenceProperties
Undocumented in source.
vkGetPhysicalDeviceExternalSemaphorePropertiesKHR
alias vkGetPhysicalDeviceExternalSemaphorePropertiesKHR = vkGetPhysicalDeviceExternalSemaphoreProperties
Undocumented in source.
vkGetPhysicalDeviceFeatures2KHR
alias vkGetPhysicalDeviceFeatures2KHR = vkGetPhysicalDeviceFeatures2
Undocumented in source.
vkGetPhysicalDeviceFormatProperties2KHR
alias vkGetPhysicalDeviceFormatProperties2KHR = vkGetPhysicalDeviceFormatProperties2
Undocumented in source.
vkGetPhysicalDeviceImageFormatProperties2KHR
alias vkGetPhysicalDeviceImageFormatProperties2KHR = vkGetPhysicalDeviceImageFormatProperties2
Undocumented in source.
vkGetPhysicalDeviceMemoryProperties2KHR
alias vkGetPhysicalDeviceMemoryProperties2KHR = vkGetPhysicalDeviceMemoryProperties2
Undocumented in source.
vkGetPhysicalDeviceProperties2KHR
alias vkGetPhysicalDeviceProperties2KHR = vkGetPhysicalDeviceProperties2
Undocumented in source.
vkGetPhysicalDeviceQueueFamilyProperties2KHR
alias vkGetPhysicalDeviceQueueFamilyProperties2KHR = vkGetPhysicalDeviceQueueFamilyProperties2
Undocumented in source.
vkGetPhysicalDeviceSparseImageFormatProperties2KHR
alias vkGetPhysicalDeviceSparseImageFormatProperties2KHR = vkGetPhysicalDeviceSparseImageFormatProperties2
Undocumented in source.
vkTrimCommandPoolKHR
alias vkTrimCommandPoolKHR = vkTrimCommandPool
Undocumented in source.
vkUpdateDescriptorSetWithTemplateKHR
alias vkUpdateDescriptorSetWithTemplateKHR = vkUpdateDescriptorSetWithTemplate
Undocumented in source.

Functions

loadDeviceLevelFunctions
void loadDeviceLevelFunctions(VkInstance instance)

with a valid VkInstance call this function to retrieve VkDevice, VkQueue and VkCommandBuffer related functions the functions call indirectly through the VkInstance and will be internally dispatched by the implementation use loadDeviceLevelFunctions( VkDevice device ) bellow to avoid this indirection and get the pointers directly form a VkDevice

loadDeviceLevelFunctions
void loadDeviceLevelFunctions(VkDevice device)

with a valid VkDevice call this function to retrieve VkDevice, VkQueue and VkCommandBuffer related functions the functions call directly VkDevice and related resources and can be retrieved for one and only one VkDevice calling this function again with another VkDevices will overwrite the __gshared functions retrieved previously see module erupted.dispatch_device if multiple VkDevices will be used

loadGlobalLevelFunctions
void loadGlobalLevelFunctions(PFN_vkGetInstanceProcAddr getInstanceProcAddr)

sets vkCreateInstance function pointer and acquires basic functions to retrieve information about the implementation and create an instance: vkEnumerateInstanceExtensionProperties, vkEnumerateInstanceLayerProperties, vkCreateInstance

loadInstanceLevelFunctions
void loadInstanceLevelFunctions(VkInstance instance)

with a valid VkInstance call this function to retrieve additional VkInstance, VkPhysicalDevice, ... related functions

Static variables

vkAcquireNextImage2KHR
PFN_vkAcquireNextImage2KHR vkAcquireNextImage2KHR;
Undocumented in source.
vkAcquireNextImageKHR
PFN_vkAcquireNextImageKHR vkAcquireNextImageKHR;
Undocumented in source.
vkAllocateCommandBuffers
PFN_vkAllocateCommandBuffers vkAllocateCommandBuffers;
Undocumented in source.
vkAllocateDescriptorSets
PFN_vkAllocateDescriptorSets vkAllocateDescriptorSets;
Undocumented in source.
vkAllocateMemory
PFN_vkAllocateMemory vkAllocateMemory;
Undocumented in source.
vkBeginCommandBuffer
PFN_vkBeginCommandBuffer vkBeginCommandBuffer;
Undocumented in source.
vkBindBufferMemory
PFN_vkBindBufferMemory vkBindBufferMemory;
Undocumented in source.
vkBindBufferMemory2
PFN_vkBindBufferMemory2 vkBindBufferMemory2;
Undocumented in source.
vkBindImageMemory
PFN_vkBindImageMemory vkBindImageMemory;
Undocumented in source.
vkBindImageMemory2
PFN_vkBindImageMemory2 vkBindImageMemory2;
Undocumented in source.
vkCmdBeginDebugUtilsLabelEXT
PFN_vkCmdBeginDebugUtilsLabelEXT vkCmdBeginDebugUtilsLabelEXT;
Undocumented in source.
vkCmdBeginQuery
PFN_vkCmdBeginQuery vkCmdBeginQuery;
Undocumented in source.
vkCmdBeginRenderPass
PFN_vkCmdBeginRenderPass vkCmdBeginRenderPass;
Undocumented in source.
vkCmdBindDescriptorSets
PFN_vkCmdBindDescriptorSets vkCmdBindDescriptorSets;
Undocumented in source.
vkCmdBindIndexBuffer
PFN_vkCmdBindIndexBuffer vkCmdBindIndexBuffer;
Undocumented in source.
vkCmdBindPipeline
PFN_vkCmdBindPipeline vkCmdBindPipeline;
Undocumented in source.
vkCmdBindVertexBuffers
PFN_vkCmdBindVertexBuffers vkCmdBindVertexBuffers;
Undocumented in source.
vkCmdBlitImage
PFN_vkCmdBlitImage vkCmdBlitImage;
Undocumented in source.
vkCmdClearAttachments
PFN_vkCmdClearAttachments vkCmdClearAttachments;
Undocumented in source.
vkCmdClearColorImage
PFN_vkCmdClearColorImage vkCmdClearColorImage;
Undocumented in source.
vkCmdClearDepthStencilImage
PFN_vkCmdClearDepthStencilImage vkCmdClearDepthStencilImage;
Undocumented in source.
vkCmdCopyBuffer
PFN_vkCmdCopyBuffer vkCmdCopyBuffer;
Undocumented in source.
vkCmdCopyBufferToImage
PFN_vkCmdCopyBufferToImage vkCmdCopyBufferToImage;
Undocumented in source.
vkCmdCopyImage
PFN_vkCmdCopyImage vkCmdCopyImage;
Undocumented in source.
vkCmdCopyImageToBuffer
PFN_vkCmdCopyImageToBuffer vkCmdCopyImageToBuffer;
Undocumented in source.
vkCmdCopyQueryPoolResults
PFN_vkCmdCopyQueryPoolResults vkCmdCopyQueryPoolResults;
Undocumented in source.
vkCmdDebugMarkerBeginEXT
PFN_vkCmdDebugMarkerBeginEXT vkCmdDebugMarkerBeginEXT;
Undocumented in source.
vkCmdDebugMarkerEndEXT
PFN_vkCmdDebugMarkerEndEXT vkCmdDebugMarkerEndEXT;
Undocumented in source.
vkCmdDebugMarkerInsertEXT
PFN_vkCmdDebugMarkerInsertEXT vkCmdDebugMarkerInsertEXT;
Undocumented in source.
vkCmdDispatch
PFN_vkCmdDispatch vkCmdDispatch;
Undocumented in source.
vkCmdDispatchBase
PFN_vkCmdDispatchBase vkCmdDispatchBase;
Undocumented in source.
vkCmdDispatchIndirect
PFN_vkCmdDispatchIndirect vkCmdDispatchIndirect;
Undocumented in source.
vkCmdDraw
PFN_vkCmdDraw vkCmdDraw;
Undocumented in source.
vkCmdDrawIndexed
PFN_vkCmdDrawIndexed vkCmdDrawIndexed;
Undocumented in source.
vkCmdDrawIndexedIndirect
PFN_vkCmdDrawIndexedIndirect vkCmdDrawIndexedIndirect;
Undocumented in source.
vkCmdDrawIndexedIndirectCountAMD
PFN_vkCmdDrawIndexedIndirectCountAMD vkCmdDrawIndexedIndirectCountAMD;
Undocumented in source.
vkCmdDrawIndirect
PFN_vkCmdDrawIndirect vkCmdDrawIndirect;
Undocumented in source.
vkCmdDrawIndirectCountAMD
PFN_vkCmdDrawIndirectCountAMD vkCmdDrawIndirectCountAMD;
Undocumented in source.
vkCmdEndDebugUtilsLabelEXT
PFN_vkCmdEndDebugUtilsLabelEXT vkCmdEndDebugUtilsLabelEXT;
Undocumented in source.
vkCmdEndQuery
PFN_vkCmdEndQuery vkCmdEndQuery;
Undocumented in source.
vkCmdEndRenderPass
PFN_vkCmdEndRenderPass vkCmdEndRenderPass;
Undocumented in source.
vkCmdExecuteCommands
PFN_vkCmdExecuteCommands vkCmdExecuteCommands;
Undocumented in source.
vkCmdFillBuffer
PFN_vkCmdFillBuffer vkCmdFillBuffer;
Undocumented in source.
vkCmdInsertDebugUtilsLabelEXT
PFN_vkCmdInsertDebugUtilsLabelEXT vkCmdInsertDebugUtilsLabelEXT;
Undocumented in source.
vkCmdNextSubpass
PFN_vkCmdNextSubpass vkCmdNextSubpass;
Undocumented in source.
vkCmdPipelineBarrier
PFN_vkCmdPipelineBarrier vkCmdPipelineBarrier;
Undocumented in source.
vkCmdProcessCommandsNVX
PFN_vkCmdProcessCommandsNVX vkCmdProcessCommandsNVX;
Undocumented in source.
vkCmdPushConstants
PFN_vkCmdPushConstants vkCmdPushConstants;
Undocumented in source.
vkCmdPushDescriptorSetKHR
PFN_vkCmdPushDescriptorSetKHR vkCmdPushDescriptorSetKHR;
Undocumented in source.
vkCmdPushDescriptorSetWithTemplateKHR
PFN_vkCmdPushDescriptorSetWithTemplateKHR vkCmdPushDescriptorSetWithTemplateKHR;
Undocumented in source.
vkCmdReserveSpaceForCommandsNVX
PFN_vkCmdReserveSpaceForCommandsNVX vkCmdReserveSpaceForCommandsNVX;
Undocumented in source.
vkCmdResetEvent
PFN_vkCmdResetEvent vkCmdResetEvent;
Undocumented in source.
vkCmdResetQueryPool
PFN_vkCmdResetQueryPool vkCmdResetQueryPool;
Undocumented in source.
vkCmdResolveImage
PFN_vkCmdResolveImage vkCmdResolveImage;
Undocumented in source.
vkCmdSetBlendConstants
PFN_vkCmdSetBlendConstants vkCmdSetBlendConstants;
Undocumented in source.
vkCmdSetDepthBias
PFN_vkCmdSetDepthBias vkCmdSetDepthBias;
Undocumented in source.
vkCmdSetDepthBounds
PFN_vkCmdSetDepthBounds vkCmdSetDepthBounds;
Undocumented in source.
vkCmdSetDeviceMask
PFN_vkCmdSetDeviceMask vkCmdSetDeviceMask;
Undocumented in source.
vkCmdSetDiscardRectangleEXT
PFN_vkCmdSetDiscardRectangleEXT vkCmdSetDiscardRectangleEXT;
Undocumented in source.
vkCmdSetEvent
PFN_vkCmdSetEvent vkCmdSetEvent;
Undocumented in source.
vkCmdSetLineWidth
PFN_vkCmdSetLineWidth vkCmdSetLineWidth;
Undocumented in source.
vkCmdSetSampleLocationsEXT
PFN_vkCmdSetSampleLocationsEXT vkCmdSetSampleLocationsEXT;
Undocumented in source.
vkCmdSetScissor
PFN_vkCmdSetScissor vkCmdSetScissor;
Undocumented in source.
vkCmdSetStencilCompareMask
PFN_vkCmdSetStencilCompareMask vkCmdSetStencilCompareMask;
Undocumented in source.
vkCmdSetStencilReference
PFN_vkCmdSetStencilReference vkCmdSetStencilReference;
Undocumented in source.
vkCmdSetStencilWriteMask
PFN_vkCmdSetStencilWriteMask vkCmdSetStencilWriteMask;
Undocumented in source.
vkCmdSetViewport
PFN_vkCmdSetViewport vkCmdSetViewport;
Undocumented in source.
vkCmdSetViewportWScalingNV
PFN_vkCmdSetViewportWScalingNV vkCmdSetViewportWScalingNV;
Undocumented in source.
vkCmdUpdateBuffer
PFN_vkCmdUpdateBuffer vkCmdUpdateBuffer;
Undocumented in source.
vkCmdWaitEvents
PFN_vkCmdWaitEvents vkCmdWaitEvents;
Undocumented in source.
vkCmdWriteBufferMarkerAMD
PFN_vkCmdWriteBufferMarkerAMD vkCmdWriteBufferMarkerAMD;
Undocumented in source.
vkCmdWriteTimestamp
PFN_vkCmdWriteTimestamp vkCmdWriteTimestamp;
Undocumented in source.
vkCreateBuffer
PFN_vkCreateBuffer vkCreateBuffer;
Undocumented in source.
vkCreateBufferView
PFN_vkCreateBufferView vkCreateBufferView;
Undocumented in source.
vkCreateCommandPool
PFN_vkCreateCommandPool vkCreateCommandPool;
Undocumented in source.
vkCreateComputePipelines
PFN_vkCreateComputePipelines vkCreateComputePipelines;
Undocumented in source.
vkCreateDebugReportCallbackEXT
PFN_vkCreateDebugReportCallbackEXT vkCreateDebugReportCallbackEXT;
Undocumented in source.
vkCreateDebugUtilsMessengerEXT
PFN_vkCreateDebugUtilsMessengerEXT vkCreateDebugUtilsMessengerEXT;
Undocumented in source.
vkCreateDescriptorPool
PFN_vkCreateDescriptorPool vkCreateDescriptorPool;
Undocumented in source.
vkCreateDescriptorSetLayout
PFN_vkCreateDescriptorSetLayout vkCreateDescriptorSetLayout;
Undocumented in source.
vkCreateDescriptorUpdateTemplate
PFN_vkCreateDescriptorUpdateTemplate vkCreateDescriptorUpdateTemplate;
Undocumented in source.
vkCreateDevice
PFN_vkCreateDevice vkCreateDevice;
Undocumented in source.
vkCreateDisplayModeKHR
PFN_vkCreateDisplayModeKHR vkCreateDisplayModeKHR;
Undocumented in source.
vkCreateDisplayPlaneSurfaceKHR
PFN_vkCreateDisplayPlaneSurfaceKHR vkCreateDisplayPlaneSurfaceKHR;
Undocumented in source.
vkCreateEvent
PFN_vkCreateEvent vkCreateEvent;
Undocumented in source.
vkCreateFence
PFN_vkCreateFence vkCreateFence;
Undocumented in source.
vkCreateFramebuffer
PFN_vkCreateFramebuffer vkCreateFramebuffer;
Undocumented in source.
vkCreateGraphicsPipelines
PFN_vkCreateGraphicsPipelines vkCreateGraphicsPipelines;
Undocumented in source.
vkCreateImage
PFN_vkCreateImage vkCreateImage;
Undocumented in source.
vkCreateImageView
PFN_vkCreateImageView vkCreateImageView;
Undocumented in source.
vkCreateIndirectCommandsLayoutNVX
PFN_vkCreateIndirectCommandsLayoutNVX vkCreateIndirectCommandsLayoutNVX;
Undocumented in source.
vkCreateInstance
PFN_vkCreateInstance vkCreateInstance;

function declarations

vkCreateObjectTableNVX
PFN_vkCreateObjectTableNVX vkCreateObjectTableNVX;
Undocumented in source.
vkCreatePipelineCache
PFN_vkCreatePipelineCache vkCreatePipelineCache;
Undocumented in source.
vkCreatePipelineLayout
PFN_vkCreatePipelineLayout vkCreatePipelineLayout;
Undocumented in source.
vkCreateQueryPool
PFN_vkCreateQueryPool vkCreateQueryPool;
Undocumented in source.
vkCreateRenderPass
PFN_vkCreateRenderPass vkCreateRenderPass;
Undocumented in source.
vkCreateSampler
PFN_vkCreateSampler vkCreateSampler;
Undocumented in source.
vkCreateSamplerYcbcrConversion
PFN_vkCreateSamplerYcbcrConversion vkCreateSamplerYcbcrConversion;
Undocumented in source.
vkCreateSemaphore
PFN_vkCreateSemaphore vkCreateSemaphore;
Undocumented in source.
vkCreateShaderModule
PFN_vkCreateShaderModule vkCreateShaderModule;
Undocumented in source.
vkCreateSharedSwapchainsKHR
PFN_vkCreateSharedSwapchainsKHR vkCreateSharedSwapchainsKHR;
Undocumented in source.
vkCreateSwapchainKHR
PFN_vkCreateSwapchainKHR vkCreateSwapchainKHR;
Undocumented in source.
vkCreateValidationCacheEXT
PFN_vkCreateValidationCacheEXT vkCreateValidationCacheEXT;
Undocumented in source.
vkDebugMarkerSetObjectNameEXT
PFN_vkDebugMarkerSetObjectNameEXT vkDebugMarkerSetObjectNameEXT;
Undocumented in source.
vkDebugMarkerSetObjectTagEXT
PFN_vkDebugMarkerSetObjectTagEXT vkDebugMarkerSetObjectTagEXT;
Undocumented in source.
vkDebugReportMessageEXT
PFN_vkDebugReportMessageEXT vkDebugReportMessageEXT;
Undocumented in source.
vkDestroyBuffer
PFN_vkDestroyBuffer vkDestroyBuffer;
Undocumented in source.
vkDestroyBufferView
PFN_vkDestroyBufferView vkDestroyBufferView;
Undocumented in source.
vkDestroyCommandPool
PFN_vkDestroyCommandPool vkDestroyCommandPool;
Undocumented in source.
vkDestroyDebugReportCallbackEXT
PFN_vkDestroyDebugReportCallbackEXT vkDestroyDebugReportCallbackEXT;
Undocumented in source.
vkDestroyDebugUtilsMessengerEXT
PFN_vkDestroyDebugUtilsMessengerEXT vkDestroyDebugUtilsMessengerEXT;
Undocumented in source.
vkDestroyDescriptorPool
PFN_vkDestroyDescriptorPool vkDestroyDescriptorPool;
Undocumented in source.
vkDestroyDescriptorSetLayout
PFN_vkDestroyDescriptorSetLayout vkDestroyDescriptorSetLayout;
Undocumented in source.
vkDestroyDescriptorUpdateTemplate
PFN_vkDestroyDescriptorUpdateTemplate vkDestroyDescriptorUpdateTemplate;
Undocumented in source.
vkDestroyDevice
PFN_vkDestroyDevice vkDestroyDevice;
Undocumented in source.
vkDestroyEvent
PFN_vkDestroyEvent vkDestroyEvent;
Undocumented in source.
vkDestroyFence
PFN_vkDestroyFence vkDestroyFence;
Undocumented in source.
vkDestroyFramebuffer
PFN_vkDestroyFramebuffer vkDestroyFramebuffer;
Undocumented in source.
vkDestroyImage
PFN_vkDestroyImage vkDestroyImage;
Undocumented in source.
vkDestroyImageView
PFN_vkDestroyImageView vkDestroyImageView;
Undocumented in source.
vkDestroyIndirectCommandsLayoutNVX
PFN_vkDestroyIndirectCommandsLayoutNVX vkDestroyIndirectCommandsLayoutNVX;
Undocumented in source.
vkDestroyInstance
PFN_vkDestroyInstance vkDestroyInstance;
Undocumented in source.
vkDestroyObjectTableNVX
PFN_vkDestroyObjectTableNVX vkDestroyObjectTableNVX;
Undocumented in source.
vkDestroyPipeline
PFN_vkDestroyPipeline vkDestroyPipeline;
Undocumented in source.
vkDestroyPipelineCache
PFN_vkDestroyPipelineCache vkDestroyPipelineCache;
Undocumented in source.
vkDestroyPipelineLayout
PFN_vkDestroyPipelineLayout vkDestroyPipelineLayout;
Undocumented in source.
vkDestroyQueryPool
PFN_vkDestroyQueryPool vkDestroyQueryPool;
Undocumented in source.
vkDestroyRenderPass
PFN_vkDestroyRenderPass vkDestroyRenderPass;
Undocumented in source.
vkDestroySampler
PFN_vkDestroySampler vkDestroySampler;
Undocumented in source.
vkDestroySamplerYcbcrConversion
PFN_vkDestroySamplerYcbcrConversion vkDestroySamplerYcbcrConversion;
Undocumented in source.
vkDestroySemaphore
PFN_vkDestroySemaphore vkDestroySemaphore;
Undocumented in source.
vkDestroyShaderModule
PFN_vkDestroyShaderModule vkDestroyShaderModule;
Undocumented in source.
vkDestroySurfaceKHR
PFN_vkDestroySurfaceKHR vkDestroySurfaceKHR;
Undocumented in source.
vkDestroySwapchainKHR
PFN_vkDestroySwapchainKHR vkDestroySwapchainKHR;
Undocumented in source.
vkDestroyValidationCacheEXT
PFN_vkDestroyValidationCacheEXT vkDestroyValidationCacheEXT;
Undocumented in source.
vkDeviceWaitIdle
PFN_vkDeviceWaitIdle vkDeviceWaitIdle;
Undocumented in source.
vkDisplayPowerControlEXT
PFN_vkDisplayPowerControlEXT vkDisplayPowerControlEXT;
Undocumented in source.
vkEndCommandBuffer
PFN_vkEndCommandBuffer vkEndCommandBuffer;
Undocumented in source.
vkEnumerateDeviceExtensionProperties
PFN_vkEnumerateDeviceExtensionProperties vkEnumerateDeviceExtensionProperties;
Undocumented in source.
vkEnumerateDeviceLayerProperties
PFN_vkEnumerateDeviceLayerProperties vkEnumerateDeviceLayerProperties;
Undocumented in source.
vkEnumerateInstanceExtensionProperties
PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties;
Undocumented in source.
vkEnumerateInstanceLayerProperties
PFN_vkEnumerateInstanceLayerProperties vkEnumerateInstanceLayerProperties;
Undocumented in source.
vkEnumerateInstanceVersion
PFN_vkEnumerateInstanceVersion vkEnumerateInstanceVersion;
Undocumented in source.
vkEnumeratePhysicalDeviceGroups
PFN_vkEnumeratePhysicalDeviceGroups vkEnumeratePhysicalDeviceGroups;
Undocumented in source.
vkEnumeratePhysicalDevices
PFN_vkEnumeratePhysicalDevices vkEnumeratePhysicalDevices;
Undocumented in source.
vkFlushMappedMemoryRanges
PFN_vkFlushMappedMemoryRanges vkFlushMappedMemoryRanges;
Undocumented in source.
vkFreeCommandBuffers
PFN_vkFreeCommandBuffers vkFreeCommandBuffers;
Undocumented in source.
vkFreeDescriptorSets
PFN_vkFreeDescriptorSets vkFreeDescriptorSets;
Undocumented in source.
vkFreeMemory
PFN_vkFreeMemory vkFreeMemory;
Undocumented in source.
vkGetBufferMemoryRequirements
PFN_vkGetBufferMemoryRequirements vkGetBufferMemoryRequirements;
Undocumented in source.
vkGetBufferMemoryRequirements2
PFN_vkGetBufferMemoryRequirements2 vkGetBufferMemoryRequirements2;
Undocumented in source.
vkGetDescriptorSetLayoutSupport
PFN_vkGetDescriptorSetLayoutSupport vkGetDescriptorSetLayoutSupport;
Undocumented in source.
vkGetDeviceGroupPeerMemoryFeatures
PFN_vkGetDeviceGroupPeerMemoryFeatures vkGetDeviceGroupPeerMemoryFeatures;
Undocumented in source.
vkGetDeviceGroupPresentCapabilitiesKHR
PFN_vkGetDeviceGroupPresentCapabilitiesKHR vkGetDeviceGroupPresentCapabilitiesKHR;
Undocumented in source.
vkGetDeviceGroupSurfacePresentModesKHR
PFN_vkGetDeviceGroupSurfacePresentModesKHR vkGetDeviceGroupSurfacePresentModesKHR;
Undocumented in source.
vkGetDeviceMemoryCommitment
PFN_vkGetDeviceMemoryCommitment vkGetDeviceMemoryCommitment;
Undocumented in source.
vkGetDeviceProcAddr
PFN_vkGetDeviceProcAddr vkGetDeviceProcAddr;
Undocumented in source.
vkGetDeviceQueue
PFN_vkGetDeviceQueue vkGetDeviceQueue;
Undocumented in source.
vkGetDeviceQueue2
PFN_vkGetDeviceQueue2 vkGetDeviceQueue2;
Undocumented in source.
vkGetDisplayModePropertiesKHR
PFN_vkGetDisplayModePropertiesKHR vkGetDisplayModePropertiesKHR;
Undocumented in source.
vkGetDisplayPlaneCapabilitiesKHR
PFN_vkGetDisplayPlaneCapabilitiesKHR vkGetDisplayPlaneCapabilitiesKHR;
Undocumented in source.
vkGetDisplayPlaneSupportedDisplaysKHR
PFN_vkGetDisplayPlaneSupportedDisplaysKHR vkGetDisplayPlaneSupportedDisplaysKHR;
Undocumented in source.
vkGetEventStatus
PFN_vkGetEventStatus vkGetEventStatus;
Undocumented in source.
vkGetFenceFdKHR
PFN_vkGetFenceFdKHR vkGetFenceFdKHR;
Undocumented in source.
vkGetFenceStatus
PFN_vkGetFenceStatus vkGetFenceStatus;
Undocumented in source.
vkGetImageMemoryRequirements
PFN_vkGetImageMemoryRequirements vkGetImageMemoryRequirements;
Undocumented in source.
vkGetImageMemoryRequirements2
PFN_vkGetImageMemoryRequirements2 vkGetImageMemoryRequirements2;
Undocumented in source.
vkGetImageSparseMemoryRequirements
PFN_vkGetImageSparseMemoryRequirements vkGetImageSparseMemoryRequirements;
Undocumented in source.
vkGetImageSparseMemoryRequirements2
PFN_vkGetImageSparseMemoryRequirements2 vkGetImageSparseMemoryRequirements2;
Undocumented in source.
vkGetImageSubresourceLayout
PFN_vkGetImageSubresourceLayout vkGetImageSubresourceLayout;
Undocumented in source.
vkGetInstanceProcAddr
PFN_vkGetInstanceProcAddr vkGetInstanceProcAddr;
Undocumented in source.
vkGetMemoryFdKHR
PFN_vkGetMemoryFdKHR vkGetMemoryFdKHR;
Undocumented in source.
vkGetMemoryFdPropertiesKHR
PFN_vkGetMemoryFdPropertiesKHR vkGetMemoryFdPropertiesKHR;
Undocumented in source.
vkGetMemoryHostPointerPropertiesEXT
PFN_vkGetMemoryHostPointerPropertiesEXT vkGetMemoryHostPointerPropertiesEXT;
Undocumented in source.
vkGetPastPresentationTimingGOOGLE
PFN_vkGetPastPresentationTimingGOOGLE vkGetPastPresentationTimingGOOGLE;
Undocumented in source.
vkGetPhysicalDeviceDisplayPlanePropertiesKHR
PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR vkGetPhysicalDeviceDisplayPlanePropertiesKHR;
Undocumented in source.
vkGetPhysicalDeviceDisplayPropertiesKHR
PFN_vkGetPhysicalDeviceDisplayPropertiesKHR vkGetPhysicalDeviceDisplayPropertiesKHR;
Undocumented in source.
vkGetPhysicalDeviceExternalBufferProperties
PFN_vkGetPhysicalDeviceExternalBufferProperties vkGetPhysicalDeviceExternalBufferProperties;
Undocumented in source.
vkGetPhysicalDeviceExternalFenceProperties
PFN_vkGetPhysicalDeviceExternalFenceProperties vkGetPhysicalDeviceExternalFenceProperties;
Undocumented in source.
vkGetPhysicalDeviceExternalImageFormatPropertiesNV
PFN_vkGetPhysicalDeviceExternalImageFormatPropertiesNV vkGetPhysicalDeviceExternalImageFormatPropertiesNV;
Undocumented in source.
vkGetPhysicalDeviceExternalSemaphoreProperties
PFN_vkGetPhysicalDeviceExternalSemaphoreProperties vkGetPhysicalDeviceExternalSemaphoreProperties;
Undocumented in source.
vkGetPhysicalDeviceFeatures
PFN_vkGetPhysicalDeviceFeatures vkGetPhysicalDeviceFeatures;
Undocumented in source.
vkGetPhysicalDeviceFeatures2
PFN_vkGetPhysicalDeviceFeatures2 vkGetPhysicalDeviceFeatures2;
Undocumented in source.
vkGetPhysicalDeviceFormatProperties
PFN_vkGetPhysicalDeviceFormatProperties vkGetPhysicalDeviceFormatProperties;
Undocumented in source.
vkGetPhysicalDeviceFormatProperties2
PFN_vkGetPhysicalDeviceFormatProperties2 vkGetPhysicalDeviceFormatProperties2;
Undocumented in source.
vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX
PFN_vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX vkGetPhysicalDeviceGeneratedCommandsPropertiesNVX;
Undocumented in source.
vkGetPhysicalDeviceImageFormatProperties
PFN_vkGetPhysicalDeviceImageFormatProperties vkGetPhysicalDeviceImageFormatProperties;
Undocumented in source.
vkGetPhysicalDeviceImageFormatProperties2
PFN_vkGetPhysicalDeviceImageFormatProperties2 vkGetPhysicalDeviceImageFormatProperties2;
Undocumented in source.
vkGetPhysicalDeviceMemoryProperties
PFN_vkGetPhysicalDeviceMemoryProperties vkGetPhysicalDeviceMemoryProperties;
Undocumented in source.
vkGetPhysicalDeviceMemoryProperties2
PFN_vkGetPhysicalDeviceMemoryProperties2 vkGetPhysicalDeviceMemoryProperties2;
Undocumented in source.
vkGetPhysicalDeviceMultisamplePropertiesEXT
PFN_vkGetPhysicalDeviceMultisamplePropertiesEXT vkGetPhysicalDeviceMultisamplePropertiesEXT;
Undocumented in source.
vkGetPhysicalDevicePresentRectanglesKHR
PFN_vkGetPhysicalDevicePresentRectanglesKHR vkGetPhysicalDevicePresentRectanglesKHR;
Undocumented in source.
vkGetPhysicalDeviceProperties
PFN_vkGetPhysicalDeviceProperties vkGetPhysicalDeviceProperties;
Undocumented in source.
vkGetPhysicalDeviceProperties2
PFN_vkGetPhysicalDeviceProperties2 vkGetPhysicalDeviceProperties2;
Undocumented in source.
vkGetPhysicalDeviceQueueFamilyProperties
PFN_vkGetPhysicalDeviceQueueFamilyProperties vkGetPhysicalDeviceQueueFamilyProperties;
Undocumented in source.
vkGetPhysicalDeviceQueueFamilyProperties2
PFN_vkGetPhysicalDeviceQueueFamilyProperties2 vkGetPhysicalDeviceQueueFamilyProperties2;
Undocumented in source.
vkGetPhysicalDeviceSparseImageFormatProperties
PFN_vkGetPhysicalDeviceSparseImageFormatProperties vkGetPhysicalDeviceSparseImageFormatProperties;
Undocumented in source.
vkGetPhysicalDeviceSparseImageFormatProperties2
PFN_vkGetPhysicalDeviceSparseImageFormatProperties2 vkGetPhysicalDeviceSparseImageFormatProperties2;
Undocumented in source.
vkGetPhysicalDeviceSurfaceCapabilities2EXT
PFN_vkGetPhysicalDeviceSurfaceCapabilities2EXT vkGetPhysicalDeviceSurfaceCapabilities2EXT;
Undocumented in source.
vkGetPhysicalDeviceSurfaceCapabilities2KHR
PFN_vkGetPhysicalDeviceSurfaceCapabilities2KHR vkGetPhysicalDeviceSurfaceCapabilities2KHR;
Undocumented in source.
vkGetPhysicalDeviceSurfaceCapabilitiesKHR
PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR vkGetPhysicalDeviceSurfaceCapabilitiesKHR;
Undocumented in source.
vkGetPhysicalDeviceSurfaceFormats2KHR
PFN_vkGetPhysicalDeviceSurfaceFormats2KHR vkGetPhysicalDeviceSurfaceFormats2KHR;
Undocumented in source.
vkGetPhysicalDeviceSurfaceFormatsKHR
PFN_vkGetPhysicalDeviceSurfaceFormatsKHR vkGetPhysicalDeviceSurfaceFormatsKHR;
Undocumented in source.
vkGetPhysicalDeviceSurfacePresentModesKHR
PFN_vkGetPhysicalDeviceSurfacePresentModesKHR vkGetPhysicalDeviceSurfacePresentModesKHR;
Undocumented in source.
vkGetPhysicalDeviceSurfaceSupportKHR
PFN_vkGetPhysicalDeviceSurfaceSupportKHR vkGetPhysicalDeviceSurfaceSupportKHR;
Undocumented in source.
vkGetPipelineCacheData
PFN_vkGetPipelineCacheData vkGetPipelineCacheData;
Undocumented in source.
vkGetQueryPoolResults
PFN_vkGetQueryPoolResults vkGetQueryPoolResults;
Undocumented in source.
vkGetRefreshCycleDurationGOOGLE
PFN_vkGetRefreshCycleDurationGOOGLE vkGetRefreshCycleDurationGOOGLE;
Undocumented in source.
vkGetRenderAreaGranularity
PFN_vkGetRenderAreaGranularity vkGetRenderAreaGranularity;
Undocumented in source.
vkGetSemaphoreFdKHR
PFN_vkGetSemaphoreFdKHR vkGetSemaphoreFdKHR;
Undocumented in source.
vkGetShaderInfoAMD
PFN_vkGetShaderInfoAMD vkGetShaderInfoAMD;
Undocumented in source.
vkGetSwapchainCounterEXT
PFN_vkGetSwapchainCounterEXT vkGetSwapchainCounterEXT;
Undocumented in source.
vkGetSwapchainImagesKHR
PFN_vkGetSwapchainImagesKHR vkGetSwapchainImagesKHR;
Undocumented in source.
vkGetSwapchainStatusKHR
PFN_vkGetSwapchainStatusKHR vkGetSwapchainStatusKHR;
Undocumented in source.
vkGetValidationCacheDataEXT
PFN_vkGetValidationCacheDataEXT vkGetValidationCacheDataEXT;
Undocumented in source.
vkImportFenceFdKHR
PFN_vkImportFenceFdKHR vkImportFenceFdKHR;
Undocumented in source.
vkImportSemaphoreFdKHR
PFN_vkImportSemaphoreFdKHR vkImportSemaphoreFdKHR;
Undocumented in source.
vkInvalidateMappedMemoryRanges
PFN_vkInvalidateMappedMemoryRanges vkInvalidateMappedMemoryRanges;
Undocumented in source.
vkMapMemory
PFN_vkMapMemory vkMapMemory;
Undocumented in source.
vkMergePipelineCaches
PFN_vkMergePipelineCaches vkMergePipelineCaches;
Undocumented in source.
vkMergeValidationCachesEXT
PFN_vkMergeValidationCachesEXT vkMergeValidationCachesEXT;
Undocumented in source.
vkQueueBeginDebugUtilsLabelEXT
PFN_vkQueueBeginDebugUtilsLabelEXT vkQueueBeginDebugUtilsLabelEXT;
Undocumented in source.
vkQueueBindSparse
PFN_vkQueueBindSparse vkQueueBindSparse;
Undocumented in source.
vkQueueEndDebugUtilsLabelEXT
PFN_vkQueueEndDebugUtilsLabelEXT vkQueueEndDebugUtilsLabelEXT;
Undocumented in source.
vkQueueInsertDebugUtilsLabelEXT
PFN_vkQueueInsertDebugUtilsLabelEXT vkQueueInsertDebugUtilsLabelEXT;
Undocumented in source.
vkQueuePresentKHR
PFN_vkQueuePresentKHR vkQueuePresentKHR;
Undocumented in source.
vkQueueSubmit
PFN_vkQueueSubmit vkQueueSubmit;
Undocumented in source.
vkQueueWaitIdle
PFN_vkQueueWaitIdle vkQueueWaitIdle;
Undocumented in source.
vkRegisterDeviceEventEXT
PFN_vkRegisterDeviceEventEXT vkRegisterDeviceEventEXT;
Undocumented in source.
vkRegisterDisplayEventEXT
PFN_vkRegisterDisplayEventEXT vkRegisterDisplayEventEXT;
Undocumented in source.
vkRegisterObjectsNVX
PFN_vkRegisterObjectsNVX vkRegisterObjectsNVX;
Undocumented in source.
vkReleaseDisplayEXT
PFN_vkReleaseDisplayEXT vkReleaseDisplayEXT;
Undocumented in source.
vkResetCommandBuffer
PFN_vkResetCommandBuffer vkResetCommandBuffer;
Undocumented in source.
vkResetCommandPool
PFN_vkResetCommandPool vkResetCommandPool;
Undocumented in source.
vkResetDescriptorPool
PFN_vkResetDescriptorPool vkResetDescriptorPool;
Undocumented in source.
vkResetEvent
PFN_vkResetEvent vkResetEvent;
Undocumented in source.
vkResetFences
PFN_vkResetFences vkResetFences;
Undocumented in source.
vkSetDebugUtilsObjectNameEXT
PFN_vkSetDebugUtilsObjectNameEXT vkSetDebugUtilsObjectNameEXT;
Undocumented in source.
vkSetDebugUtilsObjectTagEXT
PFN_vkSetDebugUtilsObjectTagEXT vkSetDebugUtilsObjectTagEXT;
Undocumented in source.
vkSetEvent
PFN_vkSetEvent vkSetEvent;
Undocumented in source.
vkSetHdrMetadataEXT
PFN_vkSetHdrMetadataEXT vkSetHdrMetadataEXT;
Undocumented in source.
vkSubmitDebugUtilsMessageEXT
PFN_vkSubmitDebugUtilsMessageEXT vkSubmitDebugUtilsMessageEXT;
Undocumented in source.
vkTrimCommandPool
PFN_vkTrimCommandPool vkTrimCommandPool;
Undocumented in source.
vkUnmapMemory
PFN_vkUnmapMemory vkUnmapMemory;
Undocumented in source.
vkUnregisterObjectsNVX
PFN_vkUnregisterObjectsNVX vkUnregisterObjectsNVX;
Undocumented in source.
vkUpdateDescriptorSetWithTemplate
PFN_vkUpdateDescriptorSetWithTemplate vkUpdateDescriptorSetWithTemplate;
Undocumented in source.
vkUpdateDescriptorSets
PFN_vkUpdateDescriptorSets vkUpdateDescriptorSets;
Undocumented in source.
vkWaitForFences
PFN_vkWaitForFences vkWaitForFences;
Undocumented in source.

Meta

License

$(https://opensource.org/licenses/MIT, MIT License).

Authors

Copyright 2016 Alex Parrill, Peter Particle