From 69606230da3b7bffef9d683e40971781143fec83 Mon Sep 17 00:00:00 2001 From: ChestnutYueyue <952134128@qq.com> Date: Tue, 17 Feb 2026 22:57:46 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=9E=B6=E6=9E=84?= =?UTF-8?q?=E5=9B=BE=E6=B7=BB=E5=8A=A0GLFW=E5=90=8E=E7=AB=AF=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在平台层架构图中添加GLFW后端支持,包括窗口系统和输入系统的关联 --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 460b782..075b41f 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,10 @@ flowchart TB subgraph Platform["Platform (平台层)"] direction TB - SDL2[SDL2 Backend
SDL2 后端] + subgraph WindowBackends["窗口后端"] + SDL2[SDL2 Backend
SDL2 后端] + GLFW[GLFW Backend
GLFW 后端] + end INPUT_SYS[Input System
输入系统] end @@ -128,8 +131,10 @@ flowchart TB GL --> TEXTURE GL --> MEMORY WINDOW --> SDL2 + WINDOW --> GLFW INPUT --> INPUT_SYS INPUT_SYS --> SDL2 + INPUT_SYS --> GLFW ``` ### 模块系统