Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/demos/smoke/
DSmoke.cpp109 mem_flags_.reserve(mem_props.memoryTypeCount); in attach_shell()
111 mem_flags_.push_back(mem_props.memoryTypes[i].propertyFlags); in attach_shell()
113 meshes_ = new Meshes(dev_, mem_flags_); in attach_shell()
496 for (uint32_t idx = 0; idx < mem_flags_.size(); idx++) { in create_buffer_memory()
498 (mem_flags_[idx] & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) && in create_buffer_memory()
499 (mem_flags_[idx] & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT)) { in create_buffer_memory()
DSmoke.h146 std::vector<VkMemoryPropertyFlags> mem_flags_; variable