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

@@ -6,9 +6,9 @@
D3D12_CPU_DESCRIPTOR_HANDLE GetCPUDescriptorHandle() const
```
## 中文描述
## 描述
获取渲染目标视图的 CPU 描述符句柄。
获取渲染目标视图的 CPU 描述符句柄。返回的句柄用于绑定 RTV 到渲染管线命令列表。
## 返回值
@@ -21,9 +21,11 @@ O(1)
## 示例
```cpp
D3D12_CPU_DESCRIPTOR_HANDLE handle = rtv->GetCPUDescriptorHandle();
D3D12_CPU_DESCRIPTOR_HANDLE handle = rtv.GetCPUDescriptorHandle();
commandList->OMSetRenderTargets(1, &handle, FALSE, nullptr);
```
## 相关文档
- [D3D12RenderTargetView](render-target-view.md) - 类总览
- [OMSetRenderTargets (D3D12)](https://docs.microsoft.com/en-us/windows/win32/api/d3d12/nf-d3d12-id3d12graphicscommandlist-omsetrendertargets)