[译]Vulkan教程(08)逻辑设备和队列

栏目: 后端 · 发布时间: 4年前

内容简介:[译]Vulkan教程(08)逻辑设备和队列After selecting a physical device to use we need to set up a在选择了要用的物理设备后,我们需要设置一个

[译]Vulkan教程(08)逻辑设备和队列

Introduction 入门

After selecting a physical device to use we need to set up a  logical device to interface with it. The logical device creation process is similar to the instance creation process and describes the features we want to use. We also need to specify which queues to create now that we've queried which queue families are available. You can even create multiple logical devices from the same physical device if you have varying requirements.

在选择了要用的物理设备后,我们需要设置一个 逻辑设备 ,用以与其交互。逻辑设备的创建过程与instance的创建过程相似,它描述了我们想使用的特性。既然我们已经查询了有哪些队列家族可用,我们也需要标明想创建哪些队列。如果你又多种需求,你还可以从同一物理设备创建多个逻辑设备。

Start by adding a new class member to store the logical device handle in.

开始,添加一个新成员,用于存储逻辑设备的句柄。

VkDevice device;

Next, add a  createLogicalDevice function that is called from  initVulkan .

下一步,添加 createLogicalDevice 函数,在 initVulkan 中调用它。

 1 void initVulkan() {
 2     createInstance();
 3     setupDebugCallback();
 4     pickPhysicalDevice();
 5     createLogicalDevice();
 6 }
 7  
 8 void createLogicalDevice() {
 9  
10 }

Specifying the queues to be created 标明要创建的队列

The creation of a logical device involves specifying a bunch of details in structs again, of which the first one will be  VkDeviceQueueCreateInfo . This structure describes the number of queues we want for a single queue family. Right now we're only interested in a queue with graphics capabilities.

创建逻辑设备,需要标明若干struct中的很多细节问题,其中第一个是 VkDeviceQueueCreateInfo 。这个struct描述了我们想从一个队列家族中获取的队列的数量。现在我们只对有图形功能的队列感兴趣。

1 QueueFamilyIndices indices = findQueueFamilies(physicalDevice);
2  
3 VkDeviceQueueCreateInfo queueCreateInfo = {};
4 queueCreateInfo.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
5 queueCreateInfo.queueFamilyIndex = indices.graphicsFamily.value();
6 queueCreateInfo.queueCount = 1;

The currently available drivers will only allow you to create a small number of queues for each queue family and you don't really need more than one. That's because you can create all of the command buffers on multiple threads and then submit them all at once on the main thread with a single low-overhead call.

目前可用driver只允许你从每个队列家族中创建少量的队列,不过你也不需要创建超过1个。这是因为你可以在多线程上创建所有的命令缓存,然后在主线程一次性提交它们,这只需一次低开销的调用。

Vulkan lets you assign priorities to queues to influence the scheduling of command buffer execution using floating point numbers between  0.0 and  1.0 . This is required even if there is only a single queue:

Vulkan让你对队列赋予优先级( 0.01.0 的浮点数),以影响命令缓存的执行安排。即使只有1个队列,这也是必要的:

1 float queuePriority = 1.0f;
2 queueCreateInfo.pQueuePriorities = &queuePriority;

Specifying used device features 标明要用的设备特性

The next information to specify is the set of device features that we'll be using. These are the features that we queried support for with  vkGetPhysicalDeviceFeatures in the previous chapter, like geometry shaders. Right now we don't need anything special, so we can simply define it and leave everything to  VK_FALSE . We'll come back to this structure once we're about to start doing more interesting things with Vulkan.

下一个要标明的信息,是我们要用到的设备特性。它们是我们在之前的章节用 vkGetPhysicalDeviceFeatures 函数查询过的被支持的那些特性。现在我们不需要任何特别的东西,所以我们可以简单地定义它,让一切保持 VK_FALSE 。等我们要开始用Vulkan做更多有兴趣的事的时候,我们将回到这个struct来。

VkPhysicalDeviceFeatures deviceFeatures = {};

Creating the logical device 创建逻辑设备

With the previous two structures in place, we can start filling in the main  VkDeviceCreateInfo structure.

将前2个struct准备好后,我们可以开始填入 VkDeviceCreateInfo 结构体了。

1 VkDeviceCreateInfo createInfo = {};
2 createInfo.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;

First add pointers to the queue creation info and device features structs:

首先添加到创建信息和设备特性struct的指针:

1 createInfo.pQueueCreateInfos = &queueCreateInfo;
2 createInfo.queueCreateInfoCount = 1;
3  
4 createInfo.pEnabledFeatures = &deviceFeatures;

The remainder of the information bears a resemblance to the  VkInstanceCreateInfo struct and requires you to specify extensions and validation layers. The difference is that these are device specific this time.、

剩下的信息与 VkInstanceCreateInfo 相似,要求你标明扩展和验证层。区别是,这次是针对特定设备的。

An example of a device specific extension is  VK_KHR_swapchain , which allows you to present rendered images from that device to windows. It is possible that there are Vulkan devices in the system that lack this ability, for example because they only support compute operations. We will come back to this extension in the swap chain chapter.

