Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp3388 VkMemoryAllocateInfo image_alloc_info = {}, buffer_alloc_info = {}; in TEST_F() local
3391 buffer_alloc_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in TEST_F()
3392 buffer_alloc_info.allocationSize = buffer_mem_reqs.size; in TEST_F()
3395 … pass = m_device->phy().set_memory_type(buffer_mem_reqs.memoryTypeBits, &buffer_alloc_info, 0); in TEST_F()
3400 err = vkAllocateMemory(device(), &buffer_alloc_info, NULL, &buffer_mem); in TEST_F()
3434 VkMemoryAllocateInfo image_alloc_info = {}, buffer_alloc_info = {}; in TEST_F() local
3438 buffer_alloc_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; in TEST_F()
3439 buffer_alloc_info.allocationSize = buffer_mem_reqs.size + buffer_mem_reqs.alignment; in TEST_F()
3442 … pass = m_device->phy().set_memory_type(buffer_mem_reqs.memoryTypeBits, &buffer_alloc_info, 0); in TEST_F()
3447 err = vkAllocateMemory(device(), &buffer_alloc_info, NULL, &buffer_mem); in TEST_F()
[all …]