resources paths refact

This commit is contained in:
Che10vek
2023-11-20 01:30:57 +10:00
parent 12db8a1448
commit 2ee9e33c6d
20 changed files with 19 additions and 8 deletions
+11
View File
@@ -0,0 +1,11 @@
#version 330 core
in vec2 a_textureCoord;
in vec4 a_color;
out vec4 f_color;
uniform sampler2D u_texture;
void main(){
f_color = a_color * texture(u_texture, a_textureCoord);
}