add lib files

add gitignore
This commit is contained in:
2025-08-11 19:13:48 +02:00
parent 64f1336155
commit 515fdbc83c
252 changed files with 289 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
#version 450 core
layout(location = 0) out vec4 fColor;
layout(set=2, binding=0) uniform sampler2D sTexture;
layout(location = 0) in struct
{
vec4 Color;
vec2 UV;
} In;
void main()
{
fColor = In.Color * texture(sTexture, In.UV.st);
}