Lines Matching refs:GetData

148     auto& data = GetData(instance);  in InitDispatchTable()
191 auto& data = GetData(dev); in InitDispatchTable()
553 …return GetData(instance).dispatch.EnumeratePhysicalDevices(instance, pPhysicalDeviceCount, pPhysic… in EnumeratePhysicalDevices()
646 return GetData(device).dispatch.GetDeviceProcAddr(device, pName); in GetDeviceProcAddr()
851 return GetData(instance).dispatch.GetInstanceProcAddr(instance, pName); in GetInstanceProcAddr()
855 GetData(physicalDevice).dispatch.GetPhysicalDeviceProperties(physicalDevice, pProperties); in GetPhysicalDeviceProperties()
859GetData(physicalDevice).dispatch.GetPhysicalDeviceQueueFamilyProperties(physicalDevice, pQueueFami… in GetPhysicalDeviceQueueFamilyProperties()
863GetData(physicalDevice).dispatch.GetPhysicalDeviceMemoryProperties(physicalDevice, pMemoryProperti… in GetPhysicalDeviceMemoryProperties()
867 GetData(physicalDevice).dispatch.GetPhysicalDeviceFeatures(physicalDevice, pFeatures); in GetPhysicalDeviceFeatures()
871GetData(physicalDevice).dispatch.GetPhysicalDeviceFormatProperties(physicalDevice, format, pFormat… in GetPhysicalDeviceFormatProperties()
875 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceImageFormatProperties(physicalDevice, for… in GetPhysicalDeviceImageFormatProperties()
879 GetData(device).dispatch.GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
883 return GetData(queue).dispatch.QueueSubmit(queue, submitCount, pSubmits, fence); in QueueSubmit()
887 return GetData(queue).dispatch.QueueWaitIdle(queue); in QueueWaitIdle()
891 return GetData(device).dispatch.DeviceWaitIdle(device); in DeviceWaitIdle()
895 return GetData(device).dispatch.AllocateMemory(device, pAllocateInfo, pAllocator, pMemory); in AllocateMemory()
899 GetData(device).dispatch.FreeMemory(device, memory, pAllocator); in FreeMemory()
903 return GetData(device).dispatch.MapMemory(device, memory, offset, size, flags, ppData); in MapMemory()
907 GetData(device).dispatch.UnmapMemory(device, memory); in UnmapMemory()
911 … return GetData(device).dispatch.FlushMappedMemoryRanges(device, memoryRangeCount, pMemoryRanges); in FlushMappedMemoryRanges()
915 …return GetData(device).dispatch.InvalidateMappedMemoryRanges(device, memoryRangeCount, pMemoryRang… in InvalidateMappedMemoryRanges()
919 GetData(device).dispatch.GetDeviceMemoryCommitment(device, memory, pCommittedMemoryInBytes); in GetDeviceMemoryCommitment()
923 GetData(device).dispatch.GetBufferMemoryRequirements(device, buffer, pMemoryRequirements); in GetBufferMemoryRequirements()
927 return GetData(device).dispatch.BindBufferMemory(device, buffer, memory, memoryOffset); in BindBufferMemory()
931 GetData(device).dispatch.GetImageMemoryRequirements(device, image, pMemoryRequirements); in GetImageMemoryRequirements()
935 return GetData(device).dispatch.BindImageMemory(device, image, memory, memoryOffset); in BindImageMemory()
939GetData(device).dispatch.GetImageSparseMemoryRequirements(device, image, pSparseMemoryRequirementC… in GetImageSparseMemoryRequirements()
943GetData(physicalDevice).dispatch.GetPhysicalDeviceSparseImageFormatProperties(physicalDevice, form… in GetPhysicalDeviceSparseImageFormatProperties()
947 return GetData(queue).dispatch.QueueBindSparse(queue, bindInfoCount, pBindInfo, fence); in QueueBindSparse()
951 return GetData(device).dispatch.CreateFence(device, pCreateInfo, pAllocator, pFence); in CreateFence()
955 GetData(device).dispatch.DestroyFence(device, fence, pAllocator); in DestroyFence()
959 return GetData(device).dispatch.ResetFences(device, fenceCount, pFences); in ResetFences()
963 return GetData(device).dispatch.GetFenceStatus(device, fence); in GetFenceStatus()
967 return GetData(device).dispatch.WaitForFences(device, fenceCount, pFences, waitAll, timeout); in WaitForFences()
971 return GetData(device).dispatch.CreateSemaphore(device, pCreateInfo, pAllocator, pSemaphore); in CreateSemaphore()
975 GetData(device).dispatch.DestroySemaphore(device, semaphore, pAllocator); in DestroySemaphore()
979 return GetData(device).dispatch.CreateEvent(device, pCreateInfo, pAllocator, pEvent); in CreateEvent()
983 GetData(device).dispatch.DestroyEvent(device, event, pAllocator); in DestroyEvent()
987 return GetData(device).dispatch.GetEventStatus(device, event); in GetEventStatus()
991 return GetData(device).dispatch.SetEvent(device, event); in SetEvent()
995 return GetData(device).dispatch.ResetEvent(device, event); in ResetEvent()
999 return GetData(device).dispatch.CreateQueryPool(device, pCreateInfo, pAllocator, pQueryPool); in CreateQueryPool()
1003 GetData(device).dispatch.DestroyQueryPool(device, queryPool, pAllocator); in DestroyQueryPool()
1007 …return GetData(device).dispatch.GetQueryPoolResults(device, queryPool, firstQuery, queryCount, dat… in GetQueryPoolResults()
1011 GetData(device).dispatch.ResetQueryPool(device, queryPool, firstQuery, queryCount); in ResetQueryPool()
1015 return GetData(device).dispatch.CreateBuffer(device, pCreateInfo, pAllocator, pBuffer); in CreateBuffer()
1019 GetData(device).dispatch.DestroyBuffer(device, buffer, pAllocator); in DestroyBuffer()
1023 return GetData(device).dispatch.CreateBufferView(device, pCreateInfo, pAllocator, pView); in CreateBufferView()
1027 GetData(device).dispatch.DestroyBufferView(device, bufferView, pAllocator); in DestroyBufferView()
1031 return GetData(device).dispatch.CreateImage(device, pCreateInfo, pAllocator, pImage); in CreateImage()
1035 GetData(device).dispatch.DestroyImage(device, image, pAllocator); in DestroyImage()
1039 GetData(device).dispatch.GetImageSubresourceLayout(device, image, pSubresource, pLayout); in GetImageSubresourceLayout()
1043 return GetData(device).dispatch.CreateImageView(device, pCreateInfo, pAllocator, pView); in CreateImageView()
1047 GetData(device).dispatch.DestroyImageView(device, imageView, pAllocator); in DestroyImageView()
1051 …return GetData(device).dispatch.CreateShaderModule(device, pCreateInfo, pAllocator, pShaderModule); in CreateShaderModule()
1055 GetData(device).dispatch.DestroyShaderModule(device, shaderModule, pAllocator); in DestroyShaderModule()
1059 …return GetData(device).dispatch.CreatePipelineCache(device, pCreateInfo, pAllocator, pPipelineCach… in CreatePipelineCache()
1063 GetData(device).dispatch.DestroyPipelineCache(device, pipelineCache, pAllocator); in DestroyPipelineCache()
1067 return GetData(device).dispatch.GetPipelineCacheData(device, pipelineCache, pDataSize, pData); in GetPipelineCacheData()
1071 … return GetData(device).dispatch.MergePipelineCaches(device, dstCache, srcCacheCount, pSrcCaches); in MergePipelineCaches()
1075 …return GetData(device).dispatch.CreateGraphicsPipelines(device, pipelineCache, createInfoCount, pC… in CreateGraphicsPipelines()
1079 …return GetData(device).dispatch.CreateComputePipelines(device, pipelineCache, createInfoCount, pCr… in CreateComputePipelines()
1083 GetData(device).dispatch.DestroyPipeline(device, pipeline, pAllocator); in DestroyPipeline()
1087 …return GetData(device).dispatch.CreatePipelineLayout(device, pCreateInfo, pAllocator, pPipelineLay… in CreatePipelineLayout()
1091 GetData(device).dispatch.DestroyPipelineLayout(device, pipelineLayout, pAllocator); in DestroyPipelineLayout()
1095 return GetData(device).dispatch.CreateSampler(device, pCreateInfo, pAllocator, pSampler); in CreateSampler()
1099 GetData(device).dispatch.DestroySampler(device, sampler, pAllocator); in DestroySampler()
1103 …return GetData(device).dispatch.CreateDescriptorSetLayout(device, pCreateInfo, pAllocator, pSetLay… in CreateDescriptorSetLayout()
1107 GetData(device).dispatch.DestroyDescriptorSetLayout(device, descriptorSetLayout, pAllocator); in DestroyDescriptorSetLayout()
1111 …return GetData(device).dispatch.CreateDescriptorPool(device, pCreateInfo, pAllocator, pDescriptorP… in CreateDescriptorPool()
1115 GetData(device).dispatch.DestroyDescriptorPool(device, descriptorPool, pAllocator); in DestroyDescriptorPool()
1119 return GetData(device).dispatch.ResetDescriptorPool(device, descriptorPool, flags); in ResetDescriptorPool()
1123 return GetData(device).dispatch.AllocateDescriptorSets(device, pAllocateInfo, pDescriptorSets); in AllocateDescriptorSets()
1127 …return GetData(device).dispatch.FreeDescriptorSets(device, descriptorPool, descriptorSetCount, pDe… in FreeDescriptorSets()
1131GetData(device).dispatch.UpdateDescriptorSets(device, descriptorWriteCount, pDescriptorWrites, des… in UpdateDescriptorSets()
1135 … return GetData(device).dispatch.CreateFramebuffer(device, pCreateInfo, pAllocator, pFramebuffer); in CreateFramebuffer()
1139 GetData(device).dispatch.DestroyFramebuffer(device, framebuffer, pAllocator); in DestroyFramebuffer()
1143 return GetData(device).dispatch.CreateRenderPass(device, pCreateInfo, pAllocator, pRenderPass); in CreateRenderPass()
1147 GetData(device).dispatch.DestroyRenderPass(device, renderPass, pAllocator); in DestroyRenderPass()
1151 GetData(device).dispatch.GetRenderAreaGranularity(device, renderPass, pGranularity); in GetRenderAreaGranularity()
1155 … return GetData(device).dispatch.CreateCommandPool(device, pCreateInfo, pAllocator, pCommandPool); in CreateCommandPool()
1159 GetData(device).dispatch.DestroyCommandPool(device, commandPool, pAllocator); in DestroyCommandPool()
1163 return GetData(device).dispatch.ResetCommandPool(device, commandPool, flags); in ResetCommandPool()
1167 return GetData(device).dispatch.AllocateCommandBuffers(device, pAllocateInfo, pCommandBuffers); in AllocateCommandBuffers()
1171GetData(device).dispatch.FreeCommandBuffers(device, commandPool, commandBufferCount, pCommandBuffe… in FreeCommandBuffers()
1175 return GetData(commandBuffer).dispatch.BeginCommandBuffer(commandBuffer, pBeginInfo); in BeginCommandBuffer()
1179 return GetData(commandBuffer).dispatch.EndCommandBuffer(commandBuffer); in EndCommandBuffer()
1183 return GetData(commandBuffer).dispatch.ResetCommandBuffer(commandBuffer, flags); in ResetCommandBuffer()
1187 GetData(commandBuffer).dispatch.CmdBindPipeline(commandBuffer, pipelineBindPoint, pipeline); in CmdBindPipeline()
1191GetData(commandBuffer).dispatch.CmdSetViewport(commandBuffer, firstViewport, viewportCount, pViewp… in CmdSetViewport()
1195GetData(commandBuffer).dispatch.CmdSetScissor(commandBuffer, firstScissor, scissorCount, pScissors… in CmdSetScissor()
1199 GetData(commandBuffer).dispatch.CmdSetLineWidth(commandBuffer, lineWidth); in CmdSetLineWidth()
1203GetData(commandBuffer).dispatch.CmdSetDepthBias(commandBuffer, depthBiasConstantFactor, depthBiasC… in CmdSetDepthBias()
1207 GetData(commandBuffer).dispatch.CmdSetBlendConstants(commandBuffer, blendConstants); in CmdSetBlendConstants()
1211GetData(commandBuffer).dispatch.CmdSetDepthBounds(commandBuffer, minDepthBounds, maxDepthBounds); in CmdSetDepthBounds()
1215 GetData(commandBuffer).dispatch.CmdSetStencilCompareMask(commandBuffer, faceMask, compareMask); in CmdSetStencilCompareMask()
1219 GetData(commandBuffer).dispatch.CmdSetStencilWriteMask(commandBuffer, faceMask, writeMask); in CmdSetStencilWriteMask()
1223 GetData(commandBuffer).dispatch.CmdSetStencilReference(commandBuffer, faceMask, reference); in CmdSetStencilReference()
1227GetData(commandBuffer).dispatch.CmdBindDescriptorSets(commandBuffer, pipelineBindPoint, layout, fi… in CmdBindDescriptorSets()
1231 GetData(commandBuffer).dispatch.CmdBindIndexBuffer(commandBuffer, buffer, offset, indexType); in CmdBindIndexBuffer()
1235GetData(commandBuffer).dispatch.CmdBindVertexBuffers(commandBuffer, firstBinding, bindingCount, pB… in CmdBindVertexBuffers()
1239GetData(commandBuffer).dispatch.CmdDraw(commandBuffer, vertexCount, instanceCount, firstVertex, fi… in CmdDraw()
1243GetData(commandBuffer).dispatch.CmdDrawIndexed(commandBuffer, indexCount, instanceCount, firstInde… in CmdDrawIndexed()
1247GetData(commandBuffer).dispatch.CmdDrawIndirect(commandBuffer, buffer, offset, drawCount, stride); in CmdDrawIndirect()
1251GetData(commandBuffer).dispatch.CmdDrawIndexedIndirect(commandBuffer, buffer, offset, drawCount, s… in CmdDrawIndexedIndirect()
1255GetData(commandBuffer).dispatch.CmdDispatch(commandBuffer, groupCountX, groupCountY, groupCountZ); in CmdDispatch()
1259 GetData(commandBuffer).dispatch.CmdDispatchIndirect(commandBuffer, buffer, offset); in CmdDispatchIndirect()
1263GetData(commandBuffer).dispatch.CmdCopyBuffer(commandBuffer, srcBuffer, dstBuffer, regionCount, pR… in CmdCopyBuffer()
1267GetData(commandBuffer).dispatch.CmdCopyImage(commandBuffer, srcImage, srcImageLayout, dstImage, ds… in CmdCopyImage()
1271GetData(commandBuffer).dispatch.CmdBlitImage(commandBuffer, srcImage, srcImageLayout, dstImage, ds… in CmdBlitImage()
1275GetData(commandBuffer).dispatch.CmdCopyBufferToImage(commandBuffer, srcBuffer, dstImage, dstImageL… in CmdCopyBufferToImage()
1279GetData(commandBuffer).dispatch.CmdCopyImageToBuffer(commandBuffer, srcImage, srcImageLayout, dstB… in CmdCopyImageToBuffer()
1283GetData(commandBuffer).dispatch.CmdUpdateBuffer(commandBuffer, dstBuffer, dstOffset, dataSize, pDa… in CmdUpdateBuffer()
1287 GetData(commandBuffer).dispatch.CmdFillBuffer(commandBuffer, dstBuffer, dstOffset, size, data); in CmdFillBuffer()
1291GetData(commandBuffer).dispatch.CmdClearColorImage(commandBuffer, image, imageLayout, pColor, rang… in CmdClearColorImage()
1295GetData(commandBuffer).dispatch.CmdClearDepthStencilImage(commandBuffer, image, imageLayout, pDept… in CmdClearDepthStencilImage()
1299GetData(commandBuffer).dispatch.CmdClearAttachments(commandBuffer, attachmentCount, pAttachments, … in CmdClearAttachments()
1303GetData(commandBuffer).dispatch.CmdResolveImage(commandBuffer, srcImage, srcImageLayout, dstImage,… in CmdResolveImage()
1307 GetData(commandBuffer).dispatch.CmdSetEvent(commandBuffer, event, stageMask); in CmdSetEvent()
1311 GetData(commandBuffer).dispatch.CmdResetEvent(commandBuffer, event, stageMask); in CmdResetEvent()
1315GetData(commandBuffer).dispatch.CmdWaitEvents(commandBuffer, eventCount, pEvents, srcStageMask, ds… in CmdWaitEvents()
1319GetData(commandBuffer).dispatch.CmdPipelineBarrier(commandBuffer, srcStageMask, dstStageMask, depe… in CmdPipelineBarrier()
1323 GetData(commandBuffer).dispatch.CmdBeginQuery(commandBuffer, queryPool, query, flags); in CmdBeginQuery()
1327 GetData(commandBuffer).dispatch.CmdEndQuery(commandBuffer, queryPool, query); in CmdEndQuery()
1331GetData(commandBuffer).dispatch.CmdResetQueryPool(commandBuffer, queryPool, firstQuery, queryCount… in CmdResetQueryPool()
1335GetData(commandBuffer).dispatch.CmdWriteTimestamp(commandBuffer, pipelineStage, queryPool, query); in CmdWriteTimestamp()
1339GetData(commandBuffer).dispatch.CmdCopyQueryPoolResults(commandBuffer, queryPool, firstQuery, quer… in CmdCopyQueryPoolResults()
1343GetData(commandBuffer).dispatch.CmdPushConstants(commandBuffer, layout, stageFlags, offset, size, … in CmdPushConstants()
1347 GetData(commandBuffer).dispatch.CmdBeginRenderPass(commandBuffer, pRenderPassBegin, contents); in CmdBeginRenderPass()
1351 GetData(commandBuffer).dispatch.CmdNextSubpass(commandBuffer, contents); in CmdNextSubpass()
1355 GetData(commandBuffer).dispatch.CmdEndRenderPass(commandBuffer); in CmdEndRenderPass()
1359GetData(commandBuffer).dispatch.CmdExecuteCommands(commandBuffer, commandBufferCount, pCommandBuff… in CmdExecuteCommands()
1363 …return GetData(instance).dispatch.CreateAndroidSurfaceKHR(instance, pCreateInfo, pAllocator, pSurf… in CreateAndroidSurfaceKHR()
1367 GetData(instance).dispatch.DestroySurfaceKHR(instance, surface, pAllocator); in DestroySurfaceKHR()
1371 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceSupportKHR(physicalDevice, queueFa… in GetPhysicalDeviceSurfaceSupportKHR()
1375 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceCapabilitiesKHR(physicalDevice, su… in GetPhysicalDeviceSurfaceCapabilitiesKHR()
1379 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfaceFormatsKHR(physicalDevice, surface… in GetPhysicalDeviceSurfaceFormatsKHR()
1383 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceSurfacePresentModesKHR(physicalDevice, su… in GetPhysicalDeviceSurfacePresentModesKHR()
1387 return GetData(device).dispatch.CreateSwapchainKHR(device, pCreateInfo, pAllocator, pSwapchain); in CreateSwapchainKHR()
1391 GetData(device).dispatch.DestroySwapchainKHR(device, swapchain, pAllocator); in DestroySwapchainKHR()
1395 …return GetData(device).dispatch.GetSwapchainImagesKHR(device, swapchain, pSwapchainImageCount, pSw… in GetSwapchainImagesKHR()
1399 …return GetData(device).dispatch.AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, … in AcquireNextImageKHR()
1403 return GetData(queue).dispatch.QueuePresentKHR(queue, pPresentInfo); in QueuePresentKHR()
1407 GetData(physicalDevice).dispatch.GetPhysicalDeviceFeatures2(physicalDevice, pFeatures); in GetPhysicalDeviceFeatures2()
1411 GetData(physicalDevice).dispatch.GetPhysicalDeviceProperties2(physicalDevice, pProperties); in GetPhysicalDeviceProperties2()
1415GetData(physicalDevice).dispatch.GetPhysicalDeviceFormatProperties2(physicalDevice, format, pForma… in GetPhysicalDeviceFormatProperties2()
1419 …return GetData(physicalDevice).dispatch.GetPhysicalDeviceImageFormatProperties2(physicalDevice, pI… in GetPhysicalDeviceImageFormatProperties2()
1423GetData(physicalDevice).dispatch.GetPhysicalDeviceQueueFamilyProperties2(physicalDevice, pQueueFam… in GetPhysicalDeviceQueueFamilyProperties2()
1427GetData(physicalDevice).dispatch.GetPhysicalDeviceMemoryProperties2(physicalDevice, pMemoryPropert… in GetPhysicalDeviceMemoryProperties2()
1431GetData(physicalDevice).dispatch.GetPhysicalDeviceSparseImageFormatProperties2(physicalDevice, pFo… in GetPhysicalDeviceSparseImageFormatProperties2()
1435 GetData(device).dispatch.TrimCommandPool(device, commandPool, flags); in TrimCommandPool()
1439GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalBufferProperties(physicalDevice, pExtern… in GetPhysicalDeviceExternalBufferProperties()
1443GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalSemaphoreProperties(physicalDevice, pExt… in GetPhysicalDeviceExternalSemaphoreProperties()
1447GetData(physicalDevice).dispatch.GetPhysicalDeviceExternalFenceProperties(physicalDevice, pExterna… in GetPhysicalDeviceExternalFenceProperties()
1451 …return GetData(instance).dispatch.EnumeratePhysicalDeviceGroups(instance, pPhysicalDeviceGroupCoun… in EnumeratePhysicalDeviceGroups()
1455GetData(device).dispatch.GetDeviceGroupPeerMemoryFeatures(device, heapIndex, localDeviceIndex, rem… in GetDeviceGroupPeerMemoryFeatures()
1459 return GetData(device).dispatch.BindBufferMemory2(device, bindInfoCount, pBindInfos); in BindBufferMemory2()
1463 return GetData(device).dispatch.BindImageMemory2(device, bindInfoCount, pBindInfos); in BindImageMemory2()
1467 GetData(commandBuffer).dispatch.CmdSetDeviceMask(commandBuffer, deviceMask); in CmdSetDeviceMask()
1471 …return GetData(device).dispatch.GetDeviceGroupPresentCapabilitiesKHR(device, pDeviceGroupPresentCa… in GetDeviceGroupPresentCapabilitiesKHR()
1475 return GetData(device).dispatch.GetDeviceGroupSurfacePresentModesKHR(device, surface, pModes); in GetDeviceGroupSurfacePresentModesKHR()
1479 return GetData(device).dispatch.AcquireNextImage2KHR(device, pAcquireInfo, pImageIndex); in AcquireNextImage2KHR()
1483GetData(commandBuffer).dispatch.CmdDispatchBase(commandBuffer, baseGroupX, baseGroupY, baseGroupZ,… in CmdDispatchBase()
1487 …return GetData(physicalDevice).dispatch.GetPhysicalDevicePresentRectanglesKHR(physicalDevice, surf… in GetPhysicalDevicePresentRectanglesKHR()
1491 …return GetData(device).dispatch.CreateDescriptorUpdateTemplate(device, pCreateInfo, pAllocator, pD… in CreateDescriptorUpdateTemplate()
1495GetData(device).dispatch.DestroyDescriptorUpdateTemplate(device, descriptorUpdateTemplate, pAlloca… in DestroyDescriptorUpdateTemplate()
1499GetData(device).dispatch.UpdateDescriptorSetWithTemplate(device, descriptorSet, descriptorUpdateTe… in UpdateDescriptorSetWithTemplate()
1503 GetData(device).dispatch.GetBufferMemoryRequirements2(device, pInfo, pMemoryRequirements); in GetBufferMemoryRequirements2()
1507 GetData(device).dispatch.GetImageMemoryRequirements2(device, pInfo, pMemoryRequirements); in GetImageMemoryRequirements2()
1511GetData(device).dispatch.GetImageSparseMemoryRequirements2(device, pInfo, pSparseMemoryRequirement… in GetImageSparseMemoryRequirements2()
1515 …return GetData(device).dispatch.CreateSamplerYcbcrConversion(device, pCreateInfo, pAllocator, pYcb… in CreateSamplerYcbcrConversion()
1519 GetData(device).dispatch.DestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in DestroySamplerYcbcrConversion()
1523 GetData(device).dispatch.GetDeviceQueue2(device, pQueueInfo, pQueue); in GetDeviceQueue2()
1527 GetData(device).dispatch.GetDescriptorSetLayoutSupport(device, pCreateInfo, pSupport); in GetDescriptorSetLayoutSupport()
1531 return GetData(device).dispatch.CreateRenderPass2(device, pCreateInfo, pAllocator, pRenderPass); in CreateRenderPass2()
1535GetData(commandBuffer).dispatch.CmdBeginRenderPass2(commandBuffer, pRenderPassBegin, pSubpassBegin… in CmdBeginRenderPass2()
1539GetData(commandBuffer).dispatch.CmdNextSubpass2(commandBuffer, pSubpassBeginInfo, pSubpassEndInfo); in CmdNextSubpass2()
1543 GetData(commandBuffer).dispatch.CmdEndRenderPass2(commandBuffer, pSubpassEndInfo); in CmdEndRenderPass2()
1547 return GetData(device).dispatch.GetSemaphoreCounterValue(device, semaphore, pValue); in GetSemaphoreCounterValue()
1551 return GetData(device).dispatch.WaitSemaphores(device, pWaitInfo, timeout); in WaitSemaphores()
1555 return GetData(device).dispatch.SignalSemaphore(device, pSignalInfo); in SignalSemaphore()
1559 …return GetData(device).dispatch.GetAndroidHardwareBufferPropertiesANDROID(device, buffer, pPropert… in GetAndroidHardwareBufferPropertiesANDROID()
1563 return GetData(device).dispatch.GetMemoryAndroidHardwareBufferANDROID(device, pInfo, pBuffer); in GetMemoryAndroidHardwareBufferANDROID()
1567GetData(commandBuffer).dispatch.CmdDrawIndirectCount(commandBuffer, buffer, offset, countBuffer, c… in CmdDrawIndirectCount()
1571GetData(commandBuffer).dispatch.CmdDrawIndexedIndirectCount(commandBuffer, buffer, offset, countBu… in CmdDrawIndexedIndirectCount()
1575 return GetData(device).dispatch.GetBufferOpaqueCaptureAddress(device, pInfo); in GetBufferOpaqueCaptureAddress()
1579 return GetData(device).dispatch.GetBufferDeviceAddress(device, pInfo); in GetBufferDeviceAddress()
1583 return GetData(device).dispatch.GetDeviceMemoryOpaqueCaptureAddress(device, pInfo); in GetDeviceMemoryOpaqueCaptureAddress()