Lines Matching refs:GetData
149 auto& data = GetData(instance); in InitDispatchTable()
192 auto& data = GetData(dev); in InitDispatchTable()
528 …return GetData(instance).dispatch.EnumeratePhysicalDevices(instance, pPhysicalDeviceCount, pPhysic… in EnumeratePhysicalDevices()
618 return GetData(device).dispatch.GetDeviceProcAddr(device, pName); in GetDeviceProcAddr()
809 return GetData(instance).dispatch.GetInstanceProcAddr(instance, pName); in GetInstanceProcAddr()
813 GetData(physicalDevice).dispatch.GetPhysicalDeviceProperties(physicalDevice, pProperties); in GetPhysicalDeviceProperties()
817 …GetData(physicalDevice).dispatch.GetPhysicalDeviceQueueFamilyProperties(physicalDevice, pQueueFami… in GetPhysicalDeviceQueueFamilyProperties()
821 …GetData(physicalDevice).dispatch.GetPhysicalDeviceMemoryProperties(physicalDevice, pMemoryProperti… in GetPhysicalDeviceMemoryProperties()
825 GetData(physicalDevice).dispatch.GetPhysicalDeviceFeatures(physicalDevice, pFeatures); in GetPhysicalDeviceFeatures()
829 …GetData(physicalDevice).dispatch.GetPhysicalDeviceFormatProperties(physicalDevice, format, pFormat… in GetPhysicalDeviceFormatProperties()
833 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceImageFormatProperties(physicalDevice, for… in GetPhysicalDeviceImageFormatProperties()
837 GetData(device).dispatch.GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
841 return GetData(queue).dispatch.QueueSubmit(queue, submitCount, pSubmits, fence); in QueueSubmit()
845 return GetData(queue).dispatch.QueueWaitIdle(queue); in QueueWaitIdle()
849 return GetData(device).dispatch.DeviceWaitIdle(device); in DeviceWaitIdle()
853 return GetData(device).dispatch.AllocateMemory(device, pAllocateInfo, pAllocator, pMemory); in AllocateMemory()
857 GetData(device).dispatch.FreeMemory(device, memory, pAllocator); in FreeMemory()
861 return GetData(device).dispatch.MapMemory(device, memory, offset, size, flags, ppData); in MapMemory()
865 GetData(device).dispatch.UnmapMemory(device, memory); in UnmapMemory()
869 … return GetData(device).dispatch.FlushMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges); in FlushMappedMemoryRanges()
873 …return GetData(device).dispatch.InvalidateMappedMemoryRanges(device, memoryRangeCount, pMemoryRang… in InvalidateMappedMemoryRanges()
877 GetData(device).dispatch.GetDeviceMemoryCommitment(device, memory, pCommittedMemoryInBytes); in GetDeviceMemoryCommitment()
881 GetData(device).dispatch.GetBufferMemoryRequirements(device, buffer, pMemoryRequirements); in GetBufferMemoryRequirements()
885 return GetData(device).dispatch.BindBufferMemory(device, buffer, memory, memoryOffset); in BindBufferMemory()
889 GetData(device).dispatch.GetImageMemoryRequirements(device, image, pMemoryRequirements); in GetImageMemoryRequirements()
893 return GetData(device).dispatch.BindImageMemory(device, image, memory, memoryOffset); in BindImageMemory()
897 …GetData(device).dispatch.GetImageSparseMemoryRequirements(device, image, pSparseMemoryRequirementC… in GetImageSparseMemoryRequirements()
901 …GetData(physicalDevice).dispatch.GetPhysicalDeviceSparseImageFormatProperties(physicalDevice, form… in GetPhysicalDeviceSparseImageFormatProperties()
905 return GetData(queue).dispatch.QueueBindSparse(queue, bindInfoCount, pBindInfo, fence); in QueueBindSparse()
909 return GetData(device).dispatch.CreateFence(device, pCreateInfo, pAllocator, pFence); in CreateFence()
913 GetData(device).dispatch.DestroyFence(device, fence, pAllocator); in DestroyFence()
917 return GetData(device).dispatch.ResetFences(device, fenceCount, pFences); in ResetFences()
921 return GetData(device).dispatch.GetFenceStatus(device, fence); in GetFenceStatus()
925 return GetData(device).dispatch.WaitForFences(device, fenceCount, pFences, waitAll, timeout); in WaitForFences()
929 return GetData(device).dispatch.CreateSemaphore(device, pCreateInfo, pAllocator, pSemaphore); in CreateSemaphore()
933 GetData(device).dispatch.DestroySemaphore(device, semaphore, pAllocator); in DestroySemaphore()
937 return GetData(device).dispatch.CreateEvent(device, pCreateInfo, pAllocator, pEvent); in CreateEvent()
941 GetData(device).dispatch.DestroyEvent(device, event, pAllocator); in DestroyEvent()
945 return GetData(device).dispatch.GetEventStatus(device, event); in GetEventStatus()
949 return GetData(device).dispatch.SetEvent(device, event); in SetEvent()
953 return GetData(device).dispatch.ResetEvent(device, event); in ResetEvent()
957 return GetData(device).dispatch.CreateQueryPool(device, pCreateInfo, pAllocator, pQueryPool); in CreateQueryPool()
961 GetData(device).dispatch.DestroyQueryPool(device, queryPool, pAllocator); in DestroyQueryPool()
965 …return GetData(device).dispatch.GetQueryPoolResults(device, queryPool, firstQuery, queryCount, dat… in GetQueryPoolResults()
969 return GetData(device).dispatch.CreateBuffer(device, pCreateInfo, pAllocator, pBuffer); in CreateBuffer()
973 GetData(device).dispatch.DestroyBuffer(device, buffer, pAllocator); in DestroyBuffer()
977 return GetData(device).dispatch.CreateBufferView(device, pCreateInfo, pAllocator, pView); in CreateBufferView()
981 GetData(device).dispatch.DestroyBufferView(device, bufferView, pAllocator); in DestroyBufferView()
985 return GetData(device).dispatch.CreateImage(device, pCreateInfo, pAllocator, pImage); in CreateImage()
989 GetData(device).dispatch.DestroyImage(device, image, pAllocator); in DestroyImage()
993 GetData(device).dispatch.GetImageSubresourceLayout(device, image, pSubresource, pLayout); in GetImageSubresourceLayout()
997 return GetData(device).dispatch.CreateImageView(device, pCreateInfo, pAllocator, pView); in CreateImageView()
1001 GetData(device).dispatch.DestroyImageView(device, imageView, pAllocator); in DestroyImageView()
1005 …return GetData(device).dispatch.CreateShaderModule(device, pCreateInfo, pAllocator, pShaderModule); in CreateShaderModule()
1009 GetData(device).dispatch.DestroyShaderModule(device, shaderModule, pAllocator); in DestroyShaderModule()
1013 …return GetData(device).dispatch.CreatePipelineCache(device, pCreateInfo, pAllocator, pPipelineCach… in CreatePipelineCache()
1017 GetData(device).dispatch.DestroyPipelineCache(device, pipelineCache, pAllocator); in DestroyPipelineCache()
1021 return GetData(device).dispatch.GetPipelineCacheData(device, pipelineCache, pDataSize, pData); in GetPipelineCacheData()
1025 … return GetData(device).dispatch.MergePipelineCaches(device, dstCache, srcCacheCount, pSrcCaches); in MergePipelineCaches()
1029 …return GetData(device).dispatch.CreateGraphicsPipelines(device, pipelineCache, createInfoCount, pC… in CreateGraphicsPipelines()
1033 …return GetData(device).dispatch.CreateComputePipelines(device, pipelineCache, createInfoCount, pCr… in CreateComputePipelines()
1037 GetData(device).dispatch.DestroyPipeline(device, pipeline, pAllocator); in DestroyPipeline()
1041 …return GetData(device).dispatch.CreatePipelineLayout(device, pCreateInfo, pAllocator, pPipelineLay… in CreatePipelineLayout()
1045 GetData(device).dispatch.DestroyPipelineLayout(device, pipelineLayout, pAllocator); in DestroyPipelineLayout()
1049 return GetData(device).dispatch.CreateSampler(device, pCreateInfo, pAllocator, pSampler); in CreateSampler()
1053 GetData(device).dispatch.DestroySampler(device, sampler, pAllocator); in DestroySampler()
1057 …return GetData(device).dispatch.CreateDescriptorSetLayout(device, pCreateInfo, pAllocator, pSetLay… in CreateDescriptorSetLayout()
1061 GetData(device).dispatch.DestroyDescriptorSetLayout(device, descriptorSetLayout, pAllocator); in DestroyDescriptorSetLayout()
1065 …return GetData(device).dispatch.CreateDescriptorPool(device, pCreateInfo, pAllocator, pDescriptorP… in CreateDescriptorPool()
1069 GetData(device).dispatch.DestroyDescriptorPool(device, descriptorPool, pAllocator); in DestroyDescriptorPool()
1073 return GetData(device).dispatch.ResetDescriptorPool(device, descriptorPool, flags); in ResetDescriptorPool()
1077 return GetData(device).dispatch.AllocateDescriptorSets(device, pAllocateInfo, pDescriptorSets); in AllocateDescriptorSets()
1081 …return GetData(device).dispatch.FreeDescriptorSets(device, descriptorPool, descriptorSetCount, pDe… in FreeDescriptorSets()
1085 …GetData(device).dispatch.UpdateDescriptorSets(device, descriptorWriteCount, pDescriptorWrites, des… in UpdateDescriptorSets()
1089 … return GetData(device).dispatch.CreateFramebuffer(device, pCreateInfo, pAllocator, pFramebuffer); in CreateFramebuffer()
1093 GetData(device).dispatch.DestroyFramebuffer(device, framebuffer, pAllocator); in DestroyFramebuffer()
1097 return GetData(device).dispatch.CreateRenderPass(device, pCreateInfo, pAllocator, pRenderPass); in CreateRenderPass()
1101 GetData(device).dispatch.DestroyRenderPass(device, renderPass, pAllocator); in DestroyRenderPass()
1105 GetData(device).dispatch.GetRenderAreaGranularity(device, renderPass, pGranularity); in GetRenderAreaGranularity()
1109 … return GetData(device).dispatch.CreateCommandPool(device, pCreateInfo, pAllocator, pCommandPool); in CreateCommandPool()
1113 GetData(device).dispatch.DestroyCommandPool(device, commandPool, pAllocator); in DestroyCommandPool()
1117 return GetData(device).dispatch.ResetCommandPool(device, commandPool, flags); in ResetCommandPool()
1121 return GetData(device).dispatch.AllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers); in AllocateCommandBuffers()
1125 …GetData(device).dispatch.FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffe… in FreeCommandBuffers()
1129 return GetData(commandBuffer).dispatch.BeginCommandBuffer(commandBuffer, pBeginInfo); in BeginCommandBuffer()
1133 return GetData(commandBuffer).dispatch.EndCommandBuffer(commandBuffer); in EndCommandBuffer()
1137 return GetData(commandBuffer).dispatch.ResetCommandBuffer(commandBuffer, flags); in ResetCommandBuffer()
1141 GetData(commandBuffer).dispatch.CmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline); in CmdBindPipeline()
1145 …GetData(commandBuffer).dispatch.CmdSetViewport(commandBuffer, firstViewport, viewportCount, pViewp… in CmdSetViewport()
1149 …GetData(commandBuffer).dispatch.CmdSetScissor(commandBuffer, firstScissor, scissorCount, pScissors… in CmdSetScissor()
1153 GetData(commandBuffer).dispatch.CmdSetLineWidth(commandBuffer, lineWidth); in CmdSetLineWidth()
1157 …GetData(commandBuffer).dispatch.CmdSetDepthBias(commandBuffer, depthBiasConstantFactor, depthBiasC… in CmdSetDepthBias()
1161 GetData(commandBuffer).dispatch.CmdSetBlendConstants(commandBuffer, blendConstants); in CmdSetBlendConstants()
1165 … GetData(commandBuffer).dispatch.CmdSetDepthBounds(commandBuffer, minDepthBounds, maxDepthBounds); in CmdSetDepthBounds()
1169 GetData(commandBuffer).dispatch.CmdSetStencilCompareMask(commandBuffer, faceMask, compareMask); in CmdSetStencilCompareMask()
1173 GetData(commandBuffer).dispatch.CmdSetStencilWriteMask(commandBuffer, faceMask, writeMask); in CmdSetStencilWriteMask()
1177 GetData(commandBuffer).dispatch.CmdSetStencilReference(commandBuffer, faceMask, reference); in CmdSetStencilReference()
1181 …GetData(commandBuffer).dispatch.CmdBindDescriptorSets(commandBuffer, pipelineBindPoint, layout, fi… in CmdBindDescriptorSets()
1185 GetData(commandBuffer).dispatch.CmdBindIndexBuffer(commandBuffer, buffer, offset, indexType); in CmdBindIndexBuffer()
1189 …GetData(commandBuffer).dispatch.CmdBindVertexBuffers(commandBuffer, firstBinding, bindingCount, pB… in CmdBindVertexBuffers()
1193 …GetData(commandBuffer).dispatch.CmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, fi… in CmdDraw()
1197 …GetData(commandBuffer).dispatch.CmdDrawIndexed(commandBuffer, indexCount, instanceCount, firstInde… in CmdDrawIndexed()
1201 … GetData(commandBuffer).dispatch.CmdDrawIndirect(commandBuffer, buffer, offset, drawCount, stride); in CmdDrawIndirect()
1205 …GetData(commandBuffer).dispatch.CmdDrawIndexedIndirect(commandBuffer, buffer, offset, drawCount, s… in CmdDrawIndexedIndirect()
1209 … GetData(commandBuffer).dispatch.CmdDispatch(commandBuffer, groupCountX, groupCountY, groupCountZ); in CmdDispatch()
1213 GetData(commandBuffer).dispatch.CmdDispatchIndirect(commandBuffer, buffer, offset); in CmdDispatchIndirect()
1217 …GetData(commandBuffer).dispatch.CmdCopyBuffer(commandBuffer, srcBuffer, dstBuffer, regionCount, pR… in CmdCopyBuffer()
1221 …GetData(commandBuffer).dispatch.CmdCopyImage(commandBuffer, srcImage, srcImageLayout, dstImage, ds… in CmdCopyImage()
1225 …GetData(commandBuffer).dispatch.CmdBlitImage(commandBuffer, srcImage, srcImageLayout, dstImage, ds… in CmdBlitImage()
1229 …GetData(commandBuffer).dispatch.CmdCopyBufferToImage(commandBuffer, srcBuffer, dstImage, dstImageL… in CmdCopyBufferToImage()
1233 …GetData(commandBuffer).dispatch.CmdCopyImageToBuffer(commandBuffer, srcImage, srcImageLayout, dstB… in CmdCopyImageToBuffer()
1237 …GetData(commandBuffer).dispatch.CmdUpdateBuffer(commandBuffer, dstBuffer, dstOffset, dataSize, pDa… in CmdUpdateBuffer()
1241 GetData(commandBuffer).dispatch.CmdFillBuffer(commandBuffer, dstBuffer, dstOffset, size, data); in CmdFillBuffer()
1245 …GetData(commandBuffer).dispatch.CmdClearColorImage(commandBuffer, image, imageLayout, pColor, rang… in CmdClearColorImage()
1249 …GetData(commandBuffer).dispatch.CmdClearDepthStencilImage(commandBuffer, image, imageLayout, pDept… in CmdClearDepthStencilImage()
1253 …GetData(commandBuffer).dispatch.CmdClearAttachments(commandBuffer, attachmentCount, pAttachments, … in CmdClearAttachments()
1257 …GetData(commandBuffer).dispatch.CmdResolveImage(commandBuffer, srcImage, srcImageLayout, dstImage,… in CmdResolveImage()
1261 GetData(commandBuffer).dispatch.CmdSetEvent(commandBuffer, event, stageMask); in CmdSetEvent()
1265 GetData(commandBuffer).dispatch.CmdResetEvent(commandBuffer, event, stageMask); in CmdResetEvent()
1269 …GetData(commandBuffer).dispatch.CmdWaitEvents(commandBuffer, eventCount, pEvents, srcStageMask, ds… in CmdWaitEvents()
1273 …GetData(commandBuffer).dispatch.CmdPipelineBarrier(commandBuffer, srcStageMask, dstStageMask, depe… in CmdPipelineBarrier()
1277 GetData(commandBuffer).dispatch.CmdBeginQuery(commandBuffer, queryPool, query, flags); in CmdBeginQuery()
1281 GetData(commandBuffer).dispatch.CmdEndQuery(commandBuffer, queryPool, query); in CmdEndQuery()
1285 …GetData(commandBuffer).dispatch.CmdResetQueryPool(commandBuffer, queryPool, firstQuery, queryCount… in CmdResetQueryPool()
1289 … GetData(commandBuffer).dispatch.CmdWriteTimestamp(commandBuffer, pipelineStage, queryPool, query); in CmdWriteTimestamp()
1293 …GetData(commandBuffer).dispatch.CmdCopyQueryPoolResults(commandBuffer, queryPool, firstQuery, quer… in CmdCopyQueryPoolResults()
1297 …GetData(commandBuffer).dispatch.CmdPushConstants(commandBuffer, layout, stageFlags, offset, size, … in CmdPushConstants()
1301 GetData(commandBuffer).dispatch.CmdBeginRenderPass(commandBuffer, pRenderPassBegin, contents); in CmdBeginRenderPass()
1305 GetData(commandBuffer).dispatch.CmdNextSubpass(commandBuffer, contents); in CmdNextSubpass()
1309 GetData(commandBuffer).dispatch.CmdEndRenderPass(commandBuffer); in CmdEndRenderPass()
1313 …GetData(commandBuffer).dispatch.CmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuff… in CmdExecuteCommands()
1317 return GetData(device).dispatch.BindBufferMemory2(device, bindInfoCount, pBindInfos); in BindBufferMemory2()
1321 return GetData(device).dispatch.BindImageMemory2(device, bindInfoCount, pBindInfos); in BindImageMemory2()
1325 …GetData(device).dispatch.GetDeviceGroupPeerMemoryFeatures(device, heapIndex, localDeviceIndex, rem… in GetDeviceGroupPeerMemoryFeatures()
1329 GetData(commandBuffer).dispatch.CmdSetDeviceMask(commandBuffer, deviceMask); in CmdSetDeviceMask()
1333 …GetData(commandBuffer).dispatch.CmdDispatchBase(commandBuffer, baseGroupX, baseGroupY, baseGroupZ,… in CmdDispatchBase()
1337 …return GetData(instance).dispatch.EnumeratePhysicalDeviceGroups(instance, pPhysicalDeviceGroupCoun… in EnumeratePhysicalDeviceGroups()
1341 GetData(device).dispatch.GetImageMemoryRequirements2(device, pInfo, pMemoryRequirements); in GetImageMemoryRequirements2()
1345 GetData(device).dispatch.GetBufferMemoryRequirements2(device, pInfo, pMemoryRequirements); in GetBufferMemoryRequirements2()
1349 …GetData(device).dispatch.GetImageSparseMemoryRequirements2(device, pInfo, pSparseMemoryRequirement… in GetImageSparseMemoryRequirements2()
1353 GetData(physicalDevice).dispatch.GetPhysicalDeviceFeatures2(physicalDevice, pFeatures); in GetPhysicalDeviceFeatures2()
1357 GetData(physicalDevice).dispatch.GetPhysicalDeviceProperties2(physicalDevice, pProperties); in GetPhysicalDeviceProperties2()
1361 …GetData(physicalDevice).dispatch.GetPhysicalDeviceFormatProperties2(physicalDevice, format, pForma… in GetPhysicalDeviceFormatProperties2()
1365 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceImageFormatProperties2(physicalDevice, pI… in GetPhysicalDeviceImageFormatProperties2()
1369 …GetData(physicalDevice).dispatch.GetPhysicalDeviceQueueFamilyProperties2(physicalDevice, pQueueFam… in GetPhysicalDeviceQueueFamilyProperties2()
1373 …GetData(physicalDevice).dispatch.GetPhysicalDeviceMemoryProperties2(physicalDevice, pMemoryPropert… in GetPhysicalDeviceMemoryProperties2()
1377 …GetData(physicalDevice).dispatch.GetPhysicalDeviceSparseImageFormatProperties2(physicalDevice, pFo… in GetPhysicalDeviceSparseImageFormatProperties2()
1381 GetData(device).dispatch.TrimCommandPool(device, commandPool, flags); in TrimCommandPool()
1385 GetData(device).dispatch.GetDeviceQueue2(device, pQueueInfo, pQueue); in GetDeviceQueue2()
1389 …return GetData(device).dispatch.CreateSamplerYcbcrConversion(device, pCreateInfo, pAllocator, pYcb… in CreateSamplerYcbcrConversion()
1393 GetData(device).dispatch.DestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in DestroySamplerYcbcrConversion()
1397 …return GetData(device).dispatch.CreateDescriptorUpdateTemplate(device, pCreateInfo, pAllocator, pD… in CreateDescriptorUpdateTemplate()
1401 …GetData(device).dispatch.DestroyDescriptorUpdateTemplate(device, descriptorUpdateTemplate, pAlloca… in DestroyDescriptorUpdateTemplate()
1405 …GetData(device).dispatch.UpdateDescriptorSetWithTemplate(device, descriptorSet, descriptorUpdateTe… in UpdateDescriptorSetWithTemplate()
1409 …GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalBufferProperties(physicalDevice, pExtern… in GetPhysicalDeviceExternalBufferProperties()
1413 …GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalFenceProperties(physicalDevice, pExterna… in GetPhysicalDeviceExternalFenceProperties()
1417 …GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalSemaphoreProperties(physicalDevice, pExt… in GetPhysicalDeviceExternalSemaphoreProperties()
1421 GetData(device).dispatch.GetDescriptorSetLayoutSupport(device, pCreateInfo, pSupport); in GetDescriptorSetLayoutSupport()
1425 GetData(instance).dispatch.DestroySurfaceKHR(instance, surface, pAllocator); in DestroySurfaceKHR()
1429 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceSupportKHR(physicalDevice, queueFa… in GetPhysicalDeviceSurfaceSupportKHR()
1433 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceCapabilitiesKHR(physicalDevice, su… in GetPhysicalDeviceSurfaceCapabilitiesKHR()
1437 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceFormatsKHR(physicalDevice, surface… in GetPhysicalDeviceSurfaceFormatsKHR()
1441 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfacePresentModesKHR(physicalDevice, su… in GetPhysicalDeviceSurfacePresentModesKHR()
1445 return GetData(device).dispatch.CreateSwapchainKHR(device, pCreateInfo, pAllocator, pSwapchain); in CreateSwapchainKHR()
1449 GetData(device).dispatch.DestroySwapchainKHR(device, swapchain, pAllocator); in DestroySwapchainKHR()
1453 …return GetData(device).dispatch.GetSwapchainImagesKHR(device, swapchain, pSwapchainImageCount, pSw… in GetSwapchainImagesKHR()
1457 …return GetData(device).dispatch.AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, … in AcquireNextImageKHR()
1461 return GetData(queue).dispatch.QueuePresentKHR(queue, pPresentInfo); in QueuePresentKHR()
1465 …return GetData(device).dispatch.GetDeviceGroupPresentCapabilitiesKHR(device, pDeviceGroupPresentCa… in GetDeviceGroupPresentCapabilitiesKHR()
1469 return GetData(device).dispatch.GetDeviceGroupSurfacePresentModesKHR(device, surface, pModes); in GetDeviceGroupSurfacePresentModesKHR()
1473 …return GetData(physicalDevice).dispatch.GetPhysicalDevicePresentRectanglesKHR(physicalDevice, surf… in GetPhysicalDevicePresentRectanglesKHR()
1477 return GetData(device).dispatch.AcquireNextImage2KHR(device, pAcquireInfo, pImageIndex); in AcquireNextImage2KHR()
1481 …return GetData(instance).dispatch.CreateAndroidSurfaceKHR(instance, pCreateInfo, pAllocator, pSurf… in CreateAndroidSurfaceKHR()
1485 …return GetData(device).dispatch.GetAndroidHardwareBufferPropertiesANDROID(device, buffer, pPropert… in GetAndroidHardwareBufferPropertiesANDROID()
1489 return GetData(device).dispatch.GetMemoryAndroidHardwareBufferANDROID(device, pInfo, pBuffer); in GetMemoryAndroidHardwareBufferANDROID()