Home
last modified time | relevance | path

Searched refs:alloc_info (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp979 VkDescriptorSetAllocateInfo alloc_info = {}; in TEST_F() local
980 alloc_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO; in TEST_F()
981 alloc_info.descriptorSetCount = 1; in TEST_F()
982 alloc_info.descriptorPool = ds_pool; in TEST_F()
983 alloc_info.pSetLayouts = &ds_layout; in TEST_F()
984 err = vkAllocateDescriptorSets(m_device->device(), &alloc_info, in TEST_F()
1433 VkDescriptorSetAllocateInfo alloc_info = {}; in TEST_F() local
1434 alloc_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO; in TEST_F()
1435 alloc_info.descriptorSetCount = 1; in TEST_F()
1436 alloc_info.descriptorPool = ds_pool; in TEST_F()
[all …]
Dvktestbinding.cpp84 vk_testing::DeviceMemory::alloc_info(reqs.size, 0); in get_resource_alloc_info()
741 VkDescriptorSetAllocateInfo alloc_info = {}; in alloc_sets() local
742 alloc_info.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_ALLOCATE_INFO; in alloc_sets()
743 alloc_info.descriptorSetCount = layout_handles.size(); in alloc_sets()
744 alloc_info.descriptorPool = handle(); in alloc_sets()
745 alloc_info.pSetLayouts = layout_handles.data(); in alloc_sets()
747 vkAllocateDescriptorSets(device(), &alloc_info, set_handles.data()); in alloc_sets()
Dvktestbinding.h295 static VkMemoryAllocateInfo alloc_info(VkDeviceSize size,
713 DeviceMemory::alloc_info(VkDeviceSize size, uint32_t memory_type_index) { in alloc_info() function
/external/vulkan-validation-layers/demos/
Dtri.c1407 VkDescriptorSetAllocateInfo alloc_info = { in demo_prepare_descriptor_set() local
1413 err = vkAllocateDescriptorSets(demo->device, &alloc_info, &demo->desc_set); in demo_prepare_descriptor_set()
Dcube.c1669 VkDescriptorSetAllocateInfo alloc_info = { in demo_prepare_descriptor_set() local
1675 err = vkAllocateDescriptorSets(demo->device, &alloc_info, &demo->desc_set); in demo_prepare_descriptor_set()