docs: Fix RHI module documentation discrepancies

Fixed incorrect links in RHI documentation:
- Fixed OpenGL swap-chain docs with wrong references to threading/containers
- Fixed OpenGL texture docs with incorrect buffer/ texture links
- Fixed OpenGL vertex-array docs with wrong threading links
- Fixed OpenGL sampler docs with wrong threading links
- Fixed OpenGL device docs with incorrect swap-chain links
- Fixed fence docs with incorrect command-queue links
- Fixed command-list docs with missing shutdown link
- Fixed get-framebuffer-size.md title mismatch

Added missing documentation:
- Created fence/wait.md
- Created command-list/shutdown.md
- Created swap-chain/resize.md
- Created OpenGL sampler initialize.md, bind.md, unbind.md
This commit is contained in:
2026-03-19 01:07:49 +08:00
parent 452ccd4f8f
commit 2141534995
14 changed files with 156 additions and 21 deletions

View File

@@ -8,12 +8,12 @@
| 方法 | 文档 |
|------|------|
| `Initialize` | [详细文档](../../../threading/task-system/initialize.md) |
| `Initialize` | [详细文档](initialize-2d.md) |
| `Initialize2D` | [详细文档](initialize-2d.md) |
| `InitializeCubeMap` | [详细文档](initialize-cube-map.md) |
| `LoadFromFile` | [详细文档](load-from-file.md) |
| `Shutdown` | [详细文档](../../../threading/task-system/shutdown.md) |
| `Bind` | [详细文档](../../shader/bind.md) |
| `Shutdown` | [详细文档](../../texture/shutdown.md) |
| `Bind` | [详细文档](bind-image.md) |
| `Unbind` | [详细文档](../../shader/unbind.md) |
| `BindImage` | [详细文档](bind-image.md) |
| `GenerateMipmap` | [详细文档](generate-mipmap.md) |
@@ -26,10 +26,12 @@
| `GetDepth` | [详细文档](../../texture/get-depth.md) |
| `GetMipLevels` | [详细文档](../../texture/get-mip-levels.md) |
| `GetTextureType` | [详细文档](../../texture/get-texture-type.md) |
| `GetNativeHandle` | [详细文档](../../buffer/get-native-handle.md) |
| `GetState` / `SetState` | [详细文档](../../buffer/get-state.md) |
| `GetName` / `SetName` | [详细文档](../../buffer/get-name.md) |
| `GetFormat` / `SetFormat` | [详细文档](../../texture/get-format.md) |
| `GetNativeHandle` | [详细文档](../../texture/get-native-handle.md) |
| `GetState` | [详细文档](../../texture/get-state.md) |
| `SetState` | [详细文档](../../texture/set-state.md) |
| `GetName` | [详细文档](../../texture/get-name.md) |
| `SetName` | [详细文档](../../texture/set-name.md) |
| `GetFormat` | [详细文档](../../texture/get-format.md) |
## 相关文档