protot/3rdparty/bgfx/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc

19 lines
289 B
Python
Raw Normal View History

2016-08-29 22:31:11 +02:00
$input v_color0, v_stipple
/*
2017-04-11 08:16:10 +02:00
* Copyright 2011-2017 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-08-29 22:31:11 +02:00
*/
#include <bgfx_shader.sh>
void main()
{
if (0.125 < mod(v_stipple, 0.25) )
{
discard;
}
gl_FragColor = v_color0;
}