Searched refs:nextInfo (Results 1 – 8 of 8) sorted by relevance
36 const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in Buffer() local37 for(; nextInfo != nullptr; nextInfo = nextInfo->pNext) in Buffer()39 if(nextInfo->sType == VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO) in Buffer()41 const auto *externalInfo = reinterpret_cast<const VkExternalMemoryBufferCreateInfo *>(nextInfo); in Buffer()
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()
183 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(submitInfo.pNext); in submitQueue() local184 nextInfo != nullptr; nextInfo = nextInfo->pNext) in submitQueue()186 switch(nextInfo->sType) in submitQueue()192 WARN("submitInfo.pNext->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in submitQueue()
1384 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateFence() local1385 while(nextInfo) in vkCreateFence()1387 LOG_TRAP("pCreateInfo->pNext sType = %s", vk::Stringify(nextInfo->sType).c_str()); in vkCreateFence()1388 nextInfo = nextInfo->pNext; in vkCreateFence()1442 for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateSemaphore() local1443 nextInfo != nullptr; nextInfo = nextInfo->pNext) in vkCreateSemaphore()1445 switch(nextInfo->sType) in vkCreateSemaphore()1452 …st VkSemaphoreTypeCreateInfo *info = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(nextInfo); in vkCreateSemaphore()1457 WARN("nextInfo->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in vkCreateSemaphore()1670 auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in vkCreateBuffer() local[all …]
129 auto nextInfo = reinterpret_cast<VkBaseInStructure const *>(pCreateInfo->pNext); in GetImageFormat() local130 while(nextInfo) in GetImageFormat()132 switch(nextInfo->sType) in GetImageFormat()137 …FormatANDROID *externalFormatAndroid = reinterpret_cast<const VkExternalFormatANDROID *>(nextInfo); in GetImageFormat()152 LOG_TRAP("pCreateInfo->pNext->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in GetImageFormat()156 nextInfo = nextInfo->pNext; in GetImageFormat()185 const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext); in Image() local186 for(; nextInfo != nullptr; nextInfo = nextInfo->pNext) in Image()188 if(nextInfo->sType == VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_IMAGE_CREATE_INFO) in Image()190 const auto *externalInfo = reinterpret_cast<const VkExternalMemoryImageCreateInfo *>(nextInfo); in Image()
820 …for(const auto *nextInfo = reinterpret_cast<const VkBaseInStructure *>(pExternalSemaphoreInfo->pNe… in getProperties() local821 nextInfo != nullptr; nextInfo = nextInfo->pNext) in getProperties()823 switch(nextInfo->sType) in getProperties()827 const auto *tlsInfo = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(nextInfo); in getProperties()839 WARN("nextInfo->sType = %s", vk::Stringify(nextInfo->sType).c_str()); in getProperties()
1378 PendingMessageInfo nextInfo = in maybeTriggerPendingMessages()1382 while (nextInfo != null in maybeTriggerPendingMessages()1383 && nextInfo.resolvedPeriodUid != null in maybeTriggerPendingMessages()1384 && (nextInfo.resolvedPeriodIndex < currentPeriodIndex in maybeTriggerPendingMessages()1385 || (nextInfo.resolvedPeriodIndex == currentPeriodIndex in maybeTriggerPendingMessages()1386 && nextInfo.resolvedPeriodTimeUs <= oldPeriodPositionUs))) { in maybeTriggerPendingMessages()1388 nextInfo = in maybeTriggerPendingMessages()1394 while (nextInfo != null in maybeTriggerPendingMessages()1395 && nextInfo.resolvedPeriodUid != null in maybeTriggerPendingMessages()1396 && nextInfo.resolvedPeriodIndex == currentPeriodIndex in maybeTriggerPendingMessages()[all …]
1258 GrImageInfo nextInfo(input->colorInfo(), nextDims); in rescaleInto() local1260 nextInfo, in rescaleInto()