bgfx/examples/common/debugdraw/fs_debugdraw_lines_stipple.sc
Branimir Karadžić 3b83f53ab1 Happy New Year!
2017-01-01 00:18:41 -08:00

19 lines
289 B
Scala

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