• Home
  • Raw
  • Download

Lines Matching defs:device

142 static PFN_vkVoidFunction entry_vkGetDeviceProcAddr(VkDevice device, const char* pName) {  in entry_vkGetDeviceProcAddr()
160 static void entry_vkDestroyDevice(VkDevice device, const VkAllocationCallbacks* pAllocator) { in entry_vkDestroyDevice()
209 static void entry_vkGetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, in entry_vkGetDeviceQueue()
233 static VkResult entry_vkDeviceWaitIdle(VkDevice device) { in entry_vkDeviceWaitIdle()
240 static VkResult entry_vkAllocateMemory(VkDevice device, const VkMemoryAllocateInfo* pAllocateInfo, in entry_vkAllocateMemory()
251 static void entry_vkFreeMemory(VkDevice device, VkDeviceMemory memory, in entry_vkFreeMemory()
258 static VkResult entry_vkMapMemory(VkDevice device, VkDeviceMemory memory, VkDeviceSize offset, in entry_vkMapMemory()
267 static void entry_vkUnmapMemory(VkDevice device, VkDeviceMemory memory) { in entry_vkUnmapMemory()
272 static VkResult entry_vkFlushMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, in entry_vkFlushMappedMemoryRanges()
281 static VkResult entry_vkInvalidateMappedMemoryRanges(VkDevice device, uint32_t memoryRangeCount, in entry_vkInvalidateMappedMemoryRanges()
290 static void entry_vkGetDeviceMemoryCommitment(VkDevice device, VkDeviceMemory memory, in entry_vkGetDeviceMemoryCommitment()
296 static VkResult entry_vkBindBufferMemory(VkDevice device, VkBuffer buffer, VkDeviceMemory memory, in entry_vkBindBufferMemory()
306 static VkResult entry_vkBindImageMemory(VkDevice device, VkImage image, VkDeviceMemory memory, in entry_vkBindImageMemory()
316 static void entry_vkGetBufferMemoryRequirements(VkDevice device, VkBuffer buffer, in entry_vkGetBufferMemoryRequirements()
323 static void entry_vkGetImageMemoryRequirements(VkDevice device, VkImage image, in entry_vkGetImageMemoryRequirements()
331 VkDevice device, VkImage image, uint32_t* pSparseMemoryRequirementCount, in entry_vkGetImageSparseMemoryRequirements()
357 static VkResult entry_vkCreateFence(VkDevice device, const VkFenceCreateInfo* pCreateInfo, in entry_vkCreateFence()
367 static void entry_vkDestroyFence(VkDevice device, VkFence fence, in entry_vkDestroyFence()
373 static VkResult entry_vkResetFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences) { in entry_vkResetFences()
382 static VkResult entry_vkGetFenceStatus(VkDevice device, VkFence fence) { in entry_vkGetFenceStatus()
389 static VkResult entry_vkWaitForFences(VkDevice device, uint32_t fenceCount, const VkFence* pFences, in entry_vkWaitForFences()
399 static VkResult entry_vkCreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo* pCreateInfo, in entry_vkCreateSemaphore()
410 static void entry_vkDestroySemaphore(VkDevice device, VkSemaphore semaphore, in entry_vkDestroySemaphore()
417 static VkResult entry_vkCreateEvent(VkDevice device, const VkEventCreateInfo* pCreateInfo, in entry_vkCreateEvent()
426 static void entry_vkDestroyEvent(VkDevice device, VkEvent event, in entry_vkDestroyEvent()
432 static VkResult entry_vkGetEventStatus(VkDevice device, VkEvent event) { in entry_vkGetEventStatus()
439 static VkResult entry_vkSetEvent(VkDevice device, VkEvent event) { in entry_vkSetEvent()
446 static VkResult entry_vkResetEvent(VkDevice device, VkEvent event) { in entry_vkResetEvent()
453 static VkResult entry_vkCreateQueryPool(VkDevice device, const VkQueryPoolCreateInfo* pCreateInfo, in entry_vkCreateQueryPool()
463 static void entry_vkDestroyQueryPool(VkDevice device, VkQueryPool queryPool, in entry_vkDestroyQueryPool()
469 static VkResult entry_vkGetQueryPoolResults(VkDevice device, VkQueryPool queryPool, in entry_vkGetQueryPoolResults()
481 static VkResult entry_vkCreateBuffer(VkDevice device, const VkBufferCreateInfo* pCreateInfo, in entry_vkCreateBuffer()
491 static void entry_vkDestroyBuffer(VkDevice device, VkBuffer buffer, in entry_vkDestroyBuffer()
498 static VkResult entry_vkCreateBufferView(VkDevice device, const VkBufferViewCreateInfo* pCreateInfo, in entry_vkCreateBufferView()
508 static void entry_vkDestroyBufferView(VkDevice device, VkBufferView bufferView, in entry_vkDestroyBufferView()
514 static VkResult entry_vkCreateImage(VkDevice device, const VkImageCreateInfo* pCreateInfo, in entry_vkCreateImage()
524 static void entry_vkDestroyImage(VkDevice device, VkImage image, in entry_vkDestroyImage()
531 static void entry_vkGetImageSubresourceLayout(VkDevice device, VkImage image, in entry_vkGetImageSubresourceLayout()
538 static VkResult entry_vkCreateImageView(VkDevice device, const VkImageViewCreateInfo* pCreateInfo, in entry_vkCreateImageView()
549 static void entry_vkDestroyImageView(VkDevice device, VkImageView imageView, in entry_vkDestroyImageView()
555 static VkResult entry_vkCreateShaderModule(VkDevice device, in entry_vkCreateShaderModule()
566 static void entry_vkDestroyShaderModule(VkDevice device, VkShaderModule shaderModule, in entry_vkDestroyShaderModule()
572 static VkResult entry_vkCreatePipelineCache(VkDevice device, in entry_vkCreatePipelineCache()
583 static void entry_vkDestroyPipelineCache(VkDevice device, VkPipelineCache pipelineCache, in entry_vkDestroyPipelineCache()
589 static VkResult entry_vkGetPipelineCacheData(VkDevice device, VkPipelineCache pipelineCache, in entry_vkGetPipelineCacheData()
598 static VkResult entry_vkMergePipelineCaches(VkDevice device, VkPipelineCache dstCache, in entry_vkMergePipelineCaches()
608 static VkResult entry_vkCreateGraphicsPipelines(VkDevice device, VkPipelineCache pipelineCache, in entry_vkCreateGraphicsPipelines()
622 static VkResult entry_vkCreateComputePipelines(VkDevice device, VkPipelineCache pipelineCache, in entry_vkCreateComputePipelines()
635 static void entry_vkDestroyPipeline(VkDevice device, VkPipeline pipeline, in entry_vkDestroyPipeline()
641 static VkResult entry_vkCreatePipelineLayout(VkDevice device, in entry_vkCreatePipelineLayout()
652 static void entry_vkDestroyPipelineLayout(VkDevice device, VkPipelineLayout pipelineLayout, in entry_vkDestroyPipelineLayout()
658 static VkResult entry_vkCreateSampler(VkDevice device, const VkSamplerCreateInfo* pCreateInfo, in entry_vkCreateSampler()
669 static void entry_vkDestroySampler(VkDevice device, VkSampler sampler, in entry_vkDestroySampler()
676 VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, in entry_vkCreateDescriptorSetLayout()
686 static void entry_vkDestroyDescriptorSetLayout(VkDevice device, in entry_vkDestroyDescriptorSetLayout()
694 static VkResult entry_vkCreateDescriptorPool(VkDevice device, in entry_vkCreateDescriptorPool()
706 static void entry_vkDestroyDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, in entry_vkDestroyDescriptorPool()
713 static VkResult entry_vkResetDescriptorPool(VkDevice device, VkDescriptorPool descriptorPool, in entry_vkResetDescriptorPool()
723 static VkResult entry_vkAllocateDescriptorSets(VkDevice device, in entry_vkAllocateDescriptorSets()
734 static VkResult entry_vkFreeDescriptorSets(VkDevice device, VkDescriptorPool descriptorPool, in entry_vkFreeDescriptorSets()
745 static void entry_vkUpdateDescriptorSets(VkDevice device, uint32_t descriptorWriteCount, in entry_vkUpdateDescriptorSets()
755 static VkResult entry_vkCreateFramebuffer(VkDevice device, in entry_vkCreateFramebuffer()
766 static void entry_vkDestroyFramebuffer(VkDevice device, VkFramebuffer framebuffer, in entry_vkDestroyFramebuffer()
772 static VkResult entry_vkCreateRenderPass(VkDevice device, const VkRenderPassCreateInfo* pCreateInfo, in entry_vkCreateRenderPass()
782 static void entry_vkDestroyRenderPass(VkDevice device, VkRenderPass renderPass, in entry_vkDestroyRenderPass()
788 static void entry_vkGetRenderAreaGranularity(VkDevice device, VkRenderPass renderPass, in entry_vkGetRenderAreaGranularity()
794 static VkResult entry_vkCreateCommandPool(VkDevice device, in entry_vkCreateCommandPool()
805 static void entry_vkDestroyCommandPool(VkDevice device, VkCommandPool commandPool, in entry_vkDestroyCommandPool()
811 static VkResult entry_vkResetCommandPool(VkDevice device, VkCommandPool commandPool, in entry_vkResetCommandPool()
823 static VkResult entry_vkAllocateCommandBuffers(VkDevice device, in entry_vkAllocateCommandBuffers()
838 static void entry_vkFreeCommandBuffers(VkDevice device, VkCommandPool commandPool, in entry_vkFreeCommandBuffers()
1213 static VkResult entry_vkBindBufferMemory2(VkDevice device, uint32_t bindInfoCount, in entry_vkBindBufferMemory2()
1223 static VkResult dynCheck_entry_vkBindBufferMemory2(VkDevice device, uint32_t bindInfoCount, in dynCheck_entry_vkBindBufferMemory2()
1236 static VkResult entry_vkBindImageMemory2(VkDevice device, uint32_t bindInfoCount, in entry_vkBindImageMemory2()
1246 static VkResult dynCheck_entry_vkBindImageMemory2(VkDevice device, uint32_t bindInfoCount, in dynCheck_entry_vkBindImageMemory2()
1260 VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, in entry_vkGetDeviceGroupPeerMemoryFeatures()
1269 VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, in dynCheck_entry_vkGetDeviceGroupPeerMemoryFeatures()
1304 static void entry_vkGetImageMemoryRequirements2(VkDevice device, in entry_vkGetImageMemoryRequirements2()
1313 VkDevice device, const VkImageMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetImageMemoryRequirements2()
1323 static void entry_vkGetBufferMemoryRequirements2(VkDevice device, in entry_vkGetBufferMemoryRequirements2()
1332 VkDevice device, const VkBufferMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetBufferMemoryRequirements2()
1343 VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, in entry_vkGetImageSparseMemoryRequirements2()
1352 VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetImageSparseMemoryRequirements2()
1419 static void entry_vkTrimCommandPool(VkDevice device, VkCommandPool commandPool, in entry_vkTrimCommandPool()
1425 static void dynCheck_entry_vkTrimCommandPool(VkDevice device, VkCommandPool commandPool, in dynCheck_entry_vkTrimCommandPool()
1435 static void entry_vkGetDeviceQueue2(VkDevice device, const VkDeviceQueueInfo2* pQueueInfo, in entry_vkGetDeviceQueue2()
1441 static void dynCheck_entry_vkGetDeviceQueue2(VkDevice device, const VkDeviceQueueInfo2* pQueueInfo, in dynCheck_entry_vkGetDeviceQueue2()
1452 VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, in entry_vkCreateSamplerYcbcrConversion()
1463 VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, in dynCheck_entry_vkCreateSamplerYcbcrConversion()
1476 static void entry_vkDestroySamplerYcbcrConversion(VkDevice device, in entry_vkDestroySamplerYcbcrConversion()
1485 VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, in dynCheck_entry_vkDestroySamplerYcbcrConversion()
1496 VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, in entry_vkCreateDescriptorUpdateTemplate()
1507 VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, in dynCheck_entry_vkCreateDescriptorUpdateTemplate()
1522 VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, in entry_vkDestroyDescriptorUpdateTemplate()
1530 VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, in dynCheck_entry_vkDestroyDescriptorUpdateTemplate()
1542 VkDevice device, VkDescriptorSet descriptorSet, in entry_vkUpdateDescriptorSetWithTemplate()
1551 VkDevice device, VkDescriptorSet descriptorSet, in dynCheck_entry_vkUpdateDescriptorSetWithTemplate()
1590 VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, in entry_vkGetDescriptorSetLayoutSupport()
1597 VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, in dynCheck_entry_vkGetDescriptorSetLayoutSupport()
1628 static VkResult entry_vkCreateRenderPass2(VkDevice device, in entry_vkCreateRenderPass2()
1639 static VkResult dynCheck_entry_vkCreateRenderPass2(VkDevice device, in dynCheck_entry_vkCreateRenderPass2()
1675 static void entry_vkResetQueryPool(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, in entry_vkResetQueryPool()
1681 static void dynCheck_entry_vkResetQueryPool(VkDevice device, VkQueryPool queryPool, in dynCheck_entry_vkResetQueryPool()
1691 static VkResult entry_vkGetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, in entry_vkGetSemaphoreCounterValue()
1700 static VkResult dynCheck_entry_vkGetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, in dynCheck_entry_vkGetSemaphoreCounterValue()
1713 static VkResult entry_vkWaitSemaphores(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, in entry_vkWaitSemaphores()
1722 static VkResult dynCheck_entry_vkWaitSemaphores(VkDevice device, in dynCheck_entry_vkWaitSemaphores()
1736 static VkResult entry_vkSignalSemaphore(VkDevice device, const VkSemaphoreSignalInfo* pSignalInfo) { in entry_vkSignalSemaphore()
1744 static VkResult dynCheck_entry_vkSignalSemaphore(VkDevice device, in dynCheck_entry_vkSignalSemaphore()
1757 static VkDeviceAddress entry_vkGetBufferDeviceAddress(VkDevice device, in entry_vkGetBufferDeviceAddress()
1767 VkDevice device, const VkBufferDeviceAddressInfo* pInfo) { in dynCheck_entry_vkGetBufferDeviceAddress()
1779 static uint64_t entry_vkGetBufferOpaqueCaptureAddress(VkDevice device, in entry_vkGetBufferOpaqueCaptureAddress()
1789 VkDevice device, const VkBufferDeviceAddressInfo* pInfo) { in dynCheck_entry_vkGetBufferOpaqueCaptureAddress()
1802 VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) { in entry_vkGetDeviceMemoryOpaqueCaptureAddress()
1811 VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) { in dynCheck_entry_vkGetDeviceMemoryOpaqueCaptureAddress()
1835 static VkResult entry_vkCreatePrivateDataSlot(VkDevice device, in entry_vkCreatePrivateDataSlot()
1847 VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, in dynCheck_entry_vkCreatePrivateDataSlot()
1860 static void entry_vkDestroyPrivateDataSlot(VkDevice device, VkPrivateDataSlot privateDataSlot, in entry_vkDestroyPrivateDataSlot()
1866 static void dynCheck_entry_vkDestroyPrivateDataSlot(VkDevice device, in dynCheck_entry_vkDestroyPrivateDataSlot()
1877 static VkResult entry_vkSetPrivateData(VkDevice device, VkObjectType objectType, in entry_vkSetPrivateData()
1887 static VkResult dynCheck_entry_vkSetPrivateData(VkDevice device, VkObjectType objectType, in dynCheck_entry_vkSetPrivateData()
1901 static void entry_vkGetPrivateData(VkDevice device, VkObjectType objectType, uint64_t objectHandle, in entry_vkGetPrivateData()
1908 static void dynCheck_entry_vkGetPrivateData(VkDevice device, VkObjectType objectType, in dynCheck_entry_vkGetPrivateData()
2102 static void entry_vkGetDeviceBufferMemoryRequirements(VkDevice device, in entry_vkGetDeviceBufferMemoryRequirements()
2111 VkDevice device, const VkDeviceBufferMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceBufferMemoryRequirements()
2122 static void entry_vkGetDeviceImageMemoryRequirements(VkDevice device, in entry_vkGetDeviceImageMemoryRequirements()
2131 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceImageMemoryRequirements()
2143 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in entry_vkGetDeviceImageSparseMemoryRequirements()
2152 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceImageSparseMemoryRequirements()
2222 static VkResult entry_vkCreateSwapchainKHR(VkDevice device, in entry_vkCreateSwapchainKHR()
2233 static VkResult dynCheck_entry_vkCreateSwapchainKHR(VkDevice device, in dynCheck_entry_vkCreateSwapchainKHR()
2248 static void entry_vkDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain, in entry_vkDestroySwapchainKHR()
2254 static void dynCheck_entry_vkDestroySwapchainKHR(VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkDestroySwapchainKHR()
2264 static VkResult entry_vkGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, in entry_vkGetSwapchainImagesKHR()
2274 static VkResult dynCheck_entry_vkGetSwapchainImagesKHR(VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkGetSwapchainImagesKHR()
2288 static VkResult entry_vkAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, in entry_vkAcquireNextImageKHR()
2298 static VkResult dynCheck_entry_vkAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkAcquireNextImageKHR()
2321 VkDevice device, VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities) { in entry_vkGetDeviceGroupPresentCapabilitiesKHR()
2331 VkDevice device, VkDeviceGroupPresentCapabilitiesKHR* pDeviceGroupPresentCapabilities) { in dynCheck_entry_vkGetDeviceGroupPresentCapabilitiesKHR()
2346 VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR* pModes) { in entry_vkGetDeviceGroupSurfacePresentModesKHR()
2355 VkDevice device, VkSurfaceKHR surface, VkDeviceGroupPresentModeFlagsKHR* pModes) { in dynCheck_entry_vkGetDeviceGroupSurfacePresentModesKHR()
2380 static VkResult entry_vkAcquireNextImage2KHR(VkDevice device, in entry_vkAcquireNextImage2KHR()
2390 static VkResult dynCheck_entry_vkAcquireNextImage2KHR(VkDevice device, in dynCheck_entry_vkAcquireNextImage2KHR()
2483 static VkResult entry_vkCreateSharedSwapchainsKHR(VkDevice device, uint32_t swapchainCount, in entry_vkCreateSharedSwapchainsKHR()
2495 VkDevice device, uint32_t swapchainCount, const VkSwapchainCreateInfoKHR* pCreateInfos, in dynCheck_entry_vkCreateSharedSwapchainsKHR()
2644 static VkResult entry_vkCreateVideoSessionKHR(VkDevice device, in entry_vkCreateVideoSessionKHR()
2656 VkDevice device, const VkVideoSessionCreateInfoKHR* pCreateInfo, in dynCheck_entry_vkCreateVideoSessionKHR()
2669 static void entry_vkDestroyVideoSessionKHR(VkDevice device, VkVideoSessionKHR videoSession, in entry_vkDestroyVideoSessionKHR()
2675 static void dynCheck_entry_vkDestroyVideoSessionKHR(VkDevice device, VkVideoSessionKHR videoSession, in dynCheck_entry_vkDestroyVideoSessionKHR()
2686 VkDevice device, VkVideoSessionKHR videoSession, uint32_t* pMemoryRequirementsCount, in entry_vkGetVideoSessionMemoryRequirementsKHR()
2698 VkDevice device, VkVideoSessionKHR videoSession, uint32_t* pMemoryRequirementsCount, in dynCheck_entry_vkGetVideoSessionMemoryRequirementsKHR()
2715 VkDevice device, VkVideoSessionKHR videoSession, uint32_t bindSessionMemoryInfoCount, in entry_vkBindVideoSessionMemoryKHR()
2726 VkDevice device, VkVideoSessionKHR videoSession, uint32_t bindSessionMemoryInfoCount, in dynCheck_entry_vkBindVideoSessionMemoryKHR()
2741 VkDevice device, const VkVideoSessionParametersCreateInfoKHR* pCreateInfo, in entry_vkCreateVideoSessionParametersKHR()
2751 VkDevice device, const VkVideoSessionParametersCreateInfoKHR* pCreateInfo, in dynCheck_entry_vkCreateVideoSessionParametersKHR()
2765 VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, in entry_vkUpdateVideoSessionParametersKHR()
2775 VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, in dynCheck_entry_vkUpdateVideoSessionParametersKHR()
2789 VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, in entry_vkDestroyVideoSessionParametersKHR()
2797 VkDevice device, VkVideoSessionParametersKHR videoSessionParameters, in dynCheck_entry_vkDestroyVideoSessionParametersKHR()
2818 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginVideoCodingKHR() local
2836 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndVideoCodingKHR() local
2854 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdControlVideoCodingKHR() local
2874 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDecodeVideoKHR() local
2896 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginRenderingKHR() local
2912 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndRenderingKHR() local
2983 VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, in entry_vkGetDeviceGroupPeerMemoryFeaturesKHR()
2992 VkDevice device, uint32_t heapIndex, uint32_t localDeviceIndex, uint32_t remoteDeviceIndex, in dynCheck_entry_vkGetDeviceGroupPeerMemoryFeaturesKHR()
3013 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDeviceMaskKHR() local
3036 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDispatchBaseKHR() local
3050 static void entry_vkTrimCommandPoolKHR(VkDevice device, VkCommandPool commandPool, in entry_vkTrimCommandPoolKHR()
3056 static void dynCheck_entry_vkTrimCommandPoolKHR(VkDevice device, VkCommandPool commandPool, in dynCheck_entry_vkTrimCommandPoolKHR()
3093 VkDevice device, const VkMemoryGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in entry_vkGetMemoryWin32HandleKHR()
3102 VkDevice device, const VkMemoryGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in dynCheck_entry_vkGetMemoryWin32HandleKHR()
3116 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, HANDLE handle, in entry_vkGetMemoryWin32HandlePropertiesKHR()
3127 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, HANDLE handle, in dynCheck_entry_vkGetMemoryWin32HandlePropertiesKHR()
3144 static VkResult entry_vkGetMemoryFdKHR(VkDevice device, const VkMemoryGetFdInfoKHR* pGetFdInfo, in entry_vkGetMemoryFdKHR()
3153 static VkResult dynCheck_entry_vkGetMemoryFdKHR(VkDevice device, in dynCheck_entry_vkGetMemoryFdKHR()
3166 static VkResult entry_vkGetMemoryFdPropertiesKHR(VkDevice device, in entry_vkGetMemoryFdPropertiesKHR()
3178 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, int fd, in dynCheck_entry_vkGetMemoryFdPropertiesKHR()
3209 VkDevice device, const VkImportSemaphoreWin32HandleInfoKHR* pImportSemaphoreWin32HandleInfo) { in entry_vkImportSemaphoreWin32HandleKHR()
3218 VkDevice device, const VkImportSemaphoreWin32HandleInfoKHR* pImportSemaphoreWin32HandleInfo) { in dynCheck_entry_vkImportSemaphoreWin32HandleKHR()
3232 VkDevice device, const VkSemaphoreGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in entry_vkGetSemaphoreWin32HandleKHR()
3241 VkDevice device, const VkSemaphoreGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in dynCheck_entry_vkGetSemaphoreWin32HandleKHR()
3257 VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) { in entry_vkImportSemaphoreFdKHR()
3267 VkDevice device, const VkImportSemaphoreFdInfoKHR* pImportSemaphoreFdInfo) { in dynCheck_entry_vkImportSemaphoreFdKHR()
3279 static VkResult entry_vkGetSemaphoreFdKHR(VkDevice device, in entry_vkGetSemaphoreFdKHR()
3289 static VkResult dynCheck_entry_vkGetSemaphoreFdKHR(VkDevice device, in dynCheck_entry_vkGetSemaphoreFdKHR()
3319 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdPushDescriptorSetKHR() local
3341 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdPushDescriptorSetWithTemplateKHR() local
3361 VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, in entry_vkCreateDescriptorUpdateTemplateKHR()
3373 VkDevice device, const VkDescriptorUpdateTemplateCreateInfo* pCreateInfo, in dynCheck_entry_vkCreateDescriptorUpdateTemplateKHR()
3390 VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, in entry_vkDestroyDescriptorUpdateTemplateKHR()
3398 VkDevice device, VkDescriptorUpdateTemplate descriptorUpdateTemplate, in dynCheck_entry_vkDestroyDescriptorUpdateTemplateKHR()
3411 VkDevice device, VkDescriptorSet descriptorSet, in entry_vkUpdateDescriptorSetWithTemplateKHR()
3419 VkDevice device, VkDescriptorSet descriptorSet, in dynCheck_entry_vkUpdateDescriptorSetWithTemplateKHR()
3435 static VkResult entry_vkCreateRenderPass2KHR(VkDevice device, in entry_vkCreateRenderPass2KHR()
3446 static VkResult dynCheck_entry_vkCreateRenderPass2KHR(VkDevice device, in dynCheck_entry_vkCreateRenderPass2KHR()
3473 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginRenderPass2KHR() local
3495 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdNextSubpass2KHR() local
3514 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndRenderPass2KHR() local
3525 static VkResult entry_vkGetSwapchainStatusKHR(VkDevice device, VkSwapchainKHR swapchain) { in entry_vkGetSwapchainStatusKHR()
3533 static VkResult dynCheck_entry_vkGetSwapchainStatusKHR(VkDevice device, VkSwapchainKHR swapchain) { in dynCheck_entry_vkGetSwapchainStatusKHR()
3562 VkDevice device, const VkImportFenceWin32HandleInfoKHR* pImportFenceWin32HandleInfo) { in entry_vkImportFenceWin32HandleKHR()
3571 VkDevice device, const VkImportFenceWin32HandleInfoKHR* pImportFenceWin32HandleInfo) { in dynCheck_entry_vkImportFenceWin32HandleKHR()
3585 VkDevice device, const VkFenceGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in entry_vkGetFenceWin32HandleKHR()
3594 VkDevice device, const VkFenceGetWin32HandleInfoKHR* pGetWin32HandleInfo, HANDLE* pHandle) { in dynCheck_entry_vkGetFenceWin32HandleKHR()
3608 static VkResult entry_vkImportFenceFdKHR(VkDevice device, in entry_vkImportFenceFdKHR()
3619 VkDevice device, const VkImportFenceFdInfoKHR* pImportFenceFdInfo) { in dynCheck_entry_vkImportFenceFdKHR()
3631 static VkResult entry_vkGetFenceFdKHR(VkDevice device, const VkFenceGetFdInfoKHR* pGetFdInfo, in entry_vkGetFenceFdKHR()
3641 static VkResult dynCheck_entry_vkGetFenceFdKHR(VkDevice device, in dynCheck_entry_vkGetFenceFdKHR()
3677 static VkResult entry_vkAcquireProfilingLockKHR(VkDevice device, in entry_vkAcquireProfilingLockKHR()
3687 VkDevice device, const VkAcquireProfilingLockInfoKHR* pInfo) { in dynCheck_entry_vkAcquireProfilingLockKHR()
3699 static void entry_vkReleaseProfilingLockKHR(VkDevice device) { in entry_vkReleaseProfilingLockKHR()
3704 static void dynCheck_entry_vkReleaseProfilingLockKHR(VkDevice device) { in dynCheck_entry_vkReleaseProfilingLockKHR()
3793 static void entry_vkGetImageMemoryRequirements2KHR(VkDevice device, in entry_vkGetImageMemoryRequirements2KHR()
3802 VkDevice device, const VkImageMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetImageMemoryRequirements2KHR()
3813 static void entry_vkGetBufferMemoryRequirements2KHR(VkDevice device, in entry_vkGetBufferMemoryRequirements2KHR()
3822 VkDevice device, const VkBufferMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetBufferMemoryRequirements2KHR()
3834 VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, in entry_vkGetImageSparseMemoryRequirements2KHR()
3843 VkDevice device, const VkImageSparseMemoryRequirementsInfo2* pInfo, in dynCheck_entry_vkGetImageSparseMemoryRequirements2KHR()
3861 VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, in entry_vkCreateSamplerYcbcrConversionKHR()
3873 VkDevice device, const VkSamplerYcbcrConversionCreateInfo* pCreateInfo, in dynCheck_entry_vkCreateSamplerYcbcrConversionKHR()
3888 static void entry_vkDestroySamplerYcbcrConversionKHR(VkDevice device, in entry_vkDestroySamplerYcbcrConversionKHR()
3897 VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, in dynCheck_entry_vkDestroySamplerYcbcrConversionKHR()
3910 static VkResult entry_vkBindBufferMemory2KHR(VkDevice device, uint32_t bindInfoCount, in entry_vkBindBufferMemory2KHR()
3920 static VkResult dynCheck_entry_vkBindBufferMemory2KHR(VkDevice device, uint32_t bindInfoCount, in dynCheck_entry_vkBindBufferMemory2KHR()
3933 static VkResult entry_vkBindImageMemory2KHR(VkDevice device, uint32_t bindInfoCount, in entry_vkBindImageMemory2KHR()
3943 static VkResult dynCheck_entry_vkBindImageMemory2KHR(VkDevice device, uint32_t bindInfoCount, in dynCheck_entry_vkBindImageMemory2KHR()
3961 VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, in entry_vkGetDescriptorSetLayoutSupportKHR()
3968 VkDevice device, const VkDescriptorSetLayoutCreateInfo* pCreateInfo, in dynCheck_entry_vkGetDescriptorSetLayoutSupportKHR()
3995 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawIndirectCountKHR() local
4019 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawIndexedIndirectCountKHR() local
4053 static VkResult entry_vkGetSemaphoreCounterValueKHR(VkDevice device, VkSemaphore semaphore, in entry_vkGetSemaphoreCounterValueKHR()
4062 static VkResult dynCheck_entry_vkGetSemaphoreCounterValueKHR(VkDevice device, VkSemaphore semaphore, in dynCheck_entry_vkGetSemaphoreCounterValueKHR()
4076 static VkResult entry_vkWaitSemaphoresKHR(VkDevice device, const VkSemaphoreWaitInfo* pWaitInfo, in entry_vkWaitSemaphoresKHR()
4085 static VkResult dynCheck_entry_vkWaitSemaphoresKHR(VkDevice device, in dynCheck_entry_vkWaitSemaphoresKHR()
4099 static VkResult entry_vkSignalSemaphoreKHR(VkDevice device, in entry_vkSignalSemaphoreKHR()
4108 static VkResult dynCheck_entry_vkSignalSemaphoreKHR(VkDevice device, in dynCheck_entry_vkSignalSemaphoreKHR()
4150 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetFragmentShadingRateKHR() local
4169 static VkResult entry_vkWaitForPresentKHR(VkDevice device, VkSwapchainKHR swapchain, in entry_vkWaitForPresentKHR()
4178 static VkResult dynCheck_entry_vkWaitForPresentKHR(VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkWaitForPresentKHR()
4195 static VkDeviceAddress entry_vkGetBufferDeviceAddressKHR(VkDevice device, in entry_vkGetBufferDeviceAddressKHR()
4205 VkDevice device, const VkBufferDeviceAddressInfo* pInfo) { in dynCheck_entry_vkGetBufferDeviceAddressKHR()
4218 static uint64_t entry_vkGetBufferOpaqueCaptureAddressKHR(VkDevice device, in entry_vkGetBufferOpaqueCaptureAddressKHR()
4228 VkDevice device, const VkBufferDeviceAddressInfo* pInfo) { in dynCheck_entry_vkGetBufferOpaqueCaptureAddressKHR()
4242 VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) { in entry_vkGetDeviceMemoryOpaqueCaptureAddressKHR()
4251 VkDevice device, const VkDeviceMemoryOpaqueCaptureAddressInfo* pInfo) { in dynCheck_entry_vkGetDeviceMemoryOpaqueCaptureAddressKHR()
4266 static VkResult entry_vkCreateDeferredOperationKHR(VkDevice device, in entry_vkCreateDeferredOperationKHR()
4277 VkDevice device, const VkAllocationCallbacks* pAllocator, in dynCheck_entry_vkCreateDeferredOperationKHR()
4291 static void entry_vkDestroyDeferredOperationKHR(VkDevice device, VkDeferredOperationKHR operation, in entry_vkDestroyDeferredOperationKHR()
4297 static void dynCheck_entry_vkDestroyDeferredOperationKHR(VkDevice device, in dynCheck_entry_vkDestroyDeferredOperationKHR()
4309 static uint32_t entry_vkGetDeferredOperationMaxConcurrencyKHR(VkDevice device, in entry_vkGetDeferredOperationMaxConcurrencyKHR()
4319 VkDevice device, VkDeferredOperationKHR operation) { in dynCheck_entry_vkGetDeferredOperationMaxConcurrencyKHR()
4332 static VkResult entry_vkGetDeferredOperationResultKHR(VkDevice device, in entry_vkGetDeferredOperationResultKHR()
4341 static VkResult dynCheck_entry_vkGetDeferredOperationResultKHR(VkDevice device, in dynCheck_entry_vkGetDeferredOperationResultKHR()
4355 static VkResult entry_vkDeferredOperationJoinKHR(VkDevice device, in entry_vkDeferredOperationJoinKHR()
4364 static VkResult dynCheck_entry_vkDeferredOperationJoinKHR(VkDevice device, in dynCheck_entry_vkDeferredOperationJoinKHR()
4381 VkDevice device, const VkPipelineInfoKHR* pPipelineInfo, uint32_t* pExecutableCount, in entry_vkGetPipelineExecutablePropertiesKHR()
4392 VkDevice device, const VkPipelineInfoKHR* pPipelineInfo, uint32_t* pExecutableCount, in dynCheck_entry_vkGetPipelineExecutablePropertiesKHR()
4408 VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, uint32_t* pStatisticCount, in entry_vkGetPipelineExecutableStatisticsKHR()
4419 VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, uint32_t* pStatisticCount, in dynCheck_entry_vkGetPipelineExecutableStatisticsKHR()
4435 VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, in entry_vkGetPipelineExecutableInternalRepresentationsKHR()
4448 VkDevice device, const VkPipelineExecutableInfoKHR* pExecutableInfo, in dynCheck_entry_vkGetPipelineExecutableInternalRepresentationsKHR()
4467 static VkResult entry_vkMapMemory2KHR(VkDevice device, const VkMemoryMapInfoKHR* pMemoryMapInfo, in entry_vkMapMemory2KHR()
4476 static VkResult dynCheck_entry_vkMapMemory2KHR(VkDevice device, in dynCheck_entry_vkMapMemory2KHR()
4490 static VkResult entry_vkUnmapMemory2KHR(VkDevice device, in entry_vkUnmapMemory2KHR()
4499 static VkResult dynCheck_entry_vkUnmapMemory2KHR(VkDevice device, in dynCheck_entry_vkUnmapMemory2KHR()
4531 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEncodeVideoKHR() local
4551 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetEvent2KHR() local
4569 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdResetEvent2KHR() local
4590 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWaitEvents2KHR() local
4609 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdPipelineBarrier2KHR() local
4629 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteTimestamp2KHR() local
4660 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteBufferMarker2AMD() local
4696 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyBuffer2KHR() local
4714 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyImage2KHR() local
4732 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyBufferToImage2KHR() local
4750 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyImageToBuffer2KHR() local
4768 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBlitImage2KHR() local
4786 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdResolveImage2KHR() local
4808 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdTraceRaysIndirect2KHR() local
4823 VkDevice device, const VkDeviceBufferMemoryRequirements* pInfo, in entry_vkGetDeviceBufferMemoryRequirementsKHR()
4831 VkDevice device, const VkDeviceBufferMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceBufferMemoryRequirementsKHR()
4844 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in entry_vkGetDeviceImageMemoryRequirementsKHR()
4852 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceImageMemoryRequirementsKHR()
4865 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in entry_vkGetDeviceImageSparseMemoryRequirementsKHR()
4875 VkDevice device, const VkDeviceImageMemoryRequirements* pInfo, in dynCheck_entry_vkGetDeviceImageSparseMemoryRequirementsKHR()
4893 static VkResult entry_vkGetSwapchainGrallocUsageANDROID(VkDevice device, VkFormat format, in entry_vkGetSwapchainGrallocUsageANDROID()
4903 static VkResult dynCheck_entry_vkGetSwapchainGrallocUsageANDROID(VkDevice device, VkFormat format, in dynCheck_entry_vkGetSwapchainGrallocUsageANDROID()
4918 static VkResult entry_vkAcquireImageANDROID(VkDevice device, VkImage image, int nativeFenceFd, in entry_vkAcquireImageANDROID()
4927 static VkResult dynCheck_entry_vkAcquireImageANDROID(VkDevice device, VkImage image, in dynCheck_entry_vkAcquireImageANDROID()
4954 VkDevice device, VkFormat format, VkImageUsageFlags imageUsage, in entry_vkGetSwapchainGrallocUsage2ANDROID()
4966 VkDevice device, VkFormat format, VkImageUsageFlags imageUsage, in dynCheck_entry_vkGetSwapchainGrallocUsage2ANDROID()
5024 static VkResult entry_vkDebugMarkerSetObjectTagEXT(VkDevice device, in entry_vkDebugMarkerSetObjectTagEXT()
5034 VkDevice device, const VkDebugMarkerObjectTagInfoEXT* pTagInfo) { in dynCheck_entry_vkDebugMarkerSetObjectTagEXT()
5047 VkDevice device, const VkDebugMarkerObjectNameInfoEXT* pNameInfo) { in entry_vkDebugMarkerSetObjectNameEXT()
5056 VkDevice device, const VkDebugMarkerObjectNameInfoEXT* pNameInfo) { in dynCheck_entry_vkDebugMarkerSetObjectNameEXT()
5077 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDebugMarkerBeginEXT() local
5093 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDebugMarkerEndEXT() local
5111 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDebugMarkerInsertEXT() local
5140 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindTransformFeedbackBuffersEXT() local
5166 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginTransformFeedbackEXT() local
5194 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndTransformFeedbackEXT() local
5217 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginQueryIndexedEXT() local
5237 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndQueryIndexedEXT() local
5262 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawIndirectByteCountEXT() local
5276 static VkResult entry_vkCreateCuModuleNVX(VkDevice device, in entry_vkCreateCuModuleNVX()
5287 static VkResult dynCheck_entry_vkCreateCuModuleNVX(VkDevice device, in dynCheck_entry_vkCreateCuModuleNVX()
5302 static VkResult entry_vkCreateCuFunctionNVX(VkDevice device, in entry_vkCreateCuFunctionNVX()
5313 static VkResult dynCheck_entry_vkCreateCuFunctionNVX(VkDevice device, in dynCheck_entry_vkCreateCuFunctionNVX()
5328 static void entry_vkDestroyCuModuleNVX(VkDevice device, VkCuModuleNVX module, in entry_vkDestroyCuModuleNVX()
5334 static void dynCheck_entry_vkDestroyCuModuleNVX(VkDevice device, VkCuModuleNVX module, in dynCheck_entry_vkDestroyCuModuleNVX()
5344 static void entry_vkDestroyCuFunctionNVX(VkDevice device, VkCuFunctionNVX function, in entry_vkDestroyCuFunctionNVX()
5350 static void dynCheck_entry_vkDestroyCuFunctionNVX(VkDevice device, VkCuFunctionNVX function, in dynCheck_entry_vkDestroyCuFunctionNVX()
5369 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCuLaunchKernelNVX() local
5380 static uint32_t entry_vkGetImageViewHandleNVX(VkDevice device, in entry_vkGetImageViewHandleNVX()
5389 static uint32_t dynCheck_entry_vkGetImageViewHandleNVX(VkDevice device, in dynCheck_entry_vkGetImageViewHandleNVX()
5402 static VkResult entry_vkGetImageViewAddressNVX(VkDevice device, VkImageView imageView, in entry_vkGetImageViewAddressNVX()
5412 VkDevice device, VkImageView imageView, VkImageViewAddressPropertiesNVX* pProperties) { in dynCheck_entry_vkGetImageViewAddressNVX()
5440 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawIndirectCountAMD() local
5464 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawIndexedIndirectCountAMD() local
5490 static VkResult entry_vkGetShaderInfoAMD(VkDevice device, VkPipeline pipeline, in entry_vkGetShaderInfoAMD()
5501 static VkResult dynCheck_entry_vkGetShaderInfoAMD(VkDevice device, VkPipeline pipeline, in dynCheck_entry_vkGetShaderInfoAMD()
5554 static VkResult entry_vkGetMemoryWin32HandleNV(VkDevice device, VkDeviceMemory memory, in entry_vkGetMemoryWin32HandleNV()
5565 VkDevice device, VkDeviceMemory memory, VkExternalMemoryHandleTypeFlagsNV handleType, in dynCheck_entry_vkGetMemoryWin32HandleNV()
5619 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBeginConditionalRenderingEXT() local
5637 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdEndConditionalRenderingEXT() local
5661 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetViewportWScalingNV() local
5717 static VkResult entry_vkDisplayPowerControlEXT(VkDevice device, VkDisplayKHR display, in entry_vkDisplayPowerControlEXT()
5727 VkDevice device, VkDisplayKHR display, const VkDisplayPowerInfoEXT* pDisplayPowerInfo) { in dynCheck_entry_vkDisplayPowerControlEXT()
5739 static VkResult entry_vkRegisterDeviceEventEXT(VkDevice device, in entry_vkRegisterDeviceEventEXT()
5751 VkDevice device, const VkDeviceEventInfoEXT* pDeviceEventInfo, in dynCheck_entry_vkRegisterDeviceEventEXT()
5764 static VkResult entry_vkRegisterDisplayEventEXT(VkDevice device, VkDisplayKHR display, in entry_vkRegisterDisplayEventEXT()
5776 VkDevice device, VkDisplayKHR display, const VkDisplayEventInfoEXT* pDisplayEventInfo, in dynCheck_entry_vkRegisterDisplayEventEXT()
5789 static VkResult entry_vkGetSwapchainCounterEXT(VkDevice device, VkSwapchainKHR swapchain, in entry_vkGetSwapchainCounterEXT()
5799 static VkResult dynCheck_entry_vkGetSwapchainCounterEXT(VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkGetSwapchainCounterEXT()
5816 VkDevice device, VkSwapchainKHR swapchain, in entry_vkGetRefreshCycleDurationGOOGLE()
5826 VkDevice device, VkSwapchainKHR swapchain, in dynCheck_entry_vkGetRefreshCycleDurationGOOGLE()
5841 VkDevice device, VkSwapchainKHR swapchain, uint32_t* pPresentationTimingCount, in entry_vkGetPastPresentationTimingGOOGLE()
5851 VkDevice device, VkSwapchainKHR swapchain, uint32_t* pPresentationTimingCount, in dynCheck_entry_vkGetPastPresentationTimingGOOGLE()
5891 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDiscardRectangleEXT() local
5912 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDiscardRectangleEnableEXT() local
5932 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDiscardRectangleModeEXT() local
5950 static void entry_vkSetHdrMetadataEXT(VkDevice device, uint32_t swapchainCount, in entry_vkSetHdrMetadataEXT()
5957 static void dynCheck_entry_vkSetHdrMetadataEXT(VkDevice device, uint32_t swapchainCount, in dynCheck_entry_vkSetHdrMetadataEXT()
6000 static VkResult entry_vkSetDebugUtilsObjectNameEXT(VkDevice device, in entry_vkSetDebugUtilsObjectNameEXT()
6010 VkDevice device, const VkDebugUtilsObjectNameInfoEXT* pNameInfo) { in dynCheck_entry_vkSetDebugUtilsObjectNameEXT()
6022 static VkResult entry_vkSetDebugUtilsObjectTagEXT(VkDevice device, in entry_vkSetDebugUtilsObjectTagEXT()
6032 VkDevice device, const VkDebugUtilsObjectTagInfoEXT* pTagInfo) { in dynCheck_entry_vkSetDebugUtilsObjectTagEXT()
6107 VkDevice device, const AHardwareBuffer* buffer, in entry_vkGetAndroidHardwareBufferPropertiesANDROID()
6119 VkDevice device, const AHardwareBuffer* buffer, in dynCheck_entry_vkGetAndroidHardwareBufferPropertiesANDROID()
6136 VkDevice device, const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, in entry_vkGetMemoryAndroidHardwareBufferANDROID()
6148 VkDevice device, const VkMemoryGetAndroidHardwareBufferInfoANDROID* pInfo, in dynCheck_entry_vkGetMemoryAndroidHardwareBufferANDROID()
6187 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetSampleLocationsEXT() local
6219 VkDevice device, VkImage image, VkImageDrmFormatModifierPropertiesEXT* pProperties) { in entry_vkGetImageDrmFormatModifierPropertiesEXT()
6229 VkDevice device, VkImage image, VkImageDrmFormatModifierPropertiesEXT* pProperties) { in dynCheck_entry_vkGetImageDrmFormatModifierPropertiesEXT()
6245 static VkResult entry_vkCreateValidationCacheEXT(VkDevice device, in entry_vkCreateValidationCacheEXT()
6257 VkDevice device, const VkValidationCacheCreateInfoEXT* pCreateInfo, in dynCheck_entry_vkCreateValidationCacheEXT()
6270 static void entry_vkDestroyValidationCacheEXT(VkDevice device, VkValidationCacheEXT validationCache, in entry_vkDestroyValidationCacheEXT()
6276 static void dynCheck_entry_vkDestroyValidationCacheEXT(VkDevice device, in dynCheck_entry_vkDestroyValidationCacheEXT()
6287 static VkResult entry_vkMergeValidationCachesEXT(VkDevice device, VkValidationCacheEXT dstCache, in entry_vkMergeValidationCachesEXT()
6297 static VkResult dynCheck_entry_vkMergeValidationCachesEXT(VkDevice device, in dynCheck_entry_vkMergeValidationCachesEXT()
6312 static VkResult entry_vkGetValidationCacheDataEXT(VkDevice device, in entry_vkGetValidationCacheDataEXT()
6322 static VkResult dynCheck_entry_vkGetValidationCacheDataEXT(VkDevice device, in dynCheck_entry_vkGetValidationCacheDataEXT()
6352 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindShadingRateImageNV() local
6373 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetViewportShadingRatePaletteNV() local
6396 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoarseSampleOrderNV() local
6409 VkDevice device, const VkAccelerationStructureCreateInfoNV* pCreateInfo, in entry_vkCreateAccelerationStructureNV()
6419 VkDevice device, const VkAccelerationStructureCreateInfoNV* pCreateInfo, in dynCheck_entry_vkCreateAccelerationStructureNV()
6432 static void entry_vkDestroyAccelerationStructureNV(VkDevice device, in entry_vkDestroyAccelerationStructureNV()
6441 VkDevice device, VkAccelerationStructureNV accelerationStructure, in dynCheck_entry_vkDestroyAccelerationStructureNV()
6453 VkDevice device, const VkAccelerationStructureMemoryRequirementsInfoNV* pInfo, in entry_vkGetAccelerationStructureMemoryRequirementsNV()
6461 VkDevice device, const VkAccelerationStructureMemoryRequirementsInfoNV* pInfo, in dynCheck_entry_vkGetAccelerationStructureMemoryRequirementsNV()
6474 VkDevice device, uint32_t bindInfoCount, in entry_vkBindAccelerationStructureMemoryNV()
6485 VkDevice device, uint32_t bindInfoCount, in dynCheck_entry_vkBindAccelerationStructureMemoryNV()
6519 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBuildAccelerationStructureNV() local
6542 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyAccelerationStructureNV() local
6577 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdTraceRaysNV() local
6592 VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, in entry_vkCreateRayTracingPipelinesNV()
6604 VkDevice device, VkPipelineCache pipelineCache, uint32_t createInfoCount, in dynCheck_entry_vkCreateRayTracingPipelinesNV()
6619 static VkResult entry_vkGetRayTracingShaderGroupHandlesKHR(VkDevice device, VkPipeline pipeline, in entry_vkGetRayTracingShaderGroupHandlesKHR()
6630 static VkResult dynCheck_entry_vkGetRayTracingShaderGroupHandlesKHR(VkDevice device, in dynCheck_entry_vkGetRayTracingShaderGroupHandlesKHR()
6648 static VkResult entry_vkGetRayTracingShaderGroupHandlesNV(VkDevice device, VkPipeline pipeline, in entry_vkGetRayTracingShaderGroupHandlesNV()
6659 static VkResult dynCheck_entry_vkGetRayTracingShaderGroupHandlesNV(VkDevice device, in dynCheck_entry_vkGetRayTracingShaderGroupHandlesNV()
6678 VkDevice device, VkAccelerationStructureNV accelerationStructure, size_t dataSize, in entry_vkGetAccelerationStructureHandleNV()
6688 VkDevice device, VkAccelerationStructureNV accelerationStructure, size_t dataSize, in dynCheck_entry_vkGetAccelerationStructureHandleNV()
6716 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteAccelerationStructuresPropertiesNV() local
6728 static VkResult entry_vkCompileDeferredNV(VkDevice device, VkPipeline pipeline, uint32_t shader) { in entry_vkCompileDeferredNV()
6736 static VkResult dynCheck_entry_vkCompileDeferredNV(VkDevice device, VkPipeline pipeline, in dynCheck_entry_vkCompileDeferredNV()
6760 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, const void* pHostPointer, in entry_vkGetMemoryHostPointerPropertiesEXT()
6771 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, const void* pHostPointer, in dynCheck_entry_vkGetMemoryHostPointerPropertiesEXT()
6802 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteBufferMarkerAMD() local
6827 VkDevice device, uint32_t timestampCount, const VkCalibratedTimestampInfoEXT* pTimestampInfos, in entry_vkGetCalibratedTimestampsEXT()
6837 VkDevice device, uint32_t timestampCount, const VkCalibratedTimestampInfoEXT* pTimestampInfos, in dynCheck_entry_vkGetCalibratedTimestampsEXT()
6876 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksNV() local
6897 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksIndirectNV() local
6921 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksIndirectCountNV() local
6952 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetExclusiveScissorEnableNV() local
6978 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetExclusiveScissorNV() local
6999 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCheckpointNV() local
7021 VkDevice device, const VkInitializePerformanceApiInfoINTEL* pInitializeInfo) { in entry_vkInitializePerformanceApiINTEL()
7030 VkDevice device, const VkInitializePerformanceApiInfoINTEL* pInitializeInfo) { in dynCheck_entry_vkInitializePerformanceApiINTEL()
7043 static void entry_vkUninitializePerformanceApiINTEL(VkDevice device) { in entry_vkUninitializePerformanceApiINTEL()
7048 static void dynCheck_entry_vkUninitializePerformanceApiINTEL(VkDevice device) { in dynCheck_entry_vkUninitializePerformanceApiINTEL()
7070 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPerformanceMarkerINTEL() local
7095 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPerformanceStreamMarkerINTEL() local
7120 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPerformanceOverrideINTEL() local
7134 VkDevice device, const VkPerformanceConfigurationAcquireInfoINTEL* pAcquireInfo, in entry_vkAcquirePerformanceConfigurationINTEL()
7145 VkDevice device, const VkPerformanceConfigurationAcquireInfoINTEL* pAcquireInfo, in dynCheck_entry_vkAcquirePerformanceConfigurationINTEL()
7161 VkDevice device, VkPerformanceConfigurationINTEL configuration) { in entry_vkReleasePerformanceConfigurationINTEL()
7170 VkDevice device, VkPerformanceConfigurationINTEL configuration) { in dynCheck_entry_vkReleasePerformanceConfigurationINTEL()
7192 static VkResult entry_vkGetPerformanceParameterINTEL(VkDevice device, in entry_vkGetPerformanceParameterINTEL()
7203 VkDevice device, VkPerformanceParameterTypeINTEL parameter, VkPerformanceValueINTEL* pValue) { in dynCheck_entry_vkGetPerformanceParameterINTEL()
7220 static void entry_vkSetLocalDimmingAMD(VkDevice device, VkSwapchainKHR swapChain, in entry_vkSetLocalDimmingAMD()
7226 static void dynCheck_entry_vkSetLocalDimmingAMD(VkDevice device, VkSwapchainKHR swapChain, in dynCheck_entry_vkSetLocalDimmingAMD()
7285 static VkDeviceAddress entry_vkGetBufferDeviceAddressEXT(VkDevice device, in entry_vkGetBufferDeviceAddressEXT()
7295 VkDevice device, const VkBufferDeviceAddressInfo* pInfo) { in dynCheck_entry_vkGetBufferDeviceAddressEXT()
7371 static VkResult entry_vkAcquireFullScreenExclusiveModeEXT(VkDevice device, in entry_vkAcquireFullScreenExclusiveModeEXT()
7380 static VkResult dynCheck_entry_vkAcquireFullScreenExclusiveModeEXT(VkDevice device, in dynCheck_entry_vkAcquireFullScreenExclusiveModeEXT()
7394 static VkResult entry_vkReleaseFullScreenExclusiveModeEXT(VkDevice device, in entry_vkReleaseFullScreenExclusiveModeEXT()
7403 static VkResult dynCheck_entry_vkReleaseFullScreenExclusiveModeEXT(VkDevice device, in dynCheck_entry_vkReleaseFullScreenExclusiveModeEXT()
7418 VkDevice device, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, in entry_vkGetDeviceGroupSurfacePresentModes2EXT()
7429 VkDevice device, const VkPhysicalDeviceSurfaceInfo2KHR* pSurfaceInfo, in dynCheck_entry_vkGetDeviceGroupSurfacePresentModes2EXT()
7470 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetLineStippleEXT() local
7484 static void entry_vkResetQueryPoolEXT(VkDevice device, VkQueryPool queryPool, uint32_t firstQuery, in entry_vkResetQueryPoolEXT()
7490 static void dynCheck_entry_vkResetQueryPoolEXT(VkDevice device, VkQueryPool queryPool, in dynCheck_entry_vkResetQueryPoolEXT()
7512 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCullModeEXT() local
7529 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetFrontFaceEXT() local
7547 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPrimitiveTopologyEXT() local
7569 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetViewportWithCountEXT() local
7590 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetScissorWithCountEXT() local
7617 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindVertexBuffers2EXT() local
7637 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthTestEnableEXT() local
7656 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthWriteEnableEXT() local
7675 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthCompareOpEXT() local
7695 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthBoundsTestEnableEXT() local
7715 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetStencilTestEnableEXT() local
7738 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetStencilOpEXT() local
7755 VkDevice device, const VkReleaseSwapchainImagesInfoEXT* pReleaseInfo) { in entry_vkReleaseSwapchainImagesEXT()
7764 VkDevice device, const VkReleaseSwapchainImagesInfoEXT* pReleaseInfo) { in dynCheck_entry_vkReleaseSwapchainImagesEXT()
7782 VkDevice device, const VkGeneratedCommandsMemoryRequirementsInfoNV* pInfo, in entry_vkGetGeneratedCommandsMemoryRequirementsNV()
7790 VkDevice device, const VkGeneratedCommandsMemoryRequirementsInfoNV* pInfo, in dynCheck_entry_vkGetGeneratedCommandsMemoryRequirementsNV()
7812 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdPreprocessGeneratedCommandsNV() local
7835 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdExecuteGeneratedCommandsNV() local
7859 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindPipelineShaderGroupNV() local
7871 VkDevice device, const VkIndirectCommandsLayoutCreateInfoNV* pCreateInfo, in entry_vkCreateIndirectCommandsLayoutNV()
7881 VkDevice device, const VkIndirectCommandsLayoutCreateInfoNV* pCreateInfo, in dynCheck_entry_vkCreateIndirectCommandsLayoutNV()
7896 VkDevice device, VkIndirectCommandsLayoutNV indirectCommandsLayout, in entry_vkDestroyIndirectCommandsLayoutNV()
7904 VkDevice device, VkIndirectCommandsLayoutNV indirectCommandsLayout, in dynCheck_entry_vkDestroyIndirectCommandsLayoutNV()
7954 static VkResult entry_vkCreatePrivateDataSlotEXT(VkDevice device, in entry_vkCreatePrivateDataSlotEXT()
7966 VkDevice device, const VkPrivateDataSlotCreateInfo* pCreateInfo, in dynCheck_entry_vkCreatePrivateDataSlotEXT()
7979 static void entry_vkDestroyPrivateDataSlotEXT(VkDevice device, VkPrivateDataSlot privateDataSlot, in entry_vkDestroyPrivateDataSlotEXT()
7985 static void dynCheck_entry_vkDestroyPrivateDataSlotEXT(VkDevice device, in dynCheck_entry_vkDestroyPrivateDataSlotEXT()
7996 static VkResult entry_vkSetPrivateDataEXT(VkDevice device, VkObjectType objectType, in entry_vkSetPrivateDataEXT()
8006 static VkResult dynCheck_entry_vkSetPrivateDataEXT(VkDevice device, VkObjectType objectType, in dynCheck_entry_vkSetPrivateDataEXT()
8021 static void entry_vkGetPrivateDataEXT(VkDevice device, VkObjectType objectType, in entry_vkGetPrivateDataEXT()
8029 static void dynCheck_entry_vkGetPrivateDataEXT(VkDevice device, VkObjectType objectType, in dynCheck_entry_vkGetPrivateDataEXT()
8051 static void entry_vkExportMetalObjectsEXT(VkDevice device, in entry_vkExportMetalObjectsEXT()
8057 static void dynCheck_entry_vkExportMetalObjectsEXT(VkDevice device, in dynCheck_entry_vkExportMetalObjectsEXT()
8069 static void entry_vkGetDescriptorSetLayoutSizeEXT(VkDevice device, VkDescriptorSetLayout layout, in entry_vkGetDescriptorSetLayoutSizeEXT()
8075 static void dynCheck_entry_vkGetDescriptorSetLayoutSizeEXT(VkDevice device, in dynCheck_entry_vkGetDescriptorSetLayoutSizeEXT()
8087 static void entry_vkGetDescriptorSetLayoutBindingOffsetEXT(VkDevice device, in entry_vkGetDescriptorSetLayoutBindingOffsetEXT()
8096 static void dynCheck_entry_vkGetDescriptorSetLayoutBindingOffsetEXT(VkDevice device, in dynCheck_entry_vkGetDescriptorSetLayoutBindingOffsetEXT()
8110 static void entry_vkGetDescriptorEXT(VkDevice device, const VkDescriptorGetInfoEXT* pDescriptorInfo, in entry_vkGetDescriptorEXT()
8116 static void dynCheck_entry_vkGetDescriptorEXT(VkDevice device, in dynCheck_entry_vkGetDescriptorEXT()
8139 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindDescriptorBuffersEXT() local
8169 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDescriptorBufferOffsetsEXT() local
8193 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindDescriptorBufferEmbeddedSamplersEXT() local
8205 VkDevice device, const VkBufferCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in entry_vkGetBufferOpaqueCaptureDescriptorDataEXT()
8214 VkDevice device, const VkBufferCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in dynCheck_entry_vkGetBufferOpaqueCaptureDescriptorDataEXT()
8228 VkDevice device, const VkImageCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in entry_vkGetImageOpaqueCaptureDescriptorDataEXT()
8237 VkDevice device, const VkImageCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in dynCheck_entry_vkGetImageOpaqueCaptureDescriptorDataEXT()
8251 VkDevice device, const VkImageViewCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in entry_vkGetImageViewOpaqueCaptureDescriptorDataEXT()
8261 VkDevice device, const VkImageViewCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in dynCheck_entry_vkGetImageViewOpaqueCaptureDescriptorDataEXT()
8276 VkDevice device, const VkSamplerCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in entry_vkGetSamplerOpaqueCaptureDescriptorDataEXT()
8285 VkDevice device, const VkSamplerCaptureDescriptorDataInfoEXT* pInfo, void* pData) { in dynCheck_entry_vkGetSamplerOpaqueCaptureDescriptorDataEXT()
8299 VkDevice device, const VkAccelerationStructureCaptureDescriptorDataInfoEXT* pInfo, in entry_vkGetAccelerationStructureOpaqueCaptureDescriptorDataEXT()
8310 VkDevice device, const VkAccelerationStructureCaptureDescriptorDataInfoEXT* pInfo, in dynCheck_entry_vkGetAccelerationStructureOpaqueCaptureDescriptorDataEXT()
8343 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetFragmentShadingRateEnumNV() local
8366 static void entry_vkGetImageSubresourceLayout2EXT(VkDevice device, VkImage image, in entry_vkGetImageSubresourceLayout2EXT()
8375 VkDevice device, VkImage image, const VkImageSubresource2EXT* pSubresource, in dynCheck_entry_vkGetImageSubresourceLayout2EXT()
8393 static VkResult entry_vkGetDeviceFaultInfoEXT(VkDevice device, VkDeviceFaultCountsEXT* pFaultCounts, in entry_vkGetDeviceFaultInfoEXT()
8402 static VkResult dynCheck_entry_vkGetDeviceFaultInfoEXT(VkDevice device, in dynCheck_entry_vkGetDeviceFaultInfoEXT()
8484 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetVertexInputEXT() local
8507 VkDevice device, const VkMemoryGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, in entry_vkGetMemoryZirconHandleFUCHSIA()
8517 VkDevice device, const VkMemoryGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, in dynCheck_entry_vkGetMemoryZirconHandleFUCHSIA()
8532 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, zx_handle_t zirconHandle, in entry_vkGetMemoryZirconHandlePropertiesFUCHSIA()
8543 VkDevice device, VkExternalMemoryHandleTypeFlagBits handleType, zx_handle_t zirconHandle, in dynCheck_entry_vkGetMemoryZirconHandlePropertiesFUCHSIA()
8561 VkDevice device, in entry_vkImportSemaphoreZirconHandleFUCHSIA()
8572 VkDevice device, in dynCheck_entry_vkImportSemaphoreZirconHandleFUCHSIA()
8588 VkDevice device, const VkSemaphoreGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, in entry_vkGetSemaphoreZirconHandleFUCHSIA()
8598 VkDevice device, const VkSemaphoreGetZirconHandleInfoFUCHSIA* pGetZirconHandleInfo, in dynCheck_entry_vkGetSemaphoreZirconHandleFUCHSIA()
8615 VkDevice device, const VkBufferCollectionCreateInfoFUCHSIA* pCreateInfo, in entry_vkCreateBufferCollectionFUCHSIA()
8625 VkDevice device, const VkBufferCollectionCreateInfoFUCHSIA* pCreateInfo, in dynCheck_entry_vkCreateBufferCollectionFUCHSIA()
8640 VkDevice device, VkBufferCollectionFUCHSIA collection, in entry_vkSetBufferCollectionImageConstraintsFUCHSIA()
8651 VkDevice device, VkBufferCollectionFUCHSIA collection, in dynCheck_entry_vkSetBufferCollectionImageConstraintsFUCHSIA()
8667 VkDevice device, VkBufferCollectionFUCHSIA collection, in entry_vkSetBufferCollectionBufferConstraintsFUCHSIA()
8678 VkDevice device, VkBufferCollectionFUCHSIA collection, in dynCheck_entry_vkSetBufferCollectionBufferConstraintsFUCHSIA()
8693 static void entry_vkDestroyBufferCollectionFUCHSIA(VkDevice device, in entry_vkDestroyBufferCollectionFUCHSIA()
8701 VkDevice device, VkBufferCollectionFUCHSIA collection, in dynCheck_entry_vkDestroyBufferCollectionFUCHSIA()
8713 VkDevice device, VkBufferCollectionFUCHSIA collection, in entry_vkGetBufferCollectionPropertiesFUCHSIA()
8724 VkDevice device, VkBufferCollectionFUCHSIA collection, in dynCheck_entry_vkGetBufferCollectionPropertiesFUCHSIA()
8742 VkDevice device, VkRenderPass renderpass, VkExtent2D* pMaxWorkgroupSize) { in entry_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI()
8752 VkDevice device, VkRenderPass renderpass, VkExtent2D* pMaxWorkgroupSize) { in dynCheck_entry_vkGetDeviceSubpassShadingMaxWorkgroupSizeHUAWEI()
8773 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSubpassShadingHUAWEI() local
8794 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindInvocationMaskHUAWEI() local
8807 VkDevice device, const VkMemoryGetRemoteAddressInfoNV* pMemoryGetRemoteAddressInfo, in entry_vkGetMemoryRemoteAddressNV()
8817 VkDevice device, const VkMemoryGetRemoteAddressInfoNV* pMemoryGetRemoteAddressInfo, in dynCheck_entry_vkGetMemoryRemoteAddressNV()
8833 static VkResult entry_vkGetPipelinePropertiesEXT(VkDevice device, in entry_vkGetPipelinePropertiesEXT()
8843 static VkResult dynCheck_entry_vkGetPipelinePropertiesEXT(VkDevice device, in dynCheck_entry_vkGetPipelinePropertiesEXT()
8871 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPatchControlPointsEXT() local
8891 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetRasterizerDiscardEnableEXT() local
8911 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthBiasEnableEXT() local
8928 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetLogicOpEXT() local
8947 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPrimitiveRestartEnableEXT() local
8995 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetColorWriteEnableEXT() local
9010 static VkResult entry_vkMapMemoryIntoAddressSpaceGOOGLE(VkDevice device, VkDeviceMemory memory, in entry_vkMapMemoryIntoAddressSpaceGOOGLE()
9019 static VkResult dynCheck_entry_vkMapMemoryIntoAddressSpaceGOOGLE(VkDevice device, in dynCheck_entry_vkMapMemoryIntoAddressSpaceGOOGLE()
9035 VkDevice device, VkDescriptorSet descriptorSet, in entry_vkUpdateDescriptorSetWithTemplateSizedGOOGLE()
9049 VkDevice device, VkDescriptorSet descriptorSet, in dynCheck_entry_vkUpdateDescriptorSetWithTemplateSizedGOOGLE()
9092 VkDevice device, const VkImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, in entry_vkCreateImageWithRequirementsGOOGLE()
9103 VkDevice device, const VkImageCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, in dynCheck_entry_vkCreateImageWithRequirementsGOOGLE()
9119 VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, in entry_vkCreateBufferWithRequirementsGOOGLE()
9130 VkDevice device, const VkBufferCreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator, in dynCheck_entry_vkCreateBufferWithRequirementsGOOGLE()
9145 static VkResult entry_vkGetMemoryHostAddressInfoGOOGLE(VkDevice device, VkDeviceMemory memory, in entry_vkGetMemoryHostAddressInfoGOOGLE()
9155 static VkResult dynCheck_entry_vkGetMemoryHostAddressInfoGOOGLE(VkDevice device, in dynCheck_entry_vkGetMemoryHostAddressInfoGOOGLE()
9170 static VkResult entry_vkFreeMemorySyncGOOGLE(VkDevice device, VkDeviceMemory memory, in entry_vkFreeMemorySyncGOOGLE()
9179 static VkResult dynCheck_entry_vkFreeMemorySyncGOOGLE(VkDevice device, VkDeviceMemory memory, in dynCheck_entry_vkFreeMemorySyncGOOGLE()
9215 static void entry_vkGetLinearImageLayoutGOOGLE(VkDevice device, VkFormat format, in entry_vkGetLinearImageLayoutGOOGLE()
9223 static void dynCheck_entry_vkGetLinearImageLayoutGOOGLE(VkDevice device, VkFormat format, in dynCheck_entry_vkGetLinearImageLayoutGOOGLE()
9235 static void entry_vkGetLinearImageLayout2GOOGLE(VkDevice device, in entry_vkGetLinearImageLayout2GOOGLE()
9244 static void dynCheck_entry_vkGetLinearImageLayout2GOOGLE(VkDevice device, in dynCheck_entry_vkGetLinearImageLayout2GOOGLE()
9278 static void entry_vkCollectDescriptorPoolIdsGOOGLE(VkDevice device, VkDescriptorPool descriptorPool, in entry_vkCollectDescriptorPoolIdsGOOGLE()
9285 static void dynCheck_entry_vkCollectDescriptorPoolIdsGOOGLE(VkDevice device, in dynCheck_entry_vkCollectDescriptorPoolIdsGOOGLE()
9317 static VkResult entry_vkGetBlobGOOGLE(VkDevice device, VkDeviceMemory memory) { in entry_vkGetBlobGOOGLE()
9324 static VkResult dynCheck_entry_vkGetBlobGOOGLE(VkDevice device, VkDeviceMemory memory) { in dynCheck_entry_vkGetBlobGOOGLE()
9336 VkDevice device, VkDescriptorSet descriptorSet, in entry_vkUpdateDescriptorSetWithTemplateSized2GOOGLE()
9352 VkDevice device, VkDescriptorSet descriptorSet, in dynCheck_entry_vkUpdateDescriptorSetWithTemplateSized2GOOGLE()
9397 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMultiEXT() local
9422 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMultiIndexedEXT() local
9438 static VkResult entry_vkCreateMicromapEXT(VkDevice device, in entry_vkCreateMicromapEXT()
9449 static VkResult dynCheck_entry_vkCreateMicromapEXT(VkDevice device, in dynCheck_entry_vkCreateMicromapEXT()
9464 static void entry_vkDestroyMicromapEXT(VkDevice device, VkMicromapEXT micromap, in entry_vkDestroyMicromapEXT()
9470 static void dynCheck_entry_vkDestroyMicromapEXT(VkDevice device, VkMicromapEXT micromap, in dynCheck_entry_vkDestroyMicromapEXT()
9489 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBuildMicromapsEXT() local
9498 static VkResult entry_vkBuildMicromapsEXT(VkDevice device, VkDeferredOperationKHR deferredOperation, in entry_vkBuildMicromapsEXT()
9508 static VkResult dynCheck_entry_vkBuildMicromapsEXT(VkDevice device, in dynCheck_entry_vkBuildMicromapsEXT()
9523 static VkResult entry_vkCopyMicromapEXT(VkDevice device, VkDeferredOperationKHR deferredOperation, in entry_vkCopyMicromapEXT()
9532 static VkResult dynCheck_entry_vkCopyMicromapEXT(VkDevice device, in dynCheck_entry_vkCopyMicromapEXT()
9546 static VkResult entry_vkCopyMicromapToMemoryEXT(VkDevice device, in entry_vkCopyMicromapToMemoryEXT()
9557 VkDevice device, VkDeferredOperationKHR deferredOperation, in dynCheck_entry_vkCopyMicromapToMemoryEXT()
9570 static VkResult entry_vkCopyMemoryToMicromapEXT(VkDevice device, in entry_vkCopyMemoryToMicromapEXT()
9581 VkDevice device, VkDeferredOperationKHR deferredOperation, in dynCheck_entry_vkCopyMemoryToMicromapEXT()
9594 static VkResult entry_vkWriteMicromapsPropertiesEXT(VkDevice device, uint32_t micromapCount, in entry_vkWriteMicromapsPropertiesEXT()
9605 static VkResult dynCheck_entry_vkWriteMicromapsPropertiesEXT(VkDevice device, in dynCheck_entry_vkWriteMicromapsPropertiesEXT()
9631 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMicromapEXT() local
9649 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMicromapToMemoryEXT() local
9667 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMemoryToMicromapEXT() local
9690 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteMicromapsPropertiesEXT() local
9702 VkDevice device, const VkMicromapVersionInfoEXT* pVersionInfo, in entry_vkGetDeviceMicromapCompatibilityEXT()
9710 VkDevice device, const VkMicromapVersionInfoEXT* pVersionInfo, in dynCheck_entry_vkGetDeviceMicromapCompatibilityEXT()
9722 static void entry_vkGetMicromapBuildSizesEXT(VkDevice device, in entry_vkGetMicromapBuildSizesEXT()
9730 static void dynCheck_entry_vkGetMicromapBuildSizesEXT(VkDevice device, in dynCheck_entry_vkGetMicromapBuildSizesEXT()
9759 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawClusterHUAWEI() local
9779 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawClusterIndirectHUAWEI() local
9793 static void entry_vkSetDeviceMemoryPriorityEXT(VkDevice device, VkDeviceMemory memory, in entry_vkSetDeviceMemoryPriorityEXT()
9799 static void dynCheck_entry_vkSetDeviceMemoryPriorityEXT(VkDevice device, VkDeviceMemory memory, in dynCheck_entry_vkSetDeviceMemoryPriorityEXT()
9817 VkDevice device, const VkDescriptorSetBindingReferenceVALVE* pBindingReference, in entry_vkGetDescriptorSetLayoutHostMappingInfoVALVE()
9825 VkDevice device, const VkDescriptorSetBindingReferenceVALVE* pBindingReference, in dynCheck_entry_vkGetDescriptorSetLayoutHostMappingInfoVALVE()
9837 static void entry_vkGetDescriptorSetHostMappingVALVE(VkDevice device, VkDescriptorSet descriptorSet, in entry_vkGetDescriptorSetHostMappingVALVE()
9843 static void dynCheck_entry_vkGetDescriptorSetHostMappingVALVE(VkDevice device, in dynCheck_entry_vkGetDescriptorSetHostMappingVALVE()
9875 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMemoryIndirectNV() local
9900 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMemoryToImageIndirectNV() local
9926 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDecompressMemoryNV() local
9950 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDecompressMemoryIndirectCountNV() local
9981 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetTessellationDomainOriginEXT() local
10000 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthClampEnableEXT() local
10018 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetPolygonModeEXT() local
10037 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetRasterizationSamplesEXT() local
10058 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetSampleMaskEXT() local
10077 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetAlphaToCoverageEnableEXT() local
10097 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetAlphaToOneEnableEXT() local
10115 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetLogicOpEnableEXT() local
10138 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetColorBlendEnableEXT() local
10161 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetColorBlendEquationEXT() local
10184 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetColorWriteMaskEXT() local
10204 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetRasterizationStreamEXT() local
10226 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetConservativeRasterizationModeEXT() local
10247 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetExtraPrimitiveOverestimationSizeEXT() local
10267 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthClipEnableEXT() local
10287 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetSampleLocationsEnableEXT() local
10310 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetColorBlendAdvancedEXT() local
10330 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetProvokingVertexModeEXT() local
10350 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetLineRasterizationModeEXT() local
10370 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetLineStippleEnableEXT() local
10390 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetDepthClipNegativeOneToOneEXT() local
10411 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetViewportWScalingEnableNV() local
10434 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetViewportSwizzleNV() local
10455 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageToColorEnableNV() local
10476 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageToColorLocationNV() local
10497 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageModulationModeNV() local
10518 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageModulationTableEnableNV() local
10541 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageModulationTableNV() local
10562 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetShadingRateImageEnableNV() local
10583 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetRepresentativeFragmentTestEnableNV() local
10604 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetCoverageReductionModeNV() local
10621 static void entry_vkGetShaderModuleIdentifierEXT(VkDevice device, VkShaderModule shaderModule, in entry_vkGetShaderModuleIdentifierEXT()
10628 VkDevice device, VkShaderModule shaderModule, VkShaderModuleIdentifierEXT* pIdentifier) { in dynCheck_entry_vkGetShaderModuleIdentifierEXT()
10639 VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo, in entry_vkGetShaderModuleCreateInfoIdentifierEXT()
10647 VkDevice device, const VkShaderModuleCreateInfo* pCreateInfo, in dynCheck_entry_vkGetShaderModuleCreateInfoIdentifierEXT()
10677 VkDevice device, const VkOpticalFlowSessionCreateInfoNV* pCreateInfo, in entry_vkCreateOpticalFlowSessionNV()
10687 VkDevice device, const VkOpticalFlowSessionCreateInfoNV* pCreateInfo, in dynCheck_entry_vkCreateOpticalFlowSessionNV()
10700 static void entry_vkDestroyOpticalFlowSessionNV(VkDevice device, VkOpticalFlowSessionNV session, in entry_vkDestroyOpticalFlowSessionNV()
10706 static void dynCheck_entry_vkDestroyOpticalFlowSessionNV(VkDevice device, in dynCheck_entry_vkDestroyOpticalFlowSessionNV()
10718 VkDevice device, VkOpticalFlowSessionNV session, in entry_vkBindOpticalFlowSessionImageNV()
10728 VkDevice device, VkOpticalFlowSessionNV session, in dynCheck_entry_vkBindOpticalFlowSessionImageNV()
10752 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdOpticalFlowExecuteNV() local
10767 static VkResult entry_vkCreateShadersEXT(VkDevice device, uint32_t createInfoCount, in entry_vkCreateShadersEXT()
10778 static VkResult dynCheck_entry_vkCreateShadersEXT(VkDevice device, uint32_t createInfoCount, in dynCheck_entry_vkCreateShadersEXT()
10793 static void entry_vkDestroyShaderEXT(VkDevice device, VkShaderEXT shader, in entry_vkDestroyShaderEXT()
10799 static void dynCheck_entry_vkDestroyShaderEXT(VkDevice device, VkShaderEXT shader, in dynCheck_entry_vkDestroyShaderEXT()
10809 static VkResult entry_vkGetShaderBinaryDataEXT(VkDevice device, VkShaderEXT shader, in entry_vkGetShaderBinaryDataEXT()
10818 static VkResult dynCheck_entry_vkGetShaderBinaryDataEXT(VkDevice device, VkShaderEXT shader, in dynCheck_entry_vkGetShaderBinaryDataEXT()
10842 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBindShadersEXT() local
10853 static VkResult entry_vkGetFramebufferTilePropertiesQCOM(VkDevice device, VkFramebuffer framebuffer, in entry_vkGetFramebufferTilePropertiesQCOM()
10864 VkDevice device, VkFramebuffer framebuffer, uint32_t* pPropertiesCount, in dynCheck_entry_vkGetFramebufferTilePropertiesQCOM()
10878 static VkResult entry_vkGetDynamicRenderingTilePropertiesQCOM(VkDevice device, in entry_vkGetDynamicRenderingTilePropertiesQCOM()
10890 VkDevice device, const VkRenderingInfo* pRenderingInfo, VkTilePropertiesQCOM* pProperties) { in dynCheck_entry_vkGetDynamicRenderingTilePropertiesQCOM()
10929 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetAttachmentFeedbackLoopEnableEXT() local
10942 VkDevice device, const VkAccelerationStructureCreateInfoKHR* pCreateInfo, in entry_vkCreateAccelerationStructureKHR()
10952 VkDevice device, const VkAccelerationStructureCreateInfoKHR* pCreateInfo, in dynCheck_entry_vkCreateAccelerationStructureKHR()
10967 VkDevice device, VkAccelerationStructureKHR accelerationStructure, in entry_vkDestroyAccelerationStructureKHR()
10975 VkDevice device, VkAccelerationStructureKHR accelerationStructure, in dynCheck_entry_vkDestroyAccelerationStructureKHR()
11001 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBuildAccelerationStructuresKHR() local
11029 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdBuildAccelerationStructuresIndirectKHR() local
11042 VkDevice device, VkDeferredOperationKHR deferredOperation, uint32_t infoCount, in entry_vkBuildAccelerationStructuresKHR()
11053 VkDevice device, VkDeferredOperationKHR deferredOperation, uint32_t infoCount, in dynCheck_entry_vkBuildAccelerationStructuresKHR()
11069 VkDevice device, VkDeferredOperationKHR deferredOperation, in entry_vkCopyAccelerationStructureKHR()
11079 VkDevice device, VkDeferredOperationKHR deferredOperation, in dynCheck_entry_vkCopyAccelerationStructureKHR()
11094 VkDevice device, VkDeferredOperationKHR deferredOperation, in entry_vkCopyAccelerationStructureToMemoryKHR()
11105 VkDevice device, VkDeferredOperationKHR deferredOperation, in dynCheck_entry_vkCopyAccelerationStructureToMemoryKHR()
11121 VkDevice device, VkDeferredOperationKHR deferredOperation, in entry_vkCopyMemoryToAccelerationStructureKHR()
11132 VkDevice device, VkDeferredOperationKHR deferredOperation, in dynCheck_entry_vkCopyMemoryToAccelerationStructureKHR()
11148 VkDevice device, uint32_t accelerationStructureCount, in entry_vkWriteAccelerationStructuresPropertiesKHR()
11161 VkDevice device, uint32_t accelerationStructureCount, in dynCheck_entry_vkWriteAccelerationStructuresPropertiesKHR()
11187 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyAccelerationStructureKHR() local
11206 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyAccelerationStructureToMemoryKHR() local
11225 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdCopyMemoryToAccelerationStructureKHR() local
11236 VkDevice device, const VkAccelerationStructureDeviceAddressInfoKHR* pInfo) { in entry_vkGetAccelerationStructureDeviceAddressKHR()
11246 VkDevice device, const VkAccelerationStructureDeviceAddressInfoKHR* pInfo) { in dynCheck_entry_vkGetAccelerationStructureDeviceAddressKHR()
11275 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdWriteAccelerationStructuresPropertiesKHR() local
11288 VkDevice device, const VkAccelerationStructureVersionInfoKHR* pVersionInfo, in entry_vkGetDeviceAccelerationStructureCompatibilityKHR()
11296 VkDevice device, const VkAccelerationStructureVersionInfoKHR* pVersionInfo, in dynCheck_entry_vkGetDeviceAccelerationStructureCompatibilityKHR()
11309 VkDevice device, VkAccelerationStructureBuildTypeKHR buildType, in entry_vkGetAccelerationStructureBuildSizesKHR()
11318 VkDevice device, VkAccelerationStructureBuildTypeKHR buildType, in dynCheck_entry_vkGetAccelerationStructureBuildSizesKHR()
11352 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdTraceRaysKHR() local
11364 VkDevice device, VkDeferredOperationKHR deferredOperation, VkPipelineCache pipelineCache, in entry_vkCreateRayTracingPipelinesKHR()
11376 VkDevice device, VkDeferredOperationKHR deferredOperation, VkPipelineCache pipelineCache, in dynCheck_entry_vkCreateRayTracingPipelinesKHR()
11393 VkDevice device, VkPipeline pipeline, uint32_t firstGroup, uint32_t groupCount, size_t dataSize, in entry_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR()
11404 VkDevice device, VkPipeline pipeline, uint32_t firstGroup, uint32_t groupCount, size_t dataSize, in dynCheck_entry_vkGetRayTracingCaptureReplayShaderGroupHandlesKHR()
11438 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdTraceRaysIndirectKHR() local
11451 VkDevice device, VkPipeline pipeline, uint32_t group, VkShaderGroupShaderKHR groupShader) { in entry_vkGetRayTracingShaderGroupStackSizeKHR()
11461 VkDevice device, VkPipeline pipeline, uint32_t group, VkShaderGroupShaderKHR groupShader) { in dynCheck_entry_vkGetRayTracingShaderGroupStackSizeKHR()
11485 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdSetRayTracingPipelineStackSizeKHR() local
11511 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksEXT() local
11533 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksIndirectEXT() local
11557 VkDevice device = resources->getDevice(commandBuffer); in dynCheck_entry_vkCmdDrawMeshTasksIndirectCountEXT() local
16585 void* goldfish_vulkan_get_device_proc_address(VkDevice device, const char* name) { in goldfish_vulkan_get_device_proc_address()