Files
XCSDD/docs/api/rhi/device/create-pipeline-state.md
ssdfasd 58a83f445a fix: improve doc link navigation and tree display
- Fix link resolution with proper relative/absolute path handling
- Improve link styling with underline decoration
- Hide leaf nodes from tree, only show directories
- Fix log file path for packaged app
2026-03-19 12:44:08 +08:00

30 lines
692 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# RHIDevice::CreatePipelineState
```cpp
virtual RHIPipelineState* CreatePipelineState(const PipelineStateDesc& desc) = 0;
```
创建渲染管线状态对象PSO
**参数:**
- `desc` - 管线状态描述符,包含编译好的着色器字节码
**返回:** 新创建的管线状态指针,失败返回 `nullptr`
**复杂度:** O(1)
**示例:**
```cpp
PipelineStateDesc psoDesc;
psoDesc.pBlob = compiledShaderBytecode;
psoDesc.size = bytecodeSize;
RHIPipelineState* pipelineState = device->CreatePipelineState(psoDesc);
```
## 相关文档
- [RHIDevice 总览](device.md) - 返回类总览
- [RHIPipelineState](../pipeline-state/pipeline-state.md) - 管线状态类