Home
last modified time | relevance | path

Searched refs:nextInfo (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkSemaphore.cpp98 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in SemaphoreCreateInfo() local
99 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()
DVkBuffer.cpp38 const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in Buffer() local
39 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()
DlibVulkan.cpp1358 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateFence() local
1359 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() local
1425 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 …]
DVkImage.cpp130 auto nextInfo = reinterpret_cast<VkBaseInStructure const *>(pCreateInfo->pNext); in GetImageFormat() local
131 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() local
196 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()
DVkPhysicalDevice.cpp875 …for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pExternalSemaphoreInfo->pNe… in getProperties() local
876 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()
/third_party/skia/src/gpu/
DSurfaceContext.cpp1184 GrImageInfo nextInfo(input->colorInfo(), nextDims); in rescaleInto() local
1185 tempB = fContext->priv().makeSFCWithFallback(nextInfo, SkBackingFit::kApprox); in rescaleInto()