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.cpp114 mem_flags_.reserve(mem_props.memoryTypeCount); in attach_shell()
116 mem_flags_.push_back(mem_props.memoryTypes[i].propertyFlags); in attach_shell()
118 meshes_ = new Meshes(dev_, mem_flags_); in attach_shell()
501 for (uint32_t idx = 0; idx < mem_flags_.size(); idx++) { in create_buffer_memory()
503 (mem_flags_[idx] & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) && in create_buffer_memory()
504 (mem_flags_[idx] & VK_MEMORY_PROPERTY_HOST_COHERENT_BIT)) { in create_buffer_memory()
DSmoke.h152 std::vector<VkMemoryPropertyFlags> mem_flags_; variable