Home | History | Annotate | Download | only in vulkan

Lines Matching refs:vk

30 namespace vk
33 YCbCrImageWithMemory::YCbCrImageWithMemory (const vk::DeviceInterface& vk,
34 const vk::VkDevice device,
35 vk::Allocator& allocator,
36 const vk::VkImageCreateInfo& imageCreateInfo,
37 const vk::MemoryRequirement requirement)
38 : m_image (createImage(vk, device, &imageCreateInfo))
46 const VkMemoryRequirements reqs = getImagePlaneMemoryRequirements(vk, device, *m_image, planeAspect);
50 bindImagePlaneMemory(vk, device, *m_image, m_allocations.back()->getMemory(), m_allocations.back()->getOffset(), planeAspect);
55 const VkMemoryRequirements reqs = getImageMemoryRequirements(vk, device, *m_image);
57 VK_CHECK(vk.bindImageMemory(device, *m_image, m_allocations.back()->getMemory(), m_allocations.back()->getOffset()));
61 } // vk