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/
H A 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()
H A DVkSemaphore.cpp98 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in SemaphoreCreateInfo()
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()
H A 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()
1425 nextInfo != nullptr; nextInfo = nextInfo in vkCreateSemaphore()
1652 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); vkCreateBuffer() local
1935 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); vkCreateShaderModule() local
2119 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); vkCreatePipelineLayout() local
2395 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); vkCreateCommandPool() local
2434 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pAllocateInfo->pNext); vkAllocateCommandBuffers() local
2465 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pBeginInfo->pNext); vkBeginCommandBuffer() local
[all...]
H A 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 const VkExternalFormatANDROID *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 in Image()
[all...]
H A DVkPhysicalDevice.cpp875 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pExternalSemaphoreInfo->pNext); in getProperties()
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/
H A DSurfaceContext.cpp1184 GrImageInfo nextInfo(input->colorInfo(), nextDims); in rescaleInto()
1185 tempB = fContext->priv().makeSFCWithFallback(nextInfo, SkBackingFit::kApprox); in rescaleInto()

Completed in 16 milliseconds