- 新增32个方法文档(D3D12Buffer 13个,D3D12Texture 12个,D3D12SwapChain 6个) - 修复11处跨模块引用错误(rhi-device.md, rhi-texture.md等路径错误) - 清理d3d12-overview.md移除不存在的类引用 - 修复D3D12Device/D3D12CommandList/D3D12CommandQueue方法列表 - D3D12模块现无broken links
17 lines
323 B
Markdown
17 lines
323 B
Markdown
# D3D12Device::CreatePipelineState
|
|
|
|
创建管道状态对象。
|
|
|
|
```cpp
|
|
RHIPipelineState* CreatePipelineState(const PipelineStateDesc& desc) override;
|
|
```
|
|
|
|
**参数:**
|
|
- `desc` - 管道状态描述
|
|
|
|
**返回:** `RHIPipelineState*` - 创建的管道状态指针
|
|
|
|
## 相关文档
|
|
|
|
- [D3D12Device 总览](d3d12-device.md)
|