Lines Matching refs:anv_device
1750 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceProcAddr()
1751 return anv_device->dispatch.vkGetDeviceProcAddr(device, pName); in anv_GetDeviceProcAddr()
1756 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyDevice()
1757 return anv_device->dispatch.vkDestroyDevice(device, pAllocator); in anv_DestroyDevice()
1762 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceQueue()
1763 … return anv_device->dispatch.vkGetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in anv_GetDeviceQueue()
1780 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DeviceWaitIdle()
1781 return anv_device->dispatch.vkDeviceWaitIdle(device); in anv_DeviceWaitIdle()
1786 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AllocateMemory()
1787 return anv_device->dispatch.vkAllocateMemory(device, pAllocateInfo, pAllocator, pMemory); in anv_AllocateMemory()
1792 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_FreeMemory()
1793 return anv_device->dispatch.vkFreeMemory(device, memory, pAllocator); in anv_FreeMemory()
1798 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_MapMemory()
1799 return anv_device->dispatch.vkMapMemory(device, memory, offset, size, flags, ppData); in anv_MapMemory()
1804 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_UnmapMemory()
1805 return anv_device->dispatch.vkUnmapMemory(device, memory); in anv_UnmapMemory()
1810 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_FlushMappedMemoryRanges()
1811 … return anv_device->dispatch.vkFlushMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges); in anv_FlushMappedMemoryRanges()
1816 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_InvalidateMappedMemoryRanges()
1817 …return anv_device->dispatch.vkInvalidateMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges… in anv_InvalidateMappedMemoryRanges()
1822 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceMemoryCommitment()
1823 … return anv_device->dispatch.vkGetDeviceMemoryCommitment(device, memory, pCommittedMemoryInBytes); in anv_GetDeviceMemoryCommitment()
1828 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetBufferMemoryRequirements()
1829 … return anv_device->dispatch.vkGetBufferMemoryRequirements(device, buffer, pMemoryRequirements); in anv_GetBufferMemoryRequirements()
1834 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_BindBufferMemory()
1835 return anv_device->dispatch.vkBindBufferMemory(device, buffer, memory, memoryOffset); in anv_BindBufferMemory()
1840 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageMemoryRequirements()
1841 … return anv_device->dispatch.vkGetImageMemoryRequirements(device, image, pMemoryRequirements); in anv_GetImageMemoryRequirements()
1846 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_BindImageMemory()
1847 return anv_device->dispatch.vkBindImageMemory(device, image, memory, memoryOffset); in anv_BindImageMemory()
1852 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageSparseMemoryRequirements()
1853 …return anv_device->dispatch.vkGetImageSparseMemoryRequirements(device, image, pSparseMemoryRequire… in anv_GetImageSparseMemoryRequirements()
1864 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateFence()
1865 return anv_device->dispatch.vkCreateFence(device, pCreateInfo, pAllocator, pFence); in anv_CreateFence()
1870 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyFence()
1871 return anv_device->dispatch.vkDestroyFence(device, fence, pAllocator); in anv_DestroyFence()
1876 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ResetFences()
1877 return anv_device->dispatch.vkResetFences(device, fenceCount, pFences); in anv_ResetFences()
1882 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetFenceStatus()
1883 return anv_device->dispatch.vkGetFenceStatus(device, fence); in anv_GetFenceStatus()
1888 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_WaitForFences()
1889 … return anv_device->dispatch.vkWaitForFences(device, fenceCount, pFences, waitAll, timeout); in anv_WaitForFences()
1894 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateSemaphore()
1895 … return anv_device->dispatch.vkCreateSemaphore(device, pCreateInfo, pAllocator, pSemaphore); in anv_CreateSemaphore()
1900 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroySemaphore()
1901 return anv_device->dispatch.vkDestroySemaphore(device, semaphore, pAllocator); in anv_DestroySemaphore()
1906 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateEvent()
1907 return anv_device->dispatch.vkCreateEvent(device, pCreateInfo, pAllocator, pEvent); in anv_CreateEvent()
1912 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyEvent()
1913 return anv_device->dispatch.vkDestroyEvent(device, event, pAllocator); in anv_DestroyEvent()
1918 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetEventStatus()
1919 return anv_device->dispatch.vkGetEventStatus(device, event); in anv_GetEventStatus()
1924 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_SetEvent()
1925 return anv_device->dispatch.vkSetEvent(device, event); in anv_SetEvent()
1930 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ResetEvent()
1931 return anv_device->dispatch.vkResetEvent(device, event); in anv_ResetEvent()
1936 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateQueryPool()
1937 … return anv_device->dispatch.vkCreateQueryPool(device, pCreateInfo, pAllocator, pQueryPool); in anv_CreateQueryPool()
1942 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyQueryPool()
1943 return anv_device->dispatch.vkDestroyQueryPool(device, queryPool, pAllocator); in anv_DestroyQueryPool()
1948 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetQueryPoolResults()
1949 …return anv_device->dispatch.vkGetQueryPoolResults(device, queryPool, firstQuery, queryCount, dataS… in anv_GetQueryPoolResults()
1954 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ResetQueryPool()
1955 return anv_device->dispatch.vkResetQueryPool(device, queryPool, firstQuery, queryCount); in anv_ResetQueryPool()
1960 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateBuffer()
1961 return anv_device->dispatch.vkCreateBuffer(device, pCreateInfo, pAllocator, pBuffer); in anv_CreateBuffer()
1966 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyBuffer()
1967 return anv_device->dispatch.vkDestroyBuffer(device, buffer, pAllocator); in anv_DestroyBuffer()
1972 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateBufferView()
1973 return anv_device->dispatch.vkCreateBufferView(device, pCreateInfo, pAllocator, pView); in anv_CreateBufferView()
1978 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyBufferView()
1979 return anv_device->dispatch.vkDestroyBufferView(device, bufferView, pAllocator); in anv_DestroyBufferView()
1984 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateImage()
1985 return anv_device->dispatch.vkCreateImage(device, pCreateInfo, pAllocator, pImage); in anv_CreateImage()
1990 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyImage()
1991 return anv_device->dispatch.vkDestroyImage(device, image, pAllocator); in anv_DestroyImage()
1996 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageSubresourceLayout()
1997 … return anv_device->dispatch.vkGetImageSubresourceLayout(device, image, pSubresource, pLayout); in anv_GetImageSubresourceLayout()
2002 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateImageView()
2003 return anv_device->dispatch.vkCreateImageView(device, pCreateInfo, pAllocator, pView); in anv_CreateImageView()
2008 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyImageView()
2009 return anv_device->dispatch.vkDestroyImageView(device, imageView, pAllocator); in anv_DestroyImageView()
2014 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateShaderModule()
2015 … return anv_device->dispatch.vkCreateShaderModule(device, pCreateInfo, pAllocator, pShaderModule); in anv_CreateShaderModule()
2020 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyShaderModule()
2021 return anv_device->dispatch.vkDestroyShaderModule(device, shaderModule, pAllocator); in anv_DestroyShaderModule()
2026 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreatePipelineCache()
2027 …return anv_device->dispatch.vkCreatePipelineCache(device, pCreateInfo, pAllocator, pPipelineCache); in anv_CreatePipelineCache()
2032 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyPipelineCache()
2033 return anv_device->dispatch.vkDestroyPipelineCache(device, pipelineCache, pAllocator); in anv_DestroyPipelineCache()
2038 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPipelineCacheData()
2039 … return anv_device->dispatch.vkGetPipelineCacheData(device, pipelineCache, pDataSize, pData); in anv_GetPipelineCacheData()
2044 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_MergePipelineCaches()
2045 … return anv_device->dispatch.vkMergePipelineCaches(device, dstCache, srcCacheCount, pSrcCaches); in anv_MergePipelineCaches()
2050 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateGraphicsPipelines()
2051 …return anv_device->dispatch.vkCreateGraphicsPipelines(device, pipelineCache, createInfoCount, pCre… in anv_CreateGraphicsPipelines()
2056 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateComputePipelines()
2057 …return anv_device->dispatch.vkCreateComputePipelines(device, pipelineCache, createInfoCount, pCrea… in anv_CreateComputePipelines()
2062 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyPipeline()
2063 return anv_device->dispatch.vkDestroyPipeline(device, pipeline, pAllocator); in anv_DestroyPipeline()
2068 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreatePipelineLayout()
2069 …return anv_device->dispatch.vkCreatePipelineLayout(device, pCreateInfo, pAllocator, pPipelineLayou… in anv_CreatePipelineLayout()
2074 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyPipelineLayout()
2075 return anv_device->dispatch.vkDestroyPipelineLayout(device, pipelineLayout, pAllocator); in anv_DestroyPipelineLayout()
2080 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateSampler()
2081 return anv_device->dispatch.vkCreateSampler(device, pCreateInfo, pAllocator, pSampler); in anv_CreateSampler()
2086 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroySampler()
2087 return anv_device->dispatch.vkDestroySampler(device, sampler, pAllocator); in anv_DestroySampler()
2092 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateDescriptorSetLayout()
2093 …return anv_device->dispatch.vkCreateDescriptorSetLayout(device, pCreateInfo, pAllocator, pSetLayou… in anv_CreateDescriptorSetLayout()
2098 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyDescriptorSetLayout()
2099 … return anv_device->dispatch.vkDestroyDescriptorSetLayout(device, descriptorSetLayout, pAllocator); in anv_DestroyDescriptorSetLayout()
2104 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateDescriptorPool()
2105 …return anv_device->dispatch.vkCreateDescriptorPool(device, pCreateInfo, pAllocator, pDescriptorPoo… in anv_CreateDescriptorPool()
2110 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyDescriptorPool()
2111 return anv_device->dispatch.vkDestroyDescriptorPool(device, descriptorPool, pAllocator); in anv_DestroyDescriptorPool()
2116 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ResetDescriptorPool()
2117 return anv_device->dispatch.vkResetDescriptorPool(device, descriptorPool, flags); in anv_ResetDescriptorPool()
2122 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AllocateDescriptorSets()
2123 … return anv_device->dispatch.vkAllocateDescriptorSets(device, pAllocateInfo, pDescriptorSets); in anv_AllocateDescriptorSets()
2128 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_FreeDescriptorSets()
2129 …return anv_device->dispatch.vkFreeDescriptorSets(device, descriptorPool, descriptorSetCount, pDesc… in anv_FreeDescriptorSets()
2134 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_UpdateDescriptorSets()
2135 …return anv_device->dispatch.vkUpdateDescriptorSets(device, descriptorWriteCount, pDescriptorWrites… in anv_UpdateDescriptorSets()
2140 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateFramebuffer()
2141 … return anv_device->dispatch.vkCreateFramebuffer(device, pCreateInfo, pAllocator, pFramebuffer); in anv_CreateFramebuffer()
2146 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyFramebuffer()
2147 return anv_device->dispatch.vkDestroyFramebuffer(device, framebuffer, pAllocator); in anv_DestroyFramebuffer()
2152 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateRenderPass()
2153 … return anv_device->dispatch.vkCreateRenderPass(device, pCreateInfo, pAllocator, pRenderPass); in anv_CreateRenderPass()
2158 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyRenderPass()
2159 return anv_device->dispatch.vkDestroyRenderPass(device, renderPass, pAllocator); in anv_DestroyRenderPass()
2164 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetRenderAreaGranularity()
2165 return anv_device->dispatch.vkGetRenderAreaGranularity(device, renderPass, pGranularity); in anv_GetRenderAreaGranularity()
2170 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateCommandPool()
2171 … return anv_device->dispatch.vkCreateCommandPool(device, pCreateInfo, pAllocator, pCommandPool); in anv_CreateCommandPool()
2176 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyCommandPool()
2177 return anv_device->dispatch.vkDestroyCommandPool(device, commandPool, pAllocator); in anv_DestroyCommandPool()
2182 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ResetCommandPool()
2183 return anv_device->dispatch.vkResetCommandPool(device, commandPool, flags); in anv_ResetCommandPool()
2188 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AllocateCommandBuffers()
2189 … return anv_device->dispatch.vkAllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers); in anv_AllocateCommandBuffers()
2194 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_FreeCommandBuffers()
2195 …return anv_device->dispatch.vkFreeCommandBuffers(device, commandPool, commandBufferCount, pCommand… in anv_FreeCommandBuffers()
2494 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateSwapchainKHR()
2495 … return anv_device->dispatch.vkCreateSwapchainKHR(device, pCreateInfo, pAllocator, pSwapchain); in anv_CreateSwapchainKHR()
2500 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroySwapchainKHR()
2501 return anv_device->dispatch.vkDestroySwapchainKHR(device, swapchain, pAllocator); in anv_DestroySwapchainKHR()
2506 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSwapchainImagesKHR()
2507 …return anv_device->dispatch.vkGetSwapchainImagesKHR(device, swapchain, pSwapchainImageCount, pSwap… in anv_GetSwapchainImagesKHR()
2512 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AcquireNextImageKHR()
2513 …return anv_device->dispatch.vkAcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pI… in anv_AcquireNextImageKHR()
2530 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_TrimCommandPool()
2531 return anv_device->dispatch.vkTrimCommandPool(device, commandPool, flags); in anv_TrimCommandPool()
2536 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetMemoryFdKHR()
2537 return anv_device->dispatch.vkGetMemoryFdKHR(device, pGetFdInfo, pFd); in anv_GetMemoryFdKHR()
2542 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetMemoryFdPropertiesKHR()
2543 …return anv_device->dispatch.vkGetMemoryFdPropertiesKHR(device, handleType, fd, pMemoryFdProperties… in anv_GetMemoryFdPropertiesKHR()
2548 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSemaphoreFdKHR()
2549 return anv_device->dispatch.vkGetSemaphoreFdKHR(device, pGetFdInfo, pFd); in anv_GetSemaphoreFdKHR()
2554 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ImportSemaphoreFdKHR()
2555 return anv_device->dispatch.vkImportSemaphoreFdKHR(device, pImportSemaphoreFdInfo); in anv_ImportSemaphoreFdKHR()
2560 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetFenceFdKHR()
2561 return anv_device->dispatch.vkGetFenceFdKHR(device, pGetFdInfo, pFd); in anv_GetFenceFdKHR()
2566 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ImportFenceFdKHR()
2567 return anv_device->dispatch.vkImportFenceFdKHR(device, pImportFenceFdInfo); in anv_ImportFenceFdKHR()
2572 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DisplayPowerControlEXT()
2573 return anv_device->dispatch.vkDisplayPowerControlEXT(device, display, pDisplayPowerInfo); in anv_DisplayPowerControlEXT()
2578 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_RegisterDeviceEventEXT()
2579 …return anv_device->dispatch.vkRegisterDeviceEventEXT(device, pDeviceEventInfo, pAllocator, pFence); in anv_RegisterDeviceEventEXT()
2584 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_RegisterDisplayEventEXT()
2585 …return anv_device->dispatch.vkRegisterDisplayEventEXT(device, display, pDisplayEventInfo, pAllocat… in anv_RegisterDisplayEventEXT()
2590 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSwapchainCounterEXT()
2591 … return anv_device->dispatch.vkGetSwapchainCounterEXT(device, swapchain, counter, pCounterValue); in anv_GetSwapchainCounterEXT()
2596 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceGroupPeerMemoryFeatures()
2597 …return anv_device->dispatch.vkGetDeviceGroupPeerMemoryFeatures(device, heapIndex, localDeviceIndex… in anv_GetDeviceGroupPeerMemoryFeatures()
2602 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_BindBufferMemory2()
2603 return anv_device->dispatch.vkBindBufferMemory2(device, bindInfoCount, pBindInfos); in anv_BindBufferMemory2()
2608 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_BindImageMemory2()
2609 return anv_device->dispatch.vkBindImageMemory2(device, bindInfoCount, pBindInfos); in anv_BindImageMemory2()
2620 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceGroupPresentCapabilitiesKHR()
2621 …return anv_device->dispatch.vkGetDeviceGroupPresentCapabilitiesKHR(device, pDeviceGroupPresentCapa… in anv_GetDeviceGroupPresentCapabilitiesKHR()
2626 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceGroupSurfacePresentModesKHR()
2627 … return anv_device->dispatch.vkGetDeviceGroupSurfacePresentModesKHR(device, surface, pModes); in anv_GetDeviceGroupSurfacePresentModesKHR()
2632 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AcquireNextImage2KHR()
2633 return anv_device->dispatch.vkAcquireNextImage2KHR(device, pAcquireInfo, pImageIndex); in anv_AcquireNextImage2KHR()
2644 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateDescriptorUpdateTemplate()
2645 …return anv_device->dispatch.vkCreateDescriptorUpdateTemplate(device, pCreateInfo, pAllocator, pDes… in anv_CreateDescriptorUpdateTemplate()
2650 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyDescriptorUpdateTemplate()
2651 …return anv_device->dispatch.vkDestroyDescriptorUpdateTemplate(device, descriptorUpdateTemplate, pA… in anv_DestroyDescriptorUpdateTemplate()
2656 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_UpdateDescriptorSetWithTemplate()
2657 …return anv_device->dispatch.vkUpdateDescriptorSetWithTemplate(device, descriptorSet, descriptorUpd… in anv_UpdateDescriptorSetWithTemplate()
2668 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetBufferMemoryRequirements2()
2669 … return anv_device->dispatch.vkGetBufferMemoryRequirements2(device, pInfo, pMemoryRequirements); in anv_GetBufferMemoryRequirements2()
2674 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageMemoryRequirements2()
2675 … return anv_device->dispatch.vkGetImageMemoryRequirements2(device, pInfo, pMemoryRequirements); in anv_GetImageMemoryRequirements2()
2680 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageSparseMemoryRequirements2()
2681 …return anv_device->dispatch.vkGetImageSparseMemoryRequirements2(device, pInfo, pSparseMemoryRequir… in anv_GetImageSparseMemoryRequirements2()
2686 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateSamplerYcbcrConversion()
2687 …return anv_device->dispatch.vkCreateSamplerYcbcrConversion(device, pCreateInfo, pAllocator, pYcbcr… in anv_CreateSamplerYcbcrConversion()
2692 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroySamplerYcbcrConversion()
2693 … return anv_device->dispatch.vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in anv_DestroySamplerYcbcrConversion()
2698 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceQueue2()
2699 return anv_device->dispatch.vkGetDeviceQueue2(device, pQueueInfo, pQueue); in anv_GetDeviceQueue2()
2704 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDescriptorSetLayoutSupport()
2705 … return anv_device->dispatch.vkGetDescriptorSetLayoutSupport(device, pCreateInfo, pSupport); in anv_GetDescriptorSetLayoutSupport()
2711 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSwapchainGrallocUsageANDROID()
2712 …return anv_device->dispatch.vkGetSwapchainGrallocUsageANDROID(device, format, imageUsage, grallocU… in anv_GetSwapchainGrallocUsageANDROID()
2719 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSwapchainGrallocUsage2ANDROID()
2720 …return anv_device->dispatch.vkGetSwapchainGrallocUsage2ANDROID(device, format, imageUsage, swapcha… in anv_GetSwapchainGrallocUsage2ANDROID()
2727 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AcquireImageANDROID()
2728 … return anv_device->dispatch.vkAcquireImageANDROID(device, image, nativeFenceFd, semaphore, fence); in anv_AcquireImageANDROID()
2742 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetCalibratedTimestampsEXT()
2743 …return anv_device->dispatch.vkGetCalibratedTimestampsEXT(device, timestampCount, pTimestampInfos, … in anv_GetCalibratedTimestampsEXT()
2748 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetMemoryHostPointerPropertiesEXT()
2749 …return anv_device->dispatch.vkGetMemoryHostPointerPropertiesEXT(device, handleType, pHostPointer, … in anv_GetMemoryHostPointerPropertiesEXT()
2754 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateRenderPass2()
2755 … return anv_device->dispatch.vkCreateRenderPass2(device, pCreateInfo, pAllocator, pRenderPass); in anv_CreateRenderPass2()
2778 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetSemaphoreCounterValue()
2779 return anv_device->dispatch.vkGetSemaphoreCounterValue(device, semaphore, pValue); in anv_GetSemaphoreCounterValue()
2784 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_WaitSemaphores()
2785 return anv_device->dispatch.vkWaitSemaphores(device, pWaitInfo, timeout); in anv_WaitSemaphores()
2790 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_SignalSemaphore()
2791 return anv_device->dispatch.vkSignalSemaphore(device, pSignalInfo); in anv_SignalSemaphore()
2797 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetAndroidHardwareBufferPropertiesANDROID()
2798 …return anv_device->dispatch.vkGetAndroidHardwareBufferPropertiesANDROID(device, buffer, pPropertie… in anv_GetAndroidHardwareBufferPropertiesANDROID()
2805 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetMemoryAndroidHardwareBufferANDROID()
2806 … return anv_device->dispatch.vkGetMemoryAndroidHardwareBufferANDROID(device, pInfo, pBuffer); in anv_GetMemoryAndroidHardwareBufferANDROID()
2860 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AcquireProfilingLockKHR()
2861 return anv_device->dispatch.vkAcquireProfilingLockKHR(device, pInfo); in anv_AcquireProfilingLockKHR()
2866 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ReleaseProfilingLockKHR()
2867 return anv_device->dispatch.vkReleaseProfilingLockKHR(device); in anv_ReleaseProfilingLockKHR()
2872 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetImageDrmFormatModifierPropertiesEXT()
2873 … return anv_device->dispatch.vkGetImageDrmFormatModifierPropertiesEXT(device, image, pProperties); in anv_GetImageDrmFormatModifierPropertiesEXT()
2878 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetBufferOpaqueCaptureAddress()
2879 return anv_device->dispatch.vkGetBufferOpaqueCaptureAddress(device, pInfo); in anv_GetBufferOpaqueCaptureAddress()
2884 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetBufferDeviceAddress()
2885 return anv_device->dispatch.vkGetBufferDeviceAddress(device, pInfo); in anv_GetBufferDeviceAddress()
2890 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_InitializePerformanceApiINTEL()
2891 return anv_device->dispatch.vkInitializePerformanceApiINTEL(device, pInitializeInfo); in anv_InitializePerformanceApiINTEL()
2896 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_UninitializePerformanceApiINTEL()
2897 return anv_device->dispatch.vkUninitializePerformanceApiINTEL(device); in anv_UninitializePerformanceApiINTEL()
2920 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_AcquirePerformanceConfigurationINTEL()
2921 …return anv_device->dispatch.vkAcquirePerformanceConfigurationINTEL(device, pAcquireInfo, pConfigur… in anv_AcquirePerformanceConfigurationINTEL()
2926 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_ReleasePerformanceConfigurationINTEL()
2927 return anv_device->dispatch.vkReleasePerformanceConfigurationINTEL(device, configuration); in anv_ReleasePerformanceConfigurationINTEL()
2938 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPerformanceParameterINTEL()
2939 return anv_device->dispatch.vkGetPerformanceParameterINTEL(device, parameter, pValue); in anv_GetPerformanceParameterINTEL()
2944 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetDeviceMemoryOpaqueCaptureAddress()
2945 return anv_device->dispatch.vkGetDeviceMemoryOpaqueCaptureAddress(device, pInfo); in anv_GetDeviceMemoryOpaqueCaptureAddress()
2950 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPipelineExecutablePropertiesKHR()
2951 …return anv_device->dispatch.vkGetPipelineExecutablePropertiesKHR(device, pPipelineInfo, pExecutabl… in anv_GetPipelineExecutablePropertiesKHR()
2956 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPipelineExecutableStatisticsKHR()
2957 …return anv_device->dispatch.vkGetPipelineExecutableStatisticsKHR(device, pExecutableInfo, pStatist… in anv_GetPipelineExecutableStatisticsKHR()
2962 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPipelineExecutableInternalRepresentationsKHR()
2963 …return anv_device->dispatch.vkGetPipelineExecutableInternalRepresentationsKHR(device, pExecutableI… in anv_GetPipelineExecutableInternalRepresentationsKHR()
3046 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreatePrivateDataSlotEXT()
3047 …return anv_device->dispatch.vkCreatePrivateDataSlotEXT(device, pCreateInfo, pAllocator, pPrivateDa… in anv_CreatePrivateDataSlotEXT()
3052 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_DestroyPrivateDataSlotEXT()
3053 … return anv_device->dispatch.vkDestroyPrivateDataSlotEXT(device, privateDataSlot, pAllocator); in anv_DestroyPrivateDataSlotEXT()
3058 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_SetPrivateDataEXT()
3059 …return anv_device->dispatch.vkSetPrivateDataEXT(device, objectType, objectHandle, privateDataSlot,… in anv_SetPrivateDataEXT()
3064 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_GetPrivateDataEXT()
3065 …return anv_device->dispatch.vkGetPrivateDataEXT(device, objectType, objectHandle, privateDataSlot,… in anv_GetPrivateDataEXT()
3106 ANV_FROM_HANDLE(anv_device, anv_device, device); in anv_CreateDmaBufImageINTEL()
3107 …return anv_device->dispatch.vkCreateDmaBufImageINTEL(device, pCreateInfo, pAllocator, pMem, pImage… in anv_CreateDmaBufImageINTEL()