fix: improve doc link navigation and tree display

- Fix link resolution with proper relative/absolute path handling
- Improve link styling with underline decoration
- Hide leaf nodes from tree, only show directories
- Fix log file path for packaged app
This commit is contained in:
2026-03-19 12:44:08 +08:00
parent e003fe6513
commit 58a83f445a
1012 changed files with 56880 additions and 22 deletions

View File

@@ -0,0 +1,31 @@
# RHIDevice::CreateCommandQueue
```cpp
virtual RHICommandQueue* CreateCommandQueue(const CommandQueueDesc& desc) = 0;
```
创建命令队列,用于提交和执行命令列表。
**参数:**
- `desc` - 命令队列描述符,包含队列类型和优先级
**返回:** 新创建的命令队列指针,失败返回 `nullptr`
**复杂度:** O(1)
**示例:**
```cpp
CommandQueueDesc queueDesc;
queueDesc.queueType = (uint32_t)CommandQueueType::Direct;
queueDesc.priority = 0;
queueDesc.nodeMask = 0;
queueDesc.flags = 0;
RHICommandQueue* commandQueue = device->CreateCommandQueue(queueDesc);
```
## 相关文档
- [RHIDevice 总览](device.md) - 返回类总览
- [RHICommandQueue](../command-queue/command-queue.md) - 命令队列类