update resources

This commit is contained in:
QIDI TECH
2025-08-01 14:48:54 +08:00
parent 5effa59bd0
commit e3f49c2fb5
140 changed files with 964 additions and 386 deletions

View File

@@ -1,6 +1,6 @@
#version 140
uniform sampler2D Texture;
uniform sampler2D s_texture;
in vec2 Frag_UV;
in vec4 color;
@@ -8,5 +8,5 @@ in vec4 color;
out vec4 frag_color;
void main()
{
frag_color = color * texture(Texture, Frag_UV.st);
frag_color = color * texture(s_texture, Frag_UV.st);
}