diff --git a/source/LogicDevice.rst b/source/LogicDevice.rst index ed7ede7..ccc56a3 100644 --- a/source/LogicDevice.rst +++ b/source/LogicDevice.rst @@ -113,7 +113,8 @@ VkDeviceQueueCreateInfo 其中 ``pQueuePriorities`` 配置的优先级的有效等级范围为 ``[0, 1]`` ,优先级越大,优先级越高。其中 ``0.0`` 是最低的优先级, ``1.0`` 是最高的优先级。在某些设备中,优先级越高意味着将会得到更多的执行机会,具体的队列调由设备自身管理, ``Vulkan`` 并不规定调度规则。 在同一逻辑设备上优先级高的设备队列可能会导致低优先级的设备队列长时间处于 ``饥饿`` 状态,直到高级别的设备队列执行完所有指令。但不同的逻辑设备中的某一设备队列饥饿不会影响另一个逻辑设备上的设备队列。 -.. note:: VkDeviceQueueCreateInfo::flags +.. admonition:: VkDeviceQueueCreateInfo::flags + :class: note ``VkDeviceQueueCreateFlagBits`` 在 ``Vulkan 1.0`` 版本中没用定义任何成员。 diff --git a/source/Memory.rst b/source/Memory.rst index 7811ea4..7b5ec16 100644 --- a/source/Memory.rst +++ b/source/Memory.rst @@ -23,6 +23,7 @@ * 2024/3/3 增加 ``VkPhysicalDeviceMemoryProperties`` 章节。 * 2024/3/3 增加 ``VkMemoryHeap`` 章节。 * 2024/3/3 增加 ``VkMemoryType`` 章节。 + * 2024/3/3 更新 ``设备内存`` 章节。 ``Vulkan`` 中有两种分配内存的途径: @@ -446,7 +447,7 @@ VkInternalAllocationType 这些设备内存根据不同特性又分为两种类型: 1. :bdg-secondary:`Host 端内存,但可被 Device 端访问` 这类内存的前提是在主板的内存条上,并且这部分内存可被 ``GPU`` 访问。 -2. :bdg-secondary:`Device 端独占内存` ``GPU`` 设备自身携带的专有内存。 +2. :bdg-secondary:`Device 端独占内存` ``GPU`` 设备自身携带的专有内存。数据在该内存中将会有更高的性能。 其示意图如下: