Lines Matching refs:mem_alloc
858 VkMemoryAllocateInfo mem_alloc = { in demo_prepare_depth() local
892 mem_alloc.allocationSize = mem_reqs.size; in demo_prepare_depth()
895 &mem_alloc.memoryTypeIndex); in demo_prepare_depth()
899 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->depth.mem); in demo_prepare_depth()
943 VkMemoryAllocateInfo mem_alloc = { in demo_prepare_texture_image() local
958 mem_alloc.allocationSize = mem_reqs.size; in demo_prepare_texture_image()
961 required_props, &mem_alloc.memoryTypeIndex); in demo_prepare_texture_image()
965 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &tex_obj->mem); in demo_prepare_texture_image()
986 mem_alloc.allocationSize, 0, &data); in demo_prepare_texture_image()
1147 VkMemoryAllocateInfo mem_alloc = { in demo_prepare_vertices() local
1166 mem_alloc.allocationSize = mem_reqs.size; in demo_prepare_vertices()
1169 &mem_alloc.memoryTypeIndex); in demo_prepare_vertices()
1172 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->vertices.mem); in demo_prepare_vertices()
1176 mem_alloc.allocationSize, 0, &data); in demo_prepare_vertices()