Image views

To use any VkImage, including those in the swap chain, in the render pipeline we have to create a VkImageViewobject. An image view is quite literally a view into an image. It describes how to access the image and which part of the image to access, for example if it should be treated as a 2D texture depth texture without any mipmapping levels.

要使用任何VkImage,包括在交换链中的那些,我们必须在渲染管道中创建一个VkImageView对象。一个image视图就是对image 的一个视图。它描述了,如何存取image,存取image 的哪一部分。例如,image应该被视为2D深度纹理,不含mipmap层。

In this chapter we'll write a createImageViews function that creates a basic image view for every image in the swap chain so that we can use them as color targets later on.

本章,我们将写一个createImageViews 函数,它为交换链中的每个image分别创建一个基础的image view,这样,我们就可以将它们当作颜色目标来用了。

First add a class member to store the image views in:

首先,添加成员以保存image view:

  1. std::vector<VkImageView> swapChainImageViews;

Create the createImageViews function and call it right after swap chain creation.

创建createImageViews 函数,在创建交换链后调用它。

  1. void initVulkan() {
  2. createInstance();
  3. setupDebugCallback();
  4. createSurface();
  5. pickPhysicalDevice();
  6. createLogicalDevice();
  7. createSwapChain();
  8. createImageViews();
  9. }
  10.  
  11. void createImageViews() {
  12.  
  13. }

The first thing we need to do is resize the list to fit all of the image views we'll be creating:

首先,调整list的大小,以适应我们要创建的image view的数量:

  1. void createImageViews() {
  2. swapChainImageViews.resize(swapChainImages.size());
  3.  
  4. }

Next, set up the loop that iterates over all of the swap chain images.

接下来,在循环中枚举所有的交换链image。

  1. for (size_t i = ; i < swapChainImages.size(); i++) {
  2.  
  3. }

The parameters for image view creation are specified in a VkImageViewCreateInfo structure. The first few parameters are straightforward.

创建image view的参数由VkImageViewCreateInfo 结构体提供。前几个参数很直观。

  1. VkImageViewCreateInfo createInfo = {};
  2. createInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
  3. createInfo.image = swapChainImages[i];

The viewType and format fields specify how the image data should be interpreted. The viewType parameter allows you to treat images as 1D textures, 2D textures, 3D textures and cube maps.

字段viewType 和format 标明了image数据应当被如何解释。参数viewType 允许你将image当作1D纹理、2D纹理、3D纹理或cube纹理。

  1. createInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
  2. createInfo.format = swapChainImageFormat;

The components field allows you to swizzle the color channels around. For example, you can map all of the channels to the red channel for a monochrome texture. You can also map constant values of 0 and 1 to a channel. In our case we'll stick to the default mapping.

字段components 允许你搅和颜色通道。例如,你可以将所有通道都映射到红色通道,实现黑白纹理。你也可以映射01的常量到某个通道。在我们的案例中,我们使用默认的映射。

  1. createInfo.components.r = VK_COMPONENT_SWIZZLE_IDENTITY;
  2. createInfo.components.g = VK_COMPONENT_SWIZZLE_IDENTITY;
  3. createInfo.components.b = VK_COMPONENT_SWIZZLE_IDENTITY;
  4. createInfo.components.a = VK_COMPONENT_SWIZZLE_IDENTITY;

The subresourceRange field describes what the image's purpose is and which part of the image should be accessed. Our images will be used as color targets without any mipmapping levels or multiple layers.

字段subresourceRange 描述了image的用途,还有要用image的哪一部分。我们的image要被用作颜色目标,不含mipmap层,不含多个layer。

  1. createInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
  2. createInfo.subresourceRange.baseMipLevel = ;
  3. createInfo.subresourceRange.levelCount = ;
  4. createInfo.subresourceRange.baseArrayLayer = ;
  5. createInfo.subresourceRange.layerCount = ;

If you were working on a stereographic 3D application, then you would create a swap chain with multiple layers. You could then create multiple image views for each image representing the views for the left and right eyes by accessing different layers.

如果你在做一个立体3D应用程序,那么你得创建一个多layer的交换链。然后你就可以为每个image创建多个image view,不同的layer分别代表从左眼和右眼观察。

Creating the image view is now a matter of calling vkCreateImageView:

现在只需调用vkCreateImageView函数来创建image view:

  1. if (vkCreateImageView(device, &createInfo, nullptr, &swapChainImageViews[i]) != VK_SUCCESS) {
  2. throw std::runtime_error("failed to create image views!");
  3. }

Unlike images, the image views were explicitly created by us, so we need to add a similar loop to destroy them again at the end of the program:

与image不同,image view是由我们显式地创建的,所以我们需要在程序结束时添加一个相似的循环来销毁它们:

  1. void cleanup() {
  2. for (auto imageView : swapChainImageViews) {
  3. vkDestroyImageView(device, imageView, nullptr);
  4. }
  5.  
  6. ...
  7. }

