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
This commit is contained in:
2026-03-19 12:44:08 +08:00
parent e003fe6513
commit 58a83f445a
1012 changed files with 56880 additions and 22 deletions

View File

@@ -0,0 +1,29 @@
# 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) - 管线状态类