Fix for gpu_shader_2D_texture_2D_frag.glsl

Report and patch by Willian Padovani Germano (ianwill)
This commit is contained in:
Dalai Felinto
2016-10-17 19:23:01 +00:00
parent 4811b2d356
commit 6a0292cc19

View File

@@ -12,6 +12,6 @@ uniform sampler2D texture_map;
void main()
{
fragColor = texture2D(texture_map, texture_coord)
fragColor = texture2D(texture_map, texture_coord);
fragColor.a *= alpha;
}