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

@@ -0,0 +1,36 @@
# D3D12PipelineState::Bind
## 函数签名
```cpp
void Bind() override
```
## 中文描述
绑定管线状态到渲染上下文。此方法从 `RHIPipelineState` 基类继承并重写。当前实现为空。
## 参数
## 返回值
## 复杂度
O(1)
## 示例
```cpp
D3D12PipelineState pipelineState;
// ... 初始化 pipelineState
pipelineState.Bind();
```
## 相关文档
- [D3D12PipelineState](pipeline-state.md) - 类总览
- [RHIPipelineState](../../pipeline-state/pipeline-state.md) - 抽象管线状态接口