Lines Matching refs:bundle

489 …lt ReallocateDescriptorBundleSets(vkhpp::Device device, uint32_t count, DescriptorBundle* bundle) {  in ReallocateDescriptorBundleSets()  argument
490 if (!bundle->descriptorSetLayout) { in ReallocateDescriptorBundleSets()
495 …const std::vector<vkhpp::DescriptorSetLayout> descriptorSetLayouts(count, *bundle->descriptorSetLa… in ReallocateDescriptorBundleSets()
497 .descriptorPool = *bundle->descriptorPool, in ReallocateDescriptorBundleSets()
502 bundle->descriptorSets = std::move(descriptorSets); in ReallocateDescriptorBundleSets()
531 DescriptorBundle bundle = { in AllocateDescriptorBundle() local
535 VK_EXPECT_RESULT(ReallocateDescriptorBundleSets(device, count, &bundle)); in AllocateDescriptorBundle()
536 return std::move(bundle); in AllocateDescriptorBundle()
554 auto bundle = VK_ASSERT(AllocateDescriptorBundle(*device, kNumSets)); in TEST_P() local
556 auto descriptorSetHandles = AsHandles(bundle.descriptorSets); in TEST_P()
557 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()
560 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()
563 ASSERT_THAT(ReallocateDescriptorBundleSets(*device, kNumSets, &bundle), IsVkSuccess()); in TEST_P()
565 descriptorSetHandles = AsHandles(bundle.descriptorSets); in TEST_P()
566 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()
575 auto bundle = VK_ASSERT(AllocateDescriptorBundle(*device, kNumSets)); in TEST_P() local
577 device->resetDescriptorPool(*bundle.descriptorPool); in TEST_P()
580 auto descriptorSetHandles = AsHandles(bundle.descriptorSets); in TEST_P()
581 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()
584 ASSERT_THAT(ReallocateDescriptorBundleSets(*device, kNumSets, &bundle), IsVkSuccess()); in TEST_P()
586 device->resetDescriptorPool(*bundle.descriptorPool); in TEST_P()
588 descriptorSetHandles = AsHandles(bundle.descriptorSets); in TEST_P()
589 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()
598 auto bundle = VK_ASSERT(AllocateDescriptorBundle(*device, kNumSets)); in TEST_P() local
600 device->destroyDescriptorPool(*bundle.descriptorPool); in TEST_P()
603 auto descriptorSetHandles = AsHandles(bundle.descriptorSets); in TEST_P()
604 …EXPECT_THAT(device->freeDescriptorSets(*bundle.descriptorPool, kNumSets, descriptorSetHandles.data… in TEST_P()