Lines Matching refs:m_vkDevice

17     VkDevice m_vkDevice;  member
61 res->m_vkDevice = device; in create()
108 m_vk.vkFreeCommandBuffers(m_vkDevice, m_vkCommandPool, in ~RenderResourceVk()
113 m_vk.vkUnmapMemory(m_vkDevice, m_bufferVkDeviceMemory); in ~RenderResourceVk()
115 m_vk.vkFreeMemory(m_vkDevice, m_bufferVkDeviceMemory, nullptr); in ~RenderResourceVk()
116 m_vk.vkDestroyBuffer(m_vkDevice, m_vkBuffer, nullptr); in ~RenderResourceVk()
117 m_vk.vkDestroyImageView(m_vkDevice, m_vkImageView, nullptr); in ~RenderResourceVk()
118 m_vk.vkFreeMemory(m_vkDevice, m_imageVkDeviceMemory, nullptr); in ~RenderResourceVk()
119 m_vk.vkDestroyImage(m_vkDevice, m_vkImage, nullptr); in ~RenderResourceVk()
139 if (m_vk.vkCreateImage(m_vkDevice, &imageCi, nullptr, &m_vkImage) != in setUpImage()
147 m_vk.vkGetImageMemoryRequirements(m_vkDevice, m_vkImage, in setUpImage()
159 if (m_vk.vkAllocateMemory(m_vkDevice, &allocInfo, nullptr, in setUpImage()
164 if (m_vk.vkBindImageMemory(m_vkDevice, m_vkImage, m_imageVkDeviceMemory, in setUpImage()
188 if (m_vk.vkCreateImageView(m_vkDevice, &imageViewCi, nullptr, in setUpImage()
217 if (m_vk.vkCreateBuffer(m_vkDevice, &bufferCi, nullptr, &m_vkBuffer) != in setUpBuffer()
224 m_vk.vkGetBufferMemoryRequirements(m_vkDevice, m_vkBuffer, in setUpBuffer()
237 if (m_vk.vkAllocateMemory(m_vkDevice, &allocInfo, nullptr, in setUpBuffer()
242 if (m_vk.vkBindBufferMemory(m_vkDevice, m_vkBuffer, in setUpBuffer()
247 m_vkDevice, m_bufferVkDeviceMemory, 0, bufferCi.size, 0, in setUpBuffer()
262 if (m_vk.vkAllocateCommandBuffers(m_vkDevice, &cmdBuffAllocInfo, in setUpCommandBuffer()