针对特定设备的扩展的一个例子是 VK_KHR_swapchain ,它允许你将图像从设备呈现到窗口。系统中可能存在缺少这个功能的Vulkan设备,例如只支持计算操作的设备。我们将在交换链章节再谈论这个扩展。

Previous implementations of Vulkan made a distinction between instance and device specific validation layers, but this is  no longer the case . That means that the  enabledLayerCount and  ppEnabledLayerNames fields of  VkDeviceCreateInfo are ignored by up-to-date implementations. However, it is still a good idea to set them anyway to be compatible with older implementations:

早前的Vulkan实现区分了instance和设备相关的验证层,但现在 已经不是这样了 。这意味着, VkDeviceCreateInfo enabledLayerCountppEnabledLayerNames 字段被新版的实现忽略了。但是,为与旧实现兼容,设置它们仍旧是个好主意:

1 createInfo.enabledExtensionCount = 0;
2  
3 if (enableValidationLayers) {
4     createInfo.enabledLayerCount = static_cast<uint32_t>(validationLayers.size());
5     createInfo.ppEnabledLayerNames = validationLayers.data();
6 } else {
7     createInfo.enabledLayerCount = 0;
8 }

We won't need any device specific extensions for now.

现在我们不需要任何设备相关的扩展了。

That's it, we're now ready to instantiate the logical device with a call to the appropriately named  vkCreateDevice function.

就这样,我们现在准备好初始化逻辑设备了(用 vkCreateDevice function函数)。

1 if (vkCreateDevice(physicalDevice, &createInfo, nullptr, &device) != VK_SUCCESS) {
2     throw std::runtime_error("failed to create logical device!");
3 }

The parameters are the physical device to interface with, the queue and usage info we just specified, the optional allocation callbacks pointer and a pointer to a variable to store the logical device handle in. Similarly to the instance creation function, this call can return errors based on enabling non-existent extensions or specifying the desired usage of unsupported features.

这些参数分别是,与之交互的物理设备,队列及其用法(我们已标明),可选的回调函数指针,保存逻辑设备句柄的变量的地址。与创建instance的函数相似,这个调用会由于缺失扩展或标明了不支持的特性而返回错误码。

The device should be destroyed in  cleanup with the  vkDestroyDevice function:

设备应当在 cleanup 函数中用 vkDestroyDevice 函数销毁:

1 void cleanup() {
2     vkDestroyDevice(device, nullptr);
3     ...
4 }

Logical devices don't interact directly with instances, which is why it's not included as a parameter.

逻辑设备不直接与instance交互,这就是为什么它没有被作为参数传入设备。

Retrieving queue handles 检索队列的柄

The queues are automatically created along with the logical device, but we don't have a handle to interface with them yet. First add a class member to store a handle to the graphics queue:

队列随着逻辑设备的创建而自动创建了,但是我们没有与之交互的句柄。首先添加一个成员,用以保存对图形队列的句柄:

VkQueue graphicsQueue;

Device queues are implicitly cleaned up when the device is destroyed, so we don't need to do anything in  cleanup .

设备队列会在设备被销毁时自动地隐式地销毁,所以我们不需要在 cleanup 中做什么。

We can use the  vkGetDeviceQueue function to retrieve queue handles for each queue family. The parameters are the logical device, queue family, queue index and a pointer to the variable to store the queue handle in. Because we're only creating a single queue from this family, we'll simply use index  0 .

我们可以用 vkGetDeviceQueue 函数检索每个队列家族的队列句柄。其参数是,逻辑设备,队列家族,队列索引和保存队列句柄的变量的指针。因为我们只创建一个队列,我们用索引 0 即可。

vkGetDeviceQueue(device, indices.graphicsFamily.value(), 0, &graphicsQueue);

With the logical device and queue handles we can now actually start using the graphics card to do things! In the next few chapters we'll set up the resources to present results to the window system.

有了逻辑设备和队列句柄,我们现在可以真正地用图形卡做点事情了!接下来的几章,我们将设置资源,以呈现结果到窗口系统。

C++ code C++代码


以上所述就是小编给大家介绍的《[译]Vulkan教程(08)逻辑设备和队列》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

我的第一本算法书

我的第一本算法书

[日]石田保辉、[日]宮崎修一 / 张贝 / 人民邮电出版社 / 2018-10 / 69.00元

本书采用大量图片,通过详细的分步讲解,以直观、易懂的方式展现了7个数据结构和26个基础算法的基本原理。第1章介绍了链表、数组、栈等7个数据结构;从第2章到第7章,分别介绍了和排序、查找、图论、安全、聚类等相关的26个基础算法,内容涉及冒泡排序、二分查找、广度优先搜索、哈希函数、迪菲 - 赫尔曼密钥交换、k-means 算法等。 本书没有枯燥的理论和复杂的公式,而是通过大量的步骤图帮助读者加深......一起来看看 《我的第一本算法书》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具