Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/vulkan/
Dgfxstream_vk_device.cpp704 std::vector<std::vector<VkDescriptorBufferInfo>>& bufferInfos) { in transformDescriptorSetList() argument
713 bufferInfos.push_back(std::vector<VkDescriptorBufferInfo>()); in transformDescriptorSetList()
714 bufferInfos[i].reserve(descriptorCount); in transformDescriptorSetList()
715 memset(&bufferInfos[i][0], 0, sizeof(VkDescriptorBufferInfo) * descriptorCount); in transformDescriptorSetList()
719 bufferInfos[i][j] = srcBufferInfo[j]; in transformDescriptorSetList()
720 bufferInfos[i][j].buffer = VK_NULL_HANDLE; in transformDescriptorSetList()
724 bufferInfos[i][j].buffer = gfxstreamBuffer->internal_object; in transformDescriptorSetList()
728 outDescriptorSet.pBufferInfo = bufferInfos[i].data(); in transformDescriptorSetList()
/hardware/google/gfxstream/common/end2end/
DGfxstreamEnd2EndVkSnapshotPipelineTests.cpp744 std::vector<vkhpp::DescriptorBufferInfo> bufferInfos; in TEST_P() local
745 bufferInfos.emplace_back(vkhpp::DescriptorBufferInfo{ in TEST_P()
755 .pBufferInfo = bufferInfos.data(), in TEST_P()
965 std::vector<vkhpp::DescriptorBufferInfo> bufferInfos; in TEST_P() local
966 bufferInfos.emplace_back(vkhpp::DescriptorBufferInfo{ in TEST_P()
976 .pBufferInfo = bufferInfos.data(), in TEST_P()
1137 std::vector<vkhpp::DescriptorBufferInfo> bufferInfos; in TEST_P() local
1138 bufferInfos.emplace_back(vkhpp::DescriptorBufferInfo{ in TEST_P()
1148 .pBufferInfo = bufferInfos.data(), in TEST_P()
/hardware/google/gfxstream/guest/vulkan_enc/
DDescriptorSetVirtualization.h128 const VkDescriptorBufferInfo* bufferInfos,
DDescriptorSetVirtualization.cpp271 const VkDescriptorBufferInfo* bufferInfos, in doEmulatedDescriptorBufferInfoWriteFromTemplate() argument
286 entry.bufferInfo = bufferInfos[i]; in doEmulatedDescriptorBufferInfoWriteFromTemplate()
DResourceTracker.cpp1154 delete[] info.bufferInfos; in unregister_VkDescriptorUpdateTemplate()
6258 info.bufferInfos = new VkDescriptorBufferInfo[info.bufferInfoCount]; in initDescriptorUpdateTemplateBuffers()
6365 VkDescriptorBufferInfo* bufferInfos = info.bufferInfos; in on_vkUpdateDescriptorSetWithTemplate() local
6417 (const VkDescriptorBufferInfo*)((uint8_t*)bufferInfos + currBufferInfoOffset); in on_vkUpdateDescriptorSetWithTemplate()
6423 memcpy(((uint8_t*)bufferInfos) + currBufferInfoOffset, user, in on_vkUpdateDescriptorSetWithTemplate()
6428 (VkDescriptorBufferInfo*)(((uint8_t*)bufferInfos) + currBufferInfoOffset); in on_vkUpdateDescriptorSetWithTemplate()
6483 imageInfoIndices, bufferInfoIndices, bufferViewIndices, imageInfos, bufferInfos, in on_vkUpdateDescriptorSetWithTemplate()
DResourceTracker.h827 VkDescriptorBufferInfo* bufferInfos; member