bgfx/src/fs_debugfont.sc

21 lines
403 B
Python
Raw Normal View History

2012-09-16 20:36:08 -04:00
$input v_color0, v_color1, v_texcoord0
/*
2013-01-13 13:57:24 -05:00
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
2012-09-16 20:36:08 -04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "common.sh"
2012-10-28 00:34:41 -04:00
SAMPLER2D(u_texColor, 0);
2012-09-16 20:36:08 -04:00
void main()
{
vec4 color = lerp(v_color1, v_color0, texture2D(u_texColor, v_texcoord0).xxxx);
if (color.w < 1.0/255.0)
{
discard;
}
gl_FragColor = color;
}