Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/tests/
Dvktestbinding.cpp67 VkMemoryPropertyFlags mem_props) { in get_resource_alloc_info() argument
69 dev.phy().set_memory_type(reqs.memoryTypeBits, &info, mem_props); in get_resource_alloc_info()
469 … Buffer::init(const Device &dev, const VkBufferCreateInfo &info, VkMemoryPropertyFlags mem_props) { in NON_DISPATCHABLE_HANDLE_DTOR()
472 internal_mem_.init(dev, get_resource_alloc_info(dev, memory_requirements(), mem_props)); in NON_DISPATCHABLE_HANDLE_DTOR()
501 void Image::init(const Device &dev, const VkImageCreateInfo &info, VkMemoryPropertyFlags mem_props)… in NON_DISPATCHABLE_HANDLE_DTOR()
505 internal_mem_.init(dev, get_resource_alloc_info(dev, memory_requirements(), mem_props)); in NON_DISPATCHABLE_HANDLE_DTOR()
Dvktestbinding.h322 void init(const Device &dev, const VkBufferCreateInfo &info, VkMemoryPropertyFlags mem_props);
324 …e &dev, VkDeviceSize size, VkMemoryPropertyFlags mem_props) { init(dev, create_info(size, 0), mem_… in init() argument
383 void init(const Device &dev, const VkImageCreateInfo &info, VkMemoryPropertyFlags mem_props);
/external/vulkan-validation-layers/demos/smoke/
DSmoke.cpp107 VkPhysicalDeviceMemoryProperties mem_props; in attach_shell() local
108 vk::GetPhysicalDeviceMemoryProperties(physical_dev_, &mem_props); in attach_shell()
109 mem_flags_.reserve(mem_props.memoryTypeCount); in attach_shell()
110 for (uint32_t i = 0; i < mem_props.memoryTypeCount; i++) in attach_shell()
111 mem_flags_.push_back(mem_props.memoryTypes[i].propertyFlags); in attach_shell()