Actually added ui3d shader

This commit is contained in:
MihailRis
2023-11-30 21:13:45 +03:00
parent 11d00dbbf8
commit d6c6d13786
2 changed files with 23 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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);
}