mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
20 lines
387 B
Scala
20 lines
387 B
Scala
$input v_color0, v_color1, v_texcoord0
|
|
|
|
/*
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "bgfx_shader.sh"
|
|
|
|
SAMPLER2D(s_texColor, 0);
|
|
|
|
void main()
|
|
{
|
|
vec4 color = mix(v_color1, v_color0, texture2D(s_texColor, v_texcoord0).xxxx);
|
|
if (color.w < 1.0/255.0)
|
|
{
|
|
discard;
|
|
}
|
|
gl_FragColor = color;
|
|
}
|