docs: update RHI API docs

This commit is contained in:
2026-03-20 02:35:45 +08:00
parent ea756c0177
commit 070b444f8f
501 changed files with 13493 additions and 2022 deletions

View File

@@ -4,10 +4,25 @@
virtual void Shutdown() = 0;
```
释放栅栏资源
关闭围栏并释放所有相关资源。此方法将围栏置于不可用状态,任何后续调用行为未定义
**复杂度:** O(1)
**线程安全**:❌
**复杂度**O(1)
**示例**
```cpp
RHIFence* fence = device->CreateFence();
// 使用围栏...
fence->Signal();
// 关闭围栏,释放资源
fence->Shutdown();
fence = nullptr;
```
## 相关文档
- [RHIFence 总览](fence.md) - 返回类总览
- [RHIFence](fence.md) - 返回类总览