docs: Fix SKILL.md规范 violations - Remove ## 方法列表 and flatten ### sub-headers in ## 公共方法

This commit is contained in:
2026-03-19 02:01:18 +08:00
parent 8e85fd98b8
commit 5257f3d75c
68 changed files with 718 additions and 1289 deletions

View File

@@ -4,25 +4,24 @@
**描述**: DirectX 12 描述符堆的 D3D12 实现,继承自 `RHIDescriptorPool`
## 方法列表
## 公共方法
| 方法 | 文档 |
| 方法 | 描述 |
|------|------|
| `Initialize` (params) | [详细文档](../../../threading/task-system/initialize.md) |
| `Initialize` (desc) | [详细文档](initialize-from-desc.md) |
| `Shutdown` | [详细文档](../../../threading/task-system/shutdown.md) |
| `GetDescriptorHeap` | [详细文档](get-descriptor-heap.md) |
| `GetCPUDescriptorHandle` | [详细文档](get-cpu-descriptor-handle.md) |
| `GetGPUDescriptorHandle` | [详细文档](get-gpu-descriptor-handle.md) |
| `GetDescriptorCount` | [详细文档](get-descriptor-count.md) |
| `GetType` | [详细文档](../../shader/get-type.md) |
| `GetDescriptorSize` | [详细文档](get-descriptor-size.md) |
| `GetCPUDescriptorHandleForHeapStart` | [详细文档](get-cpu-descriptor-handle-for-heap-start.md) |
| `GetGPUDescriptorHandleForHeapStart` | [详细文档](get-gpu-descriptor-handle-for-heap-start.md) |
| `GetNativeHandle` | [详细文档](../../buffer/get-native-handle.md) |
| `CreateDesc` (static) | [详细文档](create-desc.md) |
| [`Initialize`](initialize-from-desc.md) | 从描述符初始化 |
| [`Shutdown`](../../../threading/task-system/shutdown.md) | 关闭描述符堆 |
| [`GetDescriptorHeap`](get-descriptor-heap.md) | 获取 D3D12 描述符堆 |
| [`GetCPUDescriptorHandle`](get-cpu-descriptor-handle.md) | 获取 CPU 描述符句柄 |
| [`GetGPUDescriptorHandle`](get-gpu-descriptor-handle.md) | 获取 GPU 描述符句柄 |
| [`GetDescriptorCount`](get-descriptor-count.md) | 获取描述符数量 |
| [`GetType`](../../command-queue/get-type.md) | 获取描述符类型 |
| [`GetDescriptorSize`](get-descriptor-size.md) | 获取描述符大小 |
| [`GetCPUDescriptorHandleForHeapStart`](get-cpu-descriptor-handle-for-heap-start.md) | 获取堆起始 CPU 句柄 |
| [`GetGPUDescriptorHandleForHeapStart`](get-gpu-descriptor-handle-for-heap-start.md) | 获取堆起始 GPU 句柄 |
| [`GetNativeHandle`](../../buffer/get-native-handle.md) | 获取原生句柄 |
| [`CreateDesc`](create-desc.md) | 创建描述符(静态) |
## 相关文档
- [D3D12 后端总览](../overview.md)
- [D3D12 后端总览](../../opengl/overview.md)
- [RHIDescriptorPool](../../descriptor-pool/descriptor-pool.md) - 抽象描述符池接口