Lines Matching defs:mem
139 VkMemoryPropertyFlagBits *mem_flags, VkDeviceMemory *mem)
181 s->hwctx->alloc, mem);
244 &buf->flags, &buf->mem);
248 ret = vk->BindBufferMemory(s->hwctx->act_dev, buf->buf, buf->mem, 0);
258 int ff_vk_map_buffers(FFVulkanContext *s, FFVkBuffer *buf, uint8_t *mem[],
267 ret = vk->MapMemory(s->hwctx->act_dev, buf[i].mem, 0,
268 VK_WHOLE_SIZE, 0, (void **)&mem[i]);
282 .memory = buf[i].mem,
320 .memory = buf[i].mem,
344 vk->UnmapMemory(s->hwctx->act_dev, buf[i].mem);
360 if (buf->mem != VK_NULL_HANDLE)
361 vk->FreeMemory(s->hwctx->act_dev, buf->mem, s->hwctx->alloc);