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
+10
View File
@@ -0,0 +1,10 @@
#version 330 core
in vec2 v_coord;
out vec4 f_color;
uniform sampler2D u_texture;
void main(){
f_color = texture(u_texture, v_coord);
}