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