mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-26 01:28:22 -05:00
19 lines
374 B
Python
19 lines
374 B
Python
|
$input v_color0, v_color1, v_texcoord0
|
||
|
|
||
|
/*
|
||
|
* Copyright 2011-2012 Branimir Karadzic. All rights reserved.
|
||
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include "common.sh"
|
||
|
|
||
|
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;
|
||
|
}
|