Home | History | Annotate | Download | only in demos

Lines Matching defs:mem

110     VkDeviceMemory mem;
213 VkDeviceMemory mem;
221 VkDeviceMemory mem;
783 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->depth.mem);
788 vkBindImageMemory(demo->device, demo->depth.image, demo->depth.mem, 0);
851 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &tex_obj->mem);
855 err = vkBindImageMemory(demo->device, tex_obj->image, tex_obj->mem, 0);
871 err = vkMapMemory(demo->device, tex_obj->mem, 0,
881 vkUnmapMemory(demo->device, tex_obj->mem);
889 * to add a mem ref */
896 vkFreeMemory(demo->device, tex_obj->mem, NULL);
1062 err = vkAllocateMemory(demo->device, &mem_alloc, NULL, &demo->vertices.mem);
1065 err = vkMapMemory(demo->device, demo->vertices.mem, 0,
1071 vkUnmapMemory(demo->device, demo->vertices.mem);
1074 demo->vertices.mem, 0);
2322 vkFreeMemory(demo->device, demo->vertices.mem, NULL);
2327 vkFreeMemory(demo->device, demo->textures[i].mem, NULL);
2337 vkFreeMemory(demo->device, demo->depth.mem, NULL);
2389 vkFreeMemory(demo->device, demo->vertices.mem, NULL);
2394 vkFreeMemory(demo->device, demo->textures[i].mem, NULL);
2404 vkFreeMemory(demo->device, demo->depth.mem, NULL);