Lines Matching refs:DeviceMemory
38 class DeviceMemory; variable
240 class DeviceMemory : public internal::NonDispHandle<VkDeviceMemory> {
242 ~DeviceMemory();
338 const DeviceMemory &memory() const { return internal_mem_; } in memory()
339 DeviceMemory &memory() { return internal_mem_; } in memory()
345 void bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset);
364 DeviceMemory internal_mem_;
388 const DeviceMemory &memory() const { return internal_mem_; } in memory()
389 DeviceMemory &memory() { return internal_mem_; } in memory()
395 void bind_memory(const DeviceMemory &mem, VkDeviceSize mem_offset);
449 DeviceMemory internal_mem_;
607 inline VkMemoryAllocateInfo DeviceMemory::alloc_info(VkDeviceSize size, uint32_t memory_type_index)… in alloc_info()