From 8f7d30487260036b39bb034a72d6652b1ee033ba Mon Sep 17 00:00:00 2001 From: jkjkil4 <1173374788@qq.com> Date: Sun, 1 Sep 2024 20:22:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20`Shaders`=20=E8=BF=99=E8=8A=82=E4=B8=AD?= =?UTF-8?q?=20`int=20main`=20=E7=9A=84=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/01 Getting started/05 Shaders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/01 Getting started/05 Shaders.md b/docs/01 Getting started/05 Shaders.md index 2516ba5..be318af 100644 --- a/docs/01 Getting started/05 Shaders.md +++ b/docs/01 Getting started/05 Shaders.md @@ -27,7 +27,7 @@ out type out_variable_name; uniform type uniform_name; -int main() +void main() { // 处理输入并进行一些图形操作 ...