22 vk::ImageViewCreateInfo createInfo{};
24 .setViewType(vk::ImageViewType::e2D)
26 .setComponents(vk::ComponentMapping(
27 vk::ComponentSwizzle::eIdentity,
28 vk::ComponentSwizzle::eIdentity,
29 vk::ComponentSwizzle::eIdentity,
30 vk::ComponentSwizzle::eIdentity))
31 .setSubresourceRange(vk::ImageSubresourceRange(
32 vk::ImageAspectFlagBits::eColor,
34 m_view =
m_ctx->getDevice().createImageView(createInfo);