1
0
Fork 0
This commit is contained in:
Florian Richer (MrDev023) 2015-12-24 13:15:02 +01:00
parent f298038298
commit 145438d5f4
12 changed files with 243 additions and 26 deletions

12
res/shaders/font.frag Normal file
View file

@ -0,0 +1,12 @@
#version 330
in vec4 color;
in vec2 out_coord_texture;
uniform sampler2D myTexture;
out vec4 frag_color;
void main(){
frag_color = color * texture2D(myTexture,out_coord_texture);
}