docs: 更新架构图添加GLFW后端支持

在平台层架构图中添加GLFW后端支持,包括窗口系统和输入系统的关联
This commit is contained in:
ChestnutYueyue 2026-02-17 22:57:46 +08:00
parent 6babd376c9
commit 69606230da
1 changed files with 6 additions and 1 deletions

View File

@ -107,7 +107,10 @@ flowchart TB
subgraph Platform["Platform (平台层)"]
direction TB
subgraph WindowBackends["窗口后端"]
SDL2[SDL2 Backend<br/>SDL2 后端]
GLFW[GLFW Backend<br/>GLFW 后端]
end
INPUT_SYS[Input System<br/>输入系统]
end
@ -128,8 +131,10 @@ flowchart TB
GL --> TEXTURE
GL --> MEMORY
WINDOW --> SDL2
WINDOW --> GLFW
INPUT --> INPUT_SYS
INPUT_SYS --> SDL2
INPUT_SYS --> GLFW
```
### 模块系统