Searched refs:nextInfo (Results 1 – 6 of 6) sorted by relevance
98 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in SemaphoreCreateInfo() local99 nextInfo != nullptr; nextInfo = nextInfo->pNext) in SemaphoreCreateInfo()101 switch(nextInfo->sType) in SemaphoreCreateInfo()105 const auto *exportInfo = reinterpret_cast<const VkExportSemaphoreCreateInfo *>(nextInfo); in SemaphoreCreateInfo()118 const auto *tlsInfo = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(nextInfo); in SemaphoreCreateInfo()124 WARN("nextInfo->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in SemaphoreCreateInfo()
38 const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in Buffer() local39 for(; nextInfo != nullptr; nextInfo = nextInfo->pNext) in Buffer()41 if(nextInfo->sType == VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO) in Buffer()43 const auto *externalInfo = reinterpret_cast<const VkExternalMemoryBufferCreateInfo *>(nextInfo); in Buffer()
1358 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateFence() local1359 while(nextInfo) in vkCreateFence()1361 switch(nextInfo->sType) in vkCreateFence()1367 UNSUPPORTED("pCreateInfo->pNext sType = %s", vk::Stringify(nextInfo->sType).c_str()); in vkCreateFence()1370 nextInfo = nextInfo->pNext; in vkCreateFence()1424 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateSemaphore() local1425 nextInfo != nullptr; nextInfo = nextInfo->pNext) in vkCreateSemaphore()1427 switch(nextInfo->sType) in vkCreateSemaphore()1434 …st VkSemaphoreTypeCreateInfo *info = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(nextInfo); in vkCreateSemaphore()1439 WARN("nextInfo->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in vkCreateSemaphore()[all …]
130 auto nextInfo = reinterpret_cast<VkBaseInStructure const *>(pCreateInfo->pNext); in GetImageFormat() local131 while(nextInfo) in GetImageFormat()133 switch(nextInfo->sType) in GetImageFormat()138 …FormatANDROID *externalFormatAndroid = reinterpret_cast<const VkExternalFormatANDROID *>(nextInfo); in GetImageFormat()162 UNSUPPORTED("pCreateInfo->pNext->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in GetImageFormat()166 nextInfo = nextInfo->pNext; in GetImageFormat()195 const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in Image() local196 for(; nextInfo != nullptr; nextInfo = nextInfo->pNext) in Image()198 if(nextInfo->sType == VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO) in Image()200 const auto *externalInfo = reinterpret_cast<const VkExternalMemoryImageCreateInfo *>(nextInfo); in Image()
875 …for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pExternalSemaphoreInfo->pNe… in getProperties() local876 nextInfo != nullptr; nextInfo = nextInfo->pNext) in getProperties()878 switch(nextInfo->sType) in getProperties()882 const auto *tlsInfo = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(nextInfo); in getProperties()894 WARN("nextInfo->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in getProperties()
1184 GrImageInfo nextInfo(input->colorInfo(), nextDims); in rescaleInto() local1185 tempB = fContext->priv().makeSFCWithFallback(nextInfo, SkBackingFit::kApprox); in rescaleInto()