first commit

This commit is contained in:
2020-04-07 19:00:37 +08:00
commit 09b18aae49
63 changed files with 145246 additions and 0 deletions

15
shader/color.gbuffer Normal file
View File

@@ -0,0 +1,15 @@
[attribute]
vec4 BaseColor;
[gbuffer]
vec4 gb_color;
[attribute_to_gbuffer]
gb_color=BaseColor;
[gbuffer_to_attribute]
BaseColor=texture(gb_color,vs_out_position);