mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
18 lines
282 B
Scala
18 lines
282 B
Scala
$input v_color0, v_stipple
|
|
|
|
/*
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
void main()
|
|
{
|
|
if (0.125 < mod(v_stipple, 0.25) )
|
|
{
|
|
discard;
|
|
}
|
|
|
|
gl_FragColor = v_color0;
|
|
}
|