An image view is sufficient to start using an image as a texture, but it's not quite ready to be used as a render target just yet. That requires one more step of indirection, known as a framebuffer. But first we'll have to set up the graphics pipeline.

有了image view就可以将image用作纹理了,但是它还没有准备好被用作渲染目标。那需要下一步的操作,即帧缓存。但是,首先我们必须创建图形管道。

C++ code

[译]Vulkan教程(11)Image Views的更多相关文章

  1. [译]Vulkan教程(26)描述符池和set

    [译]Vulkan教程(26)描述符池和set Descriptor pool and sets 描述符池和set Introduction 入门 The descriptor layout from ...

  2. [译]Vulkan教程(28)Image视图和采样器

    [译]Vulkan教程(28)Image视图和采样器 Image view and sampler - Image视图和采样器 In this chapter we're going to creat ...

  3. [译]Vulkan教程(25)描述符布局和buffer

    [译]Vulkan教程(25)描述符布局和buffer Descriptor layout and buffer 描述符布局和buffer Introduction 入门 We're now able ...

  4. [译]Vulkan教程(20)重建交换链

    [译]Vulkan教程(20)重建交换链 Swap chain recreation 重建交换链 Introduction 入门 The application we have now success ...

  5. [译]Vulkan教程(17)帧缓存

    [译]Vulkan教程(17)帧缓存 Framebuffers 帧缓存 We've talked a lot about framebuffers in the past few chapters a ...

  6. [译]Vulkan教程(03)开发环境

    [译]Vulkan教程(03)开发环境 这是我翻译(https://vulkan-tutorial.com)上的Vulkan教程的第3篇. In this chapter we'll set up y ...

  7. [译]Vulkan教程(02)概况

    [译]Vulkan教程(02)概况 这是我翻译(https://vulkan-tutorial.com)上的Vulkan教程的第2篇. This chapter will start off with ...

  8. [译]Vulkan教程(01)入门

    [译]Vulkan教程(01)入门 接下来我将翻译(https://vulkan-tutorial.com)上的Vulkan教程.这可能是我学习Vulkan的最好方式,但不是最理想的方式. 我会用“d ...

  9. [译]Vulkan教程(33)多重采样

    [译]Vulkan教程(33)多重采样 Multisampling 多重采样 Introduction 入门 Our program can now load multiple levels of d ...

随机推荐

  1. Jenkins编译过程中出现ERROR_ Failed to parse POMs错误

    一.在使用jenkins编写过程中突然出现以下问题 Parsing POMs Established TCP socket on 59407 [java] $ java -cp /var/lib/je ...

  2. python基础入门 整型 bool 字符串

    整型,bool值,字符串 一.整型 整型十进制和二进制 整型:整型在Python中的关键字用int来表示; 整型在计算机中是用于计算和比较的 可进行+ - * / % //(整除) **(幂运算) 十 ...

  3. [ASP.NET Core 3框架揭秘] 依赖注入[6]:服务注册

    通过<利用容器提供服务>我们知道作为依赖注入容器的IServiceProvider对象是通过调用IServiceCollection接口的扩展方法BuildServiceProvider创 ...

  4. Springboot 项目源码 Activiti6 工作流 vue.js html 跨域 前后分离 websocket即时通讯

    特别注意: Springboot 工作流  前后分离 + 跨域 版本 (权限控制到菜单和按钮) 后台框架:springboot2.1.2+ activiti6.0.0+ mybaits+maven+接 ...

  5. Django的Form验证

    Django的Form验证 Form验证:Form提交Form表单数据验证 针对Form提交的数据进行验证 创建模板 class loginForm() 请求提交给模板,创建对象 obj=loginF ...

  6. h5 Video打开本地摄像头和离开页面关闭摄像头

    <div> <video id="video" style="width=100%; height=100%; object-fit: fill&quo ...

  7. Information Management System

    Information Management System 一.代码部分 #include <stdio.h> #include <stdlib.h> #include < ...

  8. Ubuntu 16.04 安装 CUDA10.1 (解决循环登陆的问题)

    0. 前言 这里直接用 cuda安装文件同时安装 NVIDIA 驱动和 CUDA,没有单独安装更高版本的 NVIDIA 驱动: 此安装是在 Intel 集显下的图形化界面,即用集显做 display, ...

  9. 推荐一种非常好的新版DSP库源码移植方式,含V7,V6和V5的IAR以及MDK5的AC5和AC6版本

    说明: 1.新版CMSIS V5.6里面的DSP库比以前的版本人性化了好多. 2.本帖为大家分享一种源码的添加方式,之前一直是用的库方便,不方便查看源码部分. 3.DSP教程可以还看第1版的,在我们的 ...

  10. docker-compose 部署 Vue+SpringBoot 前后端分离项目

    一.前言 本文将通过docker-compose来部署前端Vue项目到Nginx中,和运行后端SpringBoot项目 服务器基本环境: CentOS7.3 Dokcer MySQL 二.docker